/* Variables */
:root {
    /* Colors */
    --primary: #0284c7;
    /* Medical Blue */
    --primary-light: #38bdf8;
    --primary-dark: #0369a1;
    --secondary: #10b981;
    /* Soft Green */
    --secondary-hover: #059669;

    --bg-main: #f1f5f9;
    --bg-light: #eaf1f7;
    --bg-card: #ffffff;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* For fixed header */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-md {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-offer-pulse {
    background: #ef4444;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    animation: offerPulse 1.35s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
}

.btn-offer-pulse:hover {
    background: #dc2626;
    color: white;
    animation-play-state: paused;
}

.btn-whatsapp {
    background: white;
    color: #25D366;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #16a34a;
    transform: translateY(-2px);
}

.icon-only-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    font-size: 1.1rem;
}

@keyframes offerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 14px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Background Decorations */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(2, 132, 199, 0) 70%);
}

.bg-shape-2 {
    top: 30%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--secondary);
    font-size: 1.7rem;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.lang-switcher.desktop-only {
    display: inline-flex;
}

.lang-btn {
    min-width: 44px;
    padding: 8px 12px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--primary-dark);
    background: rgba(56, 189, 248, 0.12);
}

.lang-btn.is-active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.22);
}

.phone-link {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--primary);
}

.phone-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.hero-illustration {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-2 .card-icon {
    background: var(--secondary);
}

.card-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.2;
}

.card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: rgba(2, 132, 199, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: saturate(125%) hue-rotate(-2deg) brightness(0.95) contrast(1.03);
}

.service-card:hover .service-icon {
    background: rgba(2, 132, 199, 0.12);
    transform: scale(1.04);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.8em;
    max-width: 30ch;
    margin: 0 auto;
}

/* About / Advantages */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-list {
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 500;
    color: var(--text-main);
}

/* Pricing */
.special-offer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer-icon {
    font-size: 2.5rem;
}

.offer-text h3 {
    color: white;
    margin-bottom: 4px;
    font-size: 1.5rem;
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
}

.table-container {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--bg-light);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

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

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.pricing-table td:last-child {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.discount {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Specialist */
.specialist-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 430px) 1fr;
    align-items: stretch;
}

.specialist-photo-wrap {
    min-height: 460px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.specialist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.specialist-content {
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
}

.specialist-badge {
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.specialist-title {
    font-size: clamp(1.8rem, 2.6vw, 2.35rem);
    margin-bottom: 10px;
}

.specialist-subtitle {
    font-size: 1.06rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.specialist-points {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.specialist-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-main);
}

.specialist-points i {
    color: var(--secondary);
    margin-top: 4px;
}

.specialist-cta {
    align-self: flex-start;
    padding: 14px 30px;
    margin-top: 4px;
    min-height: 52px;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-image {
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.location-info {
    padding: 30px;
}

.location-info h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.location-info p {
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Contact / Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-text span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.method-text strong {
    font-size: 1.25rem;
    color: var(--text-main);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-icon-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
    outline: none;
}

.input-icon-wrapper input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-main);
    color: white;
    padding-top: 80px;
}

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

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 300px;
}

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

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

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

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    color: var(--text-light);
    display: flex;
    gap: 12px;
}

.contact-list i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        gap: 32px;
    }

    .about-content {
        text-align: center;
    }

    .section-title.text-left {
        text-align: center;
    }

    .about-list li {
        text-align: left;
    }

    .special-offer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .specialist-card {
        grid-template-columns: 1fr;
    }

    .specialist-photo-wrap {
        min-height: 380px;
    }

    .specialist-content {
        padding: 30px 24px;
    }

    .specialist-cta {
        align-self: center;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .specialist-photo-wrap {
        min-height: 330px;
    }

    .specialist-subtitle {
        font-size: 1rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon img {
        width: 56px;
        height: 56px;
    }

    .service-title {
        min-height: 2.5em;
    }

    .service-desc {
        min-height: 4.4em;
        max-width: 28ch;
    }

    .header-container {
        height: 72px;
    }

    .header-actions.desktop-only {
        display: none;
    }

    .lang-switcher.desktop-only {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
        padding: 28px 20px 24px;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 16px;
        margin-bottom: 0;
    }

    .lang-switcher-mobile {
        display: inline-flex;
        width: fit-content;
        margin: 0 auto;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 6px 0;
    }

    .header-actions.mobile-only {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 4px;
    }

    .btn-block {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 124px 0 72px;
    }

    .hero-container {
        gap: 36px;
    }

    .badge {
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        font-size: 2.1rem;
        margin-bottom: 16px;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .contact-methods {
        align-items: center;
    }

    .method-item {
        justify-content: center;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding: 32px 24px;
    }

    .form-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .footer {
        padding-top: 64px;
    }

    .footer-container {
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-col,
    .brand-col {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .pricing-table {
        min-width: 0;
        display: block;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody {
        display: grid;
        gap: 14px;
    }

    .pricing-table tr {
        display: block;
        padding: 18px 18px 14px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow-md);
    }

    .pricing-table td {
        display: block;
        padding: 0;
        margin-bottom: 10px;
        border-bottom: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 2px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .pricing-table td:last-child {
        margin-bottom: 0;
    }

    .pricing-table td:first-child {
        line-height: 1.4;
    }

    .pricing-table td:first-child,
    .pricing-table td:last-child {
        font-size: 1rem;
    }

    .floating-card {
        display: none;
    }

    /* Hide floating cards on small mobile for space */
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 72px 0;
    }

    .nav {
        padding: 24px 16px 20px;
        gap: 20px;
    }

    .nav-list {
        gap: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero {
        padding: 116px 0 64px;
    }

    .hero-container {
        gap: 28px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-text {
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .offer-price {
        font-size: 2.5rem;
    }

    .special-offer {
        padding: 20px 16px;
        margin-bottom: 32px;
    }

    .contact-container {
        gap: 24px;
    }

    .contact-info h2 {
        font-size: 1.85rem;
    }

    .contact-form-wrapper {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .form-title {
        font-size: 1.45rem;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.98rem;
    }

    .input-icon-wrapper input {
        padding: 13px 14px 13px 42px;
        font-size: 0.98rem;
    }

    .btn-lg {
        padding: 15px 24px;
        font-size: 1rem;
    }

    .pricing-table tr {
        padding: 16px 14px 12px;
    }

    .pricing-table td::before {
        font-size: 0.78rem;
    }

    .pricing-table td {
        margin-bottom: 8px;
    }

    .discount {
        margin-left: 6px;
    }

    .form-disclaimer {
        font-size: 0.78rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        padding-top: 56px;
    }

    .footer-col h4 {
        margin-bottom: 18px;
    }

    .footer-links li,
    .contact-list li {
        margin-bottom: 10px;
    }
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.10), transparent 28%),
        var(--bg-light);
}

.legal-shell {
    padding: 140px 0 80px;
    position: relative;
    z-index: 2;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.legal-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.legal-title {
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.legal-updated,
.legal-lead,
.legal-note {
    color: var(--text-muted);
}

.legal-updated {
    margin-bottom: 20px;
}

.legal-lead {
    margin-bottom: 32px;
    font-size: 1.08rem;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.legal-section + .legal-section {
    margin-top: 32px;
}

.legal-section h2 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.legal-section p + p {
    margin-top: 12px;
}

.legal-section a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.legal-list {
    margin-top: 12px;
    padding-left: 20px;
}

.legal-list li {
    margin-bottom: 10px;
}

.legal-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.legal-footer-links a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .legal-shell {
        padding: 112px 0 56px;
    }

    .legal-card {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .legal-header-actions {
        gap: 8px;
    }

    .legal-header-actions .btn {
        padding-left: 18px;
        padding-right: 18px;
    }

    .legal-actions,
    .legal-footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-actions .btn {
        width: 100%;
    }
}
