/* ========================
   CSS Variables
   ======================== */
:root {
    --primary: #003366;
    --primary-light: #004080;
    --accent: #0066CC;
    --yellow: #FFB90F;
    --yellow-light: #FFC933;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fc;
    --bg-lighter: #f0f2f8;
    --border: #e8eaf0;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --transition: all 0.25s ease;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ========================
   Base Reset
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

section {
    padding: 72px 0;
}

@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }
}

/* ========================
   Header Navigation
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a:hover {
    color: var(--accent);
    background: var(--bg-light);
}

.nav-list a[aria-current="page"] {
    color: var(--accent);
    background: var(--bg-light);
}

.nav-list .has-submenu > a i {
    font-size: 12px;
    margin-left: 2px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 160px;
    padding: 6px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.submenu a {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: var(--radius);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 12px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0;
    }

    .nav-list a {
        padding: 12px 16px;
    }

    .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        margin-top: 4px;
        background: var(--bg-light);
    }

    .submenu.sub-open {
        display: block;
    }

    .submenu a {
        padding: 10px 16px;
    }

    .has-submenu:hover .submenu {
        transform: none;
    }
}

/* ========================
   Page Hero
   ======================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 64px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,51,102,0.88) 0%, rgba(0,82,163,0.75) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    text-align: center;
    padding: 60px 24px;
    width: 100%;
}

.page-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff3bf;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 26px;
    }

    .page-hero-content p {
        font-size: 16px;
    }
}

/* ========================
   Footer
   ======================== */
.footer {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 50%, #c0d8f9 100%);
    color: var(--text-dark);
    padding: 56px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: var(--radius);
    background: rgba(0, 51, 102, 0.08);
}

.footer-col > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(0,51,102,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 16px;
    color: var(--text-dark);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,51,102,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========================
   Back to Top Button
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .back-to-top {
        display: none;
    }
}

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--yellow);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,185,15,0.35);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

.btn-email {
    background: var(--accent);
    color: var(--bg-white);
}

.btn-email:hover {
    background: var(--primary-light);
}

/* ========================
   Section Header
   ======================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ========================
   About Intro - Leader Profile
   ======================== */
.about-intro {
    background: var(--bg-white);
    padding: 72px 0;
}

.inventor-intro {
    background: var(--bg-white);
    padding: 72px 0;
}

.inventor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.inventor-visual img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.story-figure {
    margin: 22px 0 18px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,51,102,0.08);
    box-shadow: var(--shadow);
}

.story-figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    object-position: center;
    background: #f7f9fc;
}

.story-figure-light {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.18);
}

.story-figure figcaption {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light);
}

.story-highlight .story-figure figcaption {
    color: rgba(255,255,255,0.9);
}

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.inventor-copy h2 {
    font-size: 34px;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 14px;
}

.inventor-copy .lead {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.inventor-copy p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.inventor-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.fact-item {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 16px;
    padding: 18px;
}

.fact-item strong {
    display: block;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 8px;
}

.fact-item span {
    display: block;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dark);
}

.section-header-wide {
    max-width: 920px;
    margin: 0 auto 48px;
}

.history-overview {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    padding: 72px 0;
}

.story-stack {
    display: grid;
    gap: 24px;
}

.story-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.story-highlight {
    background: linear-gradient(135deg, rgba(0,51,102,0.98) 0%, rgba(0,102,204,0.92) 100%);
}

.story-number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd76a 0%, #ffb90f 100%);
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255,185,15,0.28);
}

.story-content h3 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--primary);
    margin-bottom: 14px;
}

.story-highlight .story-content h3,
.story-highlight .story-content p,
.story-highlight .quote-box p {
    color: var(--bg-white);
}

.story-content p {
    font-size: 17px;
    line-height: 1.95;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.story-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 16px;
    padding-left: 0;
}

.story-list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.proto-panel {
    margin-top: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 18px;
    padding: 22px;
}

.proto-panel h4 {
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 14px;
}

.table-wrap {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.spec-table thead th {
    background: #eef4ff;
    color: var(--primary);
    font-weight: 700;
}

.quote-box {
    margin: 18px 0;
    padding: 18px 20px;
    border-left: 4px solid #ffd76a;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.definition-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 18px;
    padding: 22px;
}

.definition-label {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0,102,204,0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.definition-card strong {
    display: block;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 8px;
}

.definition-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

.image-gallery-section {
    background: var(--bg-white);
    padding: 72px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

.gallery-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,51,102,0.08);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    background: #f7f9fc;
}

.gallery-card-large {
    grid-row: span 1;
}

.gallery-card-large img {
    height: auto;
    max-height: 620px;
    object-position: center;
}

.gallery-card figcaption {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-history-section {
    background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
    padding: 72px 0;
}

.faq-grid-history {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card-history {
    background: var(--bg-white);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.faq-card-history h3 {
    font-size: 22px;
    line-height: 1.45;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-card-history p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-dark);
}

.references-section {
    background: var(--bg-white);
    padding: 72px 0;
}

.references-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.references-main,
.tag-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(0,51,102,0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.references-main h2,
.tag-panel h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.reference-list {
    padding-left: 22px;
}

.reference-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

.reference-list a {
    color: var(--accent);
}

.reference-note {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.leader-profile {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.leader-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.leader-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.leader-title {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.leader-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.leader-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.credential-item i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.credential-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.credential-item p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .leader-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .inventor-grid,
    .references-grid,
    .faq-grid-history,
    .definition-grid,
    .gallery-grid,
    .inventor-facts {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        max-height: 420px;
    }

    .gallery-card-large img {
        max-height: 500px;
    }
}

/* ========================
   Timeline Section
   ======================== */
.timeline-section {
    background: var(--bg-light);
    padding: 72px 0;
}

.career-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-entry {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 24px;
    bottom: -32px;
    width: 2px;
    background: var(--border);
}

.timeline-entry:last-child::before {
    display: none;
}

.timeline-year {
    width: 60px;
    height: 48px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .timeline-entry {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-entry::before {
        display: none;
    }

    .hero-kicker {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .inventor-copy h2,
    .story-content h3,
    .references-main h2,
    .tag-panel h3 {
        font-size: 24px;
    }

    .story-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .story-number {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .references-main,
    .tag-panel,
    .faq-card-history,
    .definition-card,
    .proto-panel {
        padding: 22px;
    }

    .inventor-visual img {
        max-height: 460px;
    }

    .story-figure img,
    .gallery-card img,
    .gallery-card-large img {
        height: auto;
        max-height: 320px;
    }
}

/* ========================
   Philosophy Section
   ======================== */
.philosophy {
    background: var(--bg-white);
    padding: 72px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.philosophy-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.philosophy-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.philosophy-card i {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.philosophy-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================
   CTA Section
   ======================== */
.cta {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 50%, #c0d8f9 100%);
    padding: 72px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
