:root {
    /* Premium Corporate Agency Theme */
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --secondary: #FFFFFF;
    --accent: #EFF6FF;
    --text-dark: #0F172A;
    --text-light: #475569;
    --bg-soft: #F8FAFC;
    --bg-dark: #0B1120;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link for SEO/A11y */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.text-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

header.scrolled .text-logo {
    color: var(--text-dark);
}

.footer-logo.text-logo {
    color: white;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

header.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 3px;
}

header.scrolled .mobile-menu-btn span {
    background: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn.primary:hover::before {
    opacity: 1;
}

.btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
}

.full-width {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(37, 99, 235, 0.4));
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFFFFF, #E0F2FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--primary);
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--primary);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services */
.services {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.1);
}

.service-card .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent), #FFFFFF);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    z-index: 2;
}

.service-card .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover .icon {
    transform: scale(1.1) translateY(-5px);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #FFFFFF;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.service-card:hover .icon::before {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.2);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features */
.features-section {
    background: linear-gradient(135deg, var(--bg-soft), var(--accent));
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.features-list span {
    color: white;
    background: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 180, 219, 0.2);
}

/* Clients Section */
.clients {
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.client-testimonial {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-testimonial:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.client-link {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.client-link:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    background: url('slide2.webp') center/cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--bg-soft);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, var(--text-dark), var(--accent));
    padding: 50px;
    border-radius: 24px;
    color: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p, .info-item a {
    color: rgba(255,255,255,0.9);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-small {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

input, textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #FAFAFA;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 180, 219, 0.1);
}

/* Footer */
footer {
    background: #0B1120;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #94A3B8;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #94A3B8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #94A3B8;
}

.footer-bottom a {
    color: #94A3B8;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.plan-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plan-features li span {
    color: var(--primary);
    font-weight: bold;
}

.price {
    display: block;
    margin-top: 5px;
    color: var(--primary-dark);
    font-weight: 700;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.outline:hover {
    background: var(--primary);
    color: white;
}

/* Pricing Extra */
.pricing-extra {
    margin-top: 80px;
}

.summary-wrapper {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 50px;
}

.summary-wrapper h3 {
    margin-bottom: 30px;
    text-align: center;
}

.table-container {
    overflow-x: auto;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.cost-table th {
    background: var(--accent);
    color: var(--primary-dark);
    text-align: left;
    padding: 15px 20px;
    font-weight: 700;
}

.cost-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-dark);
}

.cost-table tr:last-child td {
    border-bottom: none;
}

.table-footer-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.timeline-terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.timeline-terms-grid h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.meta-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.meta-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .slide-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .features-wrapper, .about-wrapper, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .features-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .glass-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        backdrop-filter: none;
        background: var(--glass);
    }
    
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px) scale(1); }
    .timeline-terms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 75px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
        text-shadow: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile toggle animation */
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Ensure icon turns dark when menu opens if hero is light */
    .mobile-menu-btn.active span { background: var(--text-dark); }

    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1.1rem; }
    .section-header h2 { font-size: 2.2rem; }
    
    .contact-info { padding: 30px; }
    .contact-form { padding: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .pricing-grid { grid-template-columns: 1fr; }
    
    .cost-table thead { display: none; }
    .cost-table tr { display: block; margin-bottom: 20px; border: 1px solid #F1F5F9; border-radius: 12px; padding: 10px; }
    .cost-table td { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #F8FAFC; text-align: right; }
    .cost-table td:last-child { border-bottom: none; }
    .cost-table td::before { content: attr(data-label); font-weight: 700; text-align: left; color: var(--text-light); margin-right: 10px; }
}
