@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1268b3;
    --primary-light: #e7f2fe;
    --primary-dark: #0c4e87;
    --secondary: #f4f8fc;
    --secondary-dark: #e7eef6;
    --accent-soft: #eef4fb;
    --accent-line: #c7d7ea;
    --accent-strong: #6e90b6;
    --text: #193247;
    --text-light: #60758a;
    --white: #ffffff;
    --border: #d7e2ec;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --shadow: 0 16px 38px -34px rgba(15, 23, 42, 0.22);
    --shadow-lg: 0 30px 72px -48px rgba(15, 23, 42, 0.26);
    --radius-lg: 24px;
    --radius-md: 18px;
    --tap-size: 44px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: 108px;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f7fbff 0%, #f2f7fb 52%, #f7fafc 100%);
    line-height: 1.75;
    position: relative;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 8%, rgba(18, 104, 179, 0.06), transparent 22%),
        radial-gradient(circle at 90% 10%, rgba(12, 78, 135, 0.05), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
    pointer-events: none;
    z-index: -1;
}

body::after {
    display: none;
}

::selection {
    background: rgba(18, 104, 179, 0.18);
    color: var(--text);
}

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

iframe {
    max-width: 100%;
}

video,
svg,
canvas {
    max-width: 100%;
    display: block;
}

a,
button,
input,
select,
textarea {
    transition: 0.3s ease;
}

button,
.btn,
.mobile-menu,
.nav-links a,
.service-btn {
    min-height: var(--tap-size);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(18, 104, 179, 0.18);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.035em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 1.2rem 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 0.65rem;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 1.2rem 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(219, 229, 234, 0.95);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px -36px rgba(15, 23, 42, 0.22);
    position: relative;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
    box-shadow: 0 22px 52px -34px rgba(15, 23, 42, 0.36);
    border-color: rgba(206, 220, 228, 0.98);
}

.nav-container::after {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.03em;
}

.logo i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1474c6 0%, #0c4e87 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.45rem;
    align-items: center;
    background: rgba(249, 251, 252, 0.96);
    border: 1px solid rgba(219, 229, 234, 0.95);
    border-radius: 14px;
    padding: 0.45rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(18, 104, 179, 0.1), rgba(231, 242, 254, 0.85));
}

.nav-links .btn {
    padding: 0.85rem 1.35rem;
    margin-left: 0.2rem;
}

.nav-links .btn.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.nav-links .btn.btn-primary:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #115e59 100%);
}

.btn {
    padding: 0.85rem 1.6rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 18px 40px -24px rgba(18, 104, 179, 0.42);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 104, 179, 0.18);
    color: var(--primary-dark);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    border: 0;
    appearance: none;
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Section Common Styles */
section {
    padding: clamp(4.75rem, 7vw, 6.5rem) 2rem;
    position: relative;
    overflow: clip;
}

.section-header {
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 760px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.08;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.section-header,
.highlight-card,
.process-card,
.faq-item,
.showcase-panel,
.stats-band,
.footer-col {
    animation: riseFade 0.75s ease both;
}

.highlight-card:nth-child(2),
.process-card:nth-child(2),
.faq-item:nth-child(2),
.footer-col:nth-child(2) {
    animation-delay: 0.06s;
}

.highlight-card:nth-child(3),
.process-card:nth-child(3),
.faq-item:nth-child(3),
.footer-col:nth-child(3) {
    animation-delay: 0.12s;
}

.highlight-card:nth-child(4),
.process-card:nth-child(4),
.faq-item:nth-child(4),
.footer-col:nth-child(4) {
    animation-delay: 0.18s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(18, 104, 179, 0.08), rgba(238, 244, 251, 0.95));
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(18, 104, 179, 0.12);
}

.section-shell {
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.98));
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before,
.process-card::before,
.faq-item::before,
.showcase-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.45), transparent 34%);
    pointer-events: none;
}

.highlight-card::after,
.process-card::after,
.faq-item::after,
.showcase-panel::after {
    content: '';
    position: absolute;
    inset: auto -24px -34px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 104, 179, 0.08), transparent 70%);
    opacity: 0.58;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.highlight-card h3 {
    margin: 0.9rem 0 0.55rem;
    font-size: 1.25rem;
}

.highlight-card p {
    color: var(--text-light);
}

.highlight-card:hover,
.process-card:hover,
.faq-item:hover,
.showcase-panel:hover,
.footer-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -34px rgba(15, 23, 42, 0.28);
    border-color: rgba(18, 104, 179, 0.22);
}

.highlight-card:hover::after,
.process-card:hover::after,
.faq-item:hover::after,
.showcase-panel:hover::after {
    transform: scale(1.12);
    opacity: 1;
}

.icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-soft) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 16px 34px -26px rgba(15, 23, 42, 0.34);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-card:hover .icon-badge,
.process-card:hover .process-step,
.faq-item:hover .icon-badge,
.showcase-panel:hover .icon-badge {
    transform: translateY(-2px) scale(1.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 20px 40px -28px rgba(15, 23, 42, 0.4);
}

.split-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.showcase-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 248, 252, 0.96));
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.showcase-panel p,
.showcase-panel li {
    color: var(--text-light);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.check-list li i {
    color: var(--primary);
    margin-right: 0.6rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 248, 252, 0.96));
    border-radius: var(--radius-md);
    padding: 1.8rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-step {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 18px 36px -24px rgba(18, 104, 179, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-band {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 24%),
        linear-gradient(135deg, #1268b3 0%, #0c4e87 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 30px 80px -40px rgba(11, 94, 89, 0.48);
    position: relative;
    overflow: hidden;
}

.stats-band::before,
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.18), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.14), transparent 26%);
    pointer-events: none;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
}

.stats-band-grid h3 {
    font-size: 2rem;
    margin-bottom: 0.35rem;
}

.stats-band-grid p {
    color: rgba(255, 255, 255, 0.88);
}

.cta-banner {
    background: linear-gradient(135deg, #1268b3 0%, #0c4e87 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0.85rem auto 1.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 248, 252, 0.96));
    border-radius: var(--radius-md);
    padding: 1.6rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    margin-top: 112px;
    background:
        radial-gradient(circle at top left, rgba(18, 104, 179, 0.1), transparent 34%),
        radial-gradient(circle at top right, rgba(199, 215, 234, 0.16), transparent 26%),
        linear-gradient(135deg, #f2f8fe 0%, #ffffff 52%, #f5f9fd 100%);
    padding: 5.4rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(217, 229, 238, 0.65);
}

.page-header.page-header-about {
    background:
        radial-gradient(circle at 16% 18%, rgba(18, 104, 179, 0.1), transparent 26%),
        radial-gradient(circle at 86% 24%, rgba(199, 215, 234, 0.2), transparent 20%),
        linear-gradient(135deg, #f3f8fe 0%, #ffffff 52%, #f5f9fd 100%);
}

.page-header.page-header-services {
    background:
        radial-gradient(circle at 18% 18%, rgba(18, 104, 179, 0.12), transparent 28%),
        radial-gradient(circle at 84% 24%, rgba(160, 187, 217, 0.14), transparent 18%),
        linear-gradient(135deg, #f2f8fe 0%, #ffffff 50%, #eef7fb 100%);
}

.page-header.page-header-doctors {
    background:
        radial-gradient(circle at 14% 16%, rgba(12, 78, 135, 0.12), transparent 24%),
        radial-gradient(circle at 88% 20%, rgba(199, 215, 234, 0.18), transparent 18%),
        linear-gradient(135deg, #f1f7fd 0%, #ffffff 50%, #f5f9fd 100%);
}

.page-header.page-header-appointment {
    background:
        radial-gradient(circle at 18% 20%, rgba(18, 104, 179, 0.1), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(148, 163, 184, 0.12), transparent 18%),
        linear-gradient(135deg, #f1f7fd 0%, #ffffff 52%, #f3f7fc 100%);
}

.page-header.page-header-contact {
    background:
        radial-gradient(circle at 16% 18%, rgba(18, 104, 179, 0.1), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(186, 230, 253, 0.16), transparent 20%),
        linear-gradient(135deg, #f2f8fe 0%, #ffffff 52%, #eef7fb 100%);
}

.page-header.page-header-testimonials {
    background:
        radial-gradient(circle at 14% 18%, rgba(18, 104, 179, 0.08), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(160, 187, 217, 0.16), transparent 20%),
        linear-gradient(135deg, #f4f8fc 0%, #ffffff 48%, #f0f6fb 100%);
}

.page-header.page-header-gallery {
    background:
        radial-gradient(circle at 14% 18%, rgba(18, 104, 179, 0.1), transparent 22%),
        radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.12), transparent 18%),
        linear-gradient(135deg, #f1f7fd 0%, #ffffff 50%, #f4f8fb 100%);
}

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

.page-header-inner {
    max-width: 1160px;
    position: relative;
}

.page-header-inner::before {
    content: '';
    position: absolute;
    right: 8%;
    top: 10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
    pointer-events: none;
    filter: blur(4px);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 104, 179, 0.14);
    box-shadow: 0 16px 38px -30px rgba(15, 23, 42, 0.35);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.3rem;
}

.page-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 0.95rem;
    text-align: left;
}

.page-header-copy {
    max-width: 720px;
}

.page-header-copy h1 {
    position: relative;
    padding-bottom: 0.85rem;
}

.page-header-copy h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(110, 144, 182, 0.9) 100%);
    box-shadow: 0 10px 28px -18px rgba(18, 104, 179, 0.45);
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-header::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -70px;
    background: radial-gradient(circle, rgba(18, 104, 179, 0.12), transparent 68%);
}

.page-header::after {
    width: 240px;
    height: 240px;
    right: -60px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(110, 144, 182, 0.12), transparent 68%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.05;
}

.page-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 680px;
    margin: 0;
}

.page-header-card {
    padding: 1.2rem 1.2rem 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68));
    border: 1px solid rgba(219, 229, 234, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 55px -38px rgba(15, 23, 42, 0.38);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 30px 70px -42px rgba(15, 23, 42, 0.42);
    min-width: 0;
}

.page-header-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.36), transparent 46%);
    pointer-events: none;
}

.page-card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
}

.page-header-card,
.page-stat-chip {
    position: relative;
    overflow: hidden;
}

.page-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.25rem;
}

.page-card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.page-header-points {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.page-header-points li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--text-light);
    font-size: 0.88rem;
}

.page-header-points i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.page-card-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(18, 104, 179, 0.16), rgba(219, 229, 234, 0.72), rgba(255,255,255,0));
}

.page-card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-card-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.72rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(219, 229, 234, 0.94);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 600;
    box-shadow: 0 16px 34px -28px rgba(15, 23, 42, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-card-metrics span:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 104, 179, 0.18);
    box-shadow: 0 22px 40px -30px rgba(15, 23, 42, 0.28);
}

.page-card-metrics i {
    color: var(--primary);
}

.page-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.45rem;
}

.page-stat-chip {
    padding: 0.9rem 0.95rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.66));
    border: 1px solid rgba(219, 229, 234, 0.94);
    box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.34);
    text-align: left;
    padding-left: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.page-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, rgba(18, 104, 179, 0.12), rgba(110, 144, 182, 0.16));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.92rem;
}

.page-stat-chip strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text);
    margin-bottom: 0.12rem;
}

.page-stat-chip span {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.page-stat-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 179, 0.18);
    box-shadow: 0 24px 46px -32px rgba(15, 23, 42, 0.32);
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at top left, rgba(18, 104, 179, 0.2), transparent 25%),
        radial-gradient(circle at bottom right, rgba(110, 144, 182, 0.08), transparent 18%),
        linear-gradient(180deg, #11293d 0%, #0d1d2d 100%);
    color: var(--white);
    padding: 5rem 2rem 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col {
    padding: 1.65rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.footer-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 34%);
    pointer-events: none;
}

.footer-col p,
.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
    overflow-wrap: anywhere;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(51, 65, 85, 0.75);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-sticky-cta {
    display: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border: 1px solid rgba(255,255,255,0.22);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

@keyframes riseFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding-right: 0.9rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0.5rem;
        right: 0.5rem;
        margin-top: 0.8rem;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        border-radius: 24px;
        gap: 0.4rem;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li,
    .nav-links a,
    .nav-links .btn {
        width: 100%;
    }

    .nav-links .btn {
        margin-left: 0;
        text-align: center;
    }

    .mobile-menu {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(18, 104, 179, 0.08);
        color: var(--primary);
        flex-shrink: 0;
    }

    .page-header {
        margin-top: 92px;
        padding-top: 4.5rem;
        padding-bottom: 3.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
    }

    .page-header-copy,
    .page-header p {
        margin-inline: auto;
    }

    .page-header-copy h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .split-showcase {
        grid-template-columns: 1fr;
    }

    .page-header::before,
    .page-header::after,
    .page-header-inner::before {
        opacity: 0.65;
        transform: scale(0.82);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 640px) {
    body {
        line-height: 1.65;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    section {
        padding-inline: 1.2rem;
    }

    .container {
        max-width: 100%;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .page-header {
        padding: 4rem 1.25rem 3.2rem;
    }

    .page-header::before,
    .page-header::after,
    .page-header-inner::before {
        display: none;
    }

    .page-header-card {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .page-card-metrics {
        gap: 0.55rem;
    }

    .page-card-metrics span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cta-banner {
        padding: 2rem 1.4rem;
    }

    .navbar {
        padding: 0.75rem 0.7rem 0;
    }

    .nav-container {
        padding: 0.8rem 0.9rem 0.8rem 1rem;
        gap: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .nav-links {
        padding: 1rem;
    }

    .nav-links a,
    .nav-links .btn,
    .btn,
    .service-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .highlight-card,
    .process-card,
    .faq-item,
    .showcase-panel,
    .footer-col,
    .stats-band,
    .cta-banner {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .footer {
        padding-inline: 1.2rem;
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0));
    }

    .back-to-top {
        right: 18px;
        bottom: calc(82px + env(safe-area-inset-bottom, 0));
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0));
        z-index: 1001;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.6rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(206, 220, 228, 0.95);
        box-shadow: 0 22px 40px -28px rgba(15, 23, 42, 0.32);
        backdrop-filter: blur(14px);
    }

    .mobile-sticky-cta a {
        min-height: 46px;
        padding: 0.8rem 0.65rem;
        border-radius: 14px;
        text-decoration: none;
        font-size: 0.83rem;
        font-weight: 700;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        text-align: center;
        color: var(--text);
        background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(237, 244, 250, 0.96));
        border: 1px solid rgba(215, 226, 236, 0.98);
        box-shadow: 0 16px 32px -28px rgba(15, 23, 42, 0.3);
    }

    .mobile-sticky-cta a.primary {
        color: var(--white);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        border-color: rgba(18, 104, 179, 0.32);
    }

    .mobile-sticky-cta a i {
        font-size: 0.88rem;
    }

    .mobile-sticky-cta a span {
        white-space: nowrap;
    }

    .mobile-sticky-cta a:active {
        transform: translateY(1px);
    }
}
