:root {
    --brand-green: #71A086;
    --brand-dark: #2B3440;
    --text-main: #18212f;
    --text-muted: #5f6b7c;
    --bg-page: #FAFBFD;
    --bg-card: #FFFFFF;
    --border-light: #EBECEF;
    --font-family: 'Montserrat', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f4f3;
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading, body.no-scroll {
    overflow: hidden;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulseLogo 2s infinite ease-in-out;
}

.logo-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--brand-green), transparent);
    animation: scanLogo 2s infinite ease-in-out;
    opacity: 0.6;
}

.preloader-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: #1a202c;
    margin-left: 0.3em; /* Balance spacing */
    animation: fadeText 2s infinite ease-in-out;
}

.preloader-bar-container {
    width: 200px;
    height: 3px;
    background: #f0f4f1;
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--brand-green);
    animation: fillBar 2s forwards ease-in-out;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes scanLogo {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

@keyframes fadeText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
    padding: 0 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 1200px;
    border: none;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 36px;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: #f0f4f1;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 101;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .navbar {
        top: 15px;
        padding: 0 15px;
    }

    .navbar-container {
        border-radius: 50px;
        padding: 6px 6px 6px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.navbar .btn {
    padding: 12px 40px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: white;
}

.btn-primary:hover {
    background-color: #71A086;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(113, 160, 134, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: white;
    box-shadow: 0 4px 12px rgba(113, 160, 134, 0.2);
}

.btn-green:hover {
    background-color: #71A086;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(113, 160, 134, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: #F8F9FA;
}

.btn-dark,
.hero-buttons .btn-dark {
    background-color: #111;
    color: #ffffff !important;
    /* border: 2px solid #111; */
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background-color: #000;
    /* border-color: #000; */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-black {
    background-color: #111;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-black:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 20px 60px;
    background: #f1f4f3;
}

.hero-container {
    max-width: 950px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #111;
}

.title-bottom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.title-icon {
    width: 44px;
    height: 44px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.trust-icon {
    width: 18px;
    height: 18px;
}

/* Chat Mockup */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    animation: fadeUp 1s ease-out forwards;
}

.visual-glow {
    display: none;
}

.chat-mockup {
    width: 100%;
    max-width: 740px;
    background: #e6ece8;
    border-radius: 24px;
    padding: 32px;
    border: 4px solid white;
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.chat-header {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: none;
    margin-bottom: 20px;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f5f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-pic img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.profile-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin-bottom: 2px;
}

.profile-info span {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

.chat-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 10px;
    min-height: auto;
    overflow-y: visible;
    padding-right: 0;
}

/* Custom Webkit Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 4px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

.message {
    padding: 24px 32px;
    font-size: 1.1rem;
    line-height: 1.6;
    animation: messagePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    color: #1a202c;
}

.message.incoming {
    background: #ffffff;
    color: #111;
    border-radius: 16px;
    align-self: stretch;
    max-width: 100%;
}

.message.outgoing {
    background: var(--brand-green);
    color: white;
    border-radius: 12px 12px 4px 12px;
    align-self: flex-end;
    max-width: 85%;
}

.message-actions {
    display: flex;
    gap: 24px;
    animation: fadeIn 0.5s ease 0.3s forwards;
    opacity: 0;
    width: 100%;
    padding: 0 32px;
}

.action-btn {
    flex: 1;
    background: white;
    border: none;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.action-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.fine-btn {
    color: #5BA26D;
    border: 2px solid #5BA26D;
}

.fine-btn:hover {
    background-color: #f3fcf5;
}

.help-btn {
    color: #E06565;
    border: 2px solid #E06565;
}

.help-btn:hover {
    background-color: #fef5f5;
}

.chat-footer {
    margin-top: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.input-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-main);
    background: transparent;
}

.input-container input::placeholder {
    color: #A0AABF;
}

.send-btn {
    background: var(--brand-green);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.send-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
        height: auto;
        min-height: 100vh;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 40px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

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

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .chat-mockup {
        width: 95%;
        max-width: 400px;
        transform: none !important;
        padding: 20px;
    }

    .message {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .message-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .navbar-container {
        padding: 6px 6px 6px 16px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .nav-actions .btn {
        display: none; /* Hide login button for better spacing */
    }
}

.no-scroll {
    overflow: hidden;
}

@keyframes messagePop {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-content {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-visual {
    animation: fadeLeft 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* --- About Section (Bento Grid) --- */
.about-bento {
    padding: 120px 20px;
    background: #f1f4f3;
    display: flex;
    justify-content: center;
}

.bento-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bento-header {
    text-align: center;
    margin-bottom: 20px;
}

.bento-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #71A086;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-top: 12px;
    letter-spacing: -0.03em;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

/* Base Card Style */
.bento-card {
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-8px);
}

/* Main Story Card */
.bento-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.bento-main:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.bento-main h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.bento-main .lead-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #84a98c;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.bento-main .sub-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.card-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(113, 160, 134, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Mission Quote Card */
.bento-mission {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-mission:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 24px;
    left: 40px;
}

.bento-mission h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

/* Important Note Card */
.bento-note {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #ffffff;
    border: 2px solid #fef2f2;
    box-shadow: 0 10px 40px rgba(229, 62, 62, 0.04);
}

.bento-note:hover {
    box-shadow: 0 20px 50px rgba(229, 62, 62, 0.08);
    border-color: #fee2e2;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #e53e3e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

.note-header h4 {
    color: #e53e3e;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-note p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .bento-mission {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .bento-note {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .bento-title {
        font-size: 2.2rem;
    }

    .bento-card {
        padding: 32px;
        border-radius: 24px;
    }
}

/* --- Features / Safety Section --- */
.features-section {
    padding: 120px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.features-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.features-header {
    text-align: center;
    max-width: 700px;
}

.features-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.features-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f1f6f3;
    color: #71A086;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: white;
    transform: scale(1.05) rotate(-8deg);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Features */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 2.2rem;
    }
}

/* --- Quietly Watching Split Block --- */
.safety-split-block {
    margin-top: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: #f1f6f3;
    border-radius: 32px;
    padding: 60px;
}

.split-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.split-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a202c;
    letter-spacing: -0.04em;
}

.split-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.split-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pulse-glow {
    position: relative;
    z-index: 1;
}

.pulse-glow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}

.stat-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .safety-split-block {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .split-right {
        grid-template-columns: 1fr;
    }

    .split-title {
        font-size: 2.4rem;
    }
}

/* --- Uncertainty Begins Section Redesign --- */
.uncertainty-section {
    padding: 120px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.uncertainty-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.uncertainty-header {
    text-align: center;
    max-width: 850px;
    margin-bottom: 20px;
}

.uncertainty-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.highlight-text {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fixed compatibility lint warning */
    -webkit-text-fill-color: transparent;
}

.uncertainty-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Showcase Showcase Styling */
.showcase-item {
    display: flex;
    align-items: center;
    gap: 0;
    /* Gap will be handled by padding instead */
    width: 100%;
    background: #f8fbf9;
    /* Ultra light background */
    border-radius: 48px;
    overflow: hidden;
    padding: 0;
    /* Removing gap to allow image to sit at edges */
}

.showcase-item.alternate {
    flex-direction: row-reverse;
}

.showcase-visual {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    height: 520px;
    /* Resetting shadow to match clean light-card style */
    box-shadow: none;
}

/* First card visual: Rounded left, sharp right */
.showcase-item:not(.alternate) .showcase-visual {
    border-radius: 48px 0 0 48px;
}

/* Second card (alternate) visual: Rounded right, sharp left */
.showcase-item.alternate .showcase-visual {
    border-radius: 0 48px 48px 0;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 60px 80px;
    /* Space on left and right side of the text */
}

.info-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #84a98c;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 100px;
    align-self: flex-start;
    letter-spacing: 0.1em;
    border: 1px solid rgba(132, 169, 140, 0.1);
}

.showcase-info h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.showcase-info p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

/* New Button Style: Outlined & Modern */
.showcase-btn {
    align-self: flex-start;
    padding: 16px 36px;
    font-size: 1.05rem;
    background: transparent;
    border: 2px solid #84a98c;
    color: #84a98c;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.showcase-btn:hover {
    background: #84a98c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(132, 169, 140, 0.25);
}

/* Dark variant button styling tweak */
.btn-dark {
    border-color: #1a202c;
    color: #1a202c;
}

.btn-dark:hover {
    background: #1a202c;
}

@media (max-width: 968px) {

    .showcase-item,
    .showcase-item.alternate {
        flex-direction: column;
        gap: 0;
        border-radius: 32px;
    }

    .showcase-visual,
    .showcase-item:not(.alternate) .showcase-visual,
    .showcase-item.alternate .showcase-visual {
        width: 100%;
        height: 320px;
        border-radius: 32px 32px 0 0;
        /* Rounded top when stacked */
    }

    .showcase-info {
        padding: 40px 30px;
        /* Reduced padding for mobile */
    }

    .uncertainty-title {
        font-size: 2.8rem;
    }

    .showcase-info h3 {
        font-size: 2rem;
    }

    .uncertainty-container {
        gap: 60px;
    }
}

/* --- Relaxing 4-Step Flow Redesign --- */
.flow-section {
    padding: 120px 20px;
    background: #fdfdfd;
    overflow: hidden;
}

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

.flow-header {
    text-align: center;
    margin-bottom: 100px;
}

.flow-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.flow-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

/* Connecting Line */
.flow-path-line {
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #84a98c 20%, #76ac81 80%, transparent);
    z-index: 1;
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

/* Zig-zag offset for modern look */
.flow-step:nth-child(even) {
    transform: translateY(40px);
}

.flow-step:nth-child(odd) {
    transform: translateY(-40px);
}

.step-marker {
    position: relative;
    margin-bottom: 40px;
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 900;
    color: #84a98c;
    background: #ffffff;
    padding: 2px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-icon-bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: #71A086;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(132, 169, 140, 0.15);
    border: 1px solid rgba(132, 169, 140, 0.1);
    transition: all 0.4s ease;
}

.flow-step:hover .step-icon-bg {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(132, 169, 140, 0.3);
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.flow-step:hover .step-card {
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .flow-steps {
        flex-direction: column;
        gap: 60px;
    }

    .flow-path-line {
        display: none;
    }

    .flow-step:nth-child(even),
    .flow-step:nth-child(odd) {
        transform: none;
    }

    .flow-step {
        padding: 0;
    }

    .flow-title {
        font-size: 2.5rem;
    }
}

/* --- Subscription Section --- */
.sub-section {
    padding: 120px 20px;
    background: #ffffff;
}

.sub-container {
    max-width: 1100px;
    margin: 0 auto;
}

.sub-header {
    text-align: center;
    margin-bottom: 70px;
}

.sub-badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #84a98c;
    background: #f1f6f3;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.sub-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
}

.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sub-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.card-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-green {
    color: #84a98c;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #f1f6f3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71A086;
    margin-bottom: 30px;
}

.sub-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 18px;
}

.check-icon {
    color: #84a98c;
    flex-shrink: 0;
}

.sub-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #e2e8f0;
    color: #1a202c;
}

.btn-outline:hover {
    border-color: #1a202c;
    background: #1a202c;
    color: #ffffff;
}

/* Featured / Dark Card Style */
.sub-card.featured {
    background: #1a202c;
    border-color: transparent;
    color: #ffffff;
}

.sub-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sub-card.featured h3 {
    color: #ffffff;
}

.sub-card.featured .features-list li {
    color: #a0aec0;
}

.sub-card.featured .check-icon {
    color: #76ac81;
}

.btn-filled {
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: #ffffff;
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(132, 169, 140, 0.3);
}

@media (max-width: 968px) {
    .sub-grid {
        grid-template-columns: 1fr;
    }

    .sub-card {
        padding: 40px;
    }

    .sub-title {
        font-size: 2.5rem;
    }
}

/* --- Why Choose Kshema Section --- */
.why-section {
    padding: 120px 20px;
    background: #fdfdfd;
}

/* --- Why Choose Kshema Section Redesign --- */
.why-section {
    padding: 120px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(132, 169, 140, 0.03);
    z-index: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    margin-bottom: 100px;
}

.why-badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #84a98c;
    background: #f1f6f3;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.why-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefit-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #71A086;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f4f1;
    z-index: 1;
}

.benefit-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.benefit-item:hover .benefit-glow {
    opacity: 0.2;
}

.benefit-item:hover .benefit-icon-wrapper {
    background: linear-gradient(145deg, #f8fbf9, #ffffff);
    border-color: #84a98c;
    color: #84a98c;
}

.benefit-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.benefit-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefit-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }

    .why-watermark {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .benefit-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-title {
        font-size: 2.8rem;
    }

    .benefit-item {
        align-items: center;
        text-align: center;
    }

    .why-watermark {
        display: none;
    }
}

/* --- Privacy Section --- */
.privacy-section {
    padding: 140px 20px;
    background: #1a202c;
    /* Secure dark brand background */
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.privacy-icon-top {
    margin-bottom: 40px;
}

.shield-carrier {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #84a98c;
    border: 1px solid rgba(132, 169, 140, 0.2);
}

.shield-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #84a98c;
    opacity: 0.15;
    animation: pulse-shield 3s infinite ease-in-out;
}

@keyframes pulse-shield {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
}

.privacy-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 50px;
    font-weight: 400;
}

.privacy-footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    font-weight: 600;
    color: #71A086;
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-text {
        font-size: 1.1rem;
    }

    .privacy-section {
        padding: 80px 20px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 120px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #84a98c;
    background: #f1f6f3;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.faq-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-list {
    margin-bottom: 60px;
    border-top: 1px solid #eef2ef;
}

.faq-item {
    border-bottom: 1px solid #eef2ef;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #84a98c;
}

.faq-icon {
    font-size: 1.8rem;
    color: #84a98c;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Plus to X */
    color: #1a202c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    max-height: 500px;
    /* Arbitrary high value for transition */
    padding-bottom: 32px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eef2ef;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 12px;
}

.faq-link {
    color: #84a98c;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #1a202c;
    transform: translateX(5px);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 24px 0;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 140px 20px;
    background: #fbfdfc;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.contact-info {
    max-width: 500px;
}

.contact-badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #84a98c;
    background: #f1f6f3;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 48px;
}

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

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

.method-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84a98c;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.method-text span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.method-text p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
}

/* Contact Form Styling */
.contact-form-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: #f8faf9;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #84a98c;
    box-shadow: 0 0 0 4px rgba(132, 169, 140, 0.1);
    outline: none;
}

.contact-submit {
    margin-top: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(132, 169, 140, 0.3);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
    }

    .contact-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px 24px;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}

/* --- Tiered Modern Footer --- */
.footer {
    background: #1a202c;
    color: #ffffff;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Footer Upper: CTA Tier (Premium Upgrade) */
.footer-cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px 40px;
    margin-bottom: 120px;
    backdrop-filter: blur(10px);
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.cta-text {
    font-size: 1.25rem;
    color: #a0aec0;
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Fixed Get Started Button */
.footer-btn.btn-filled {
    padding: 18px 44px;
    background: linear-gradient(135deg, #84a98c, #76ac81);
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(132, 169, 140, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.footer-btn.btn-filled:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(132, 169, 140, 0.4);
}

.btn-outline-white {
    padding: 18px 44px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #1a202c;
    border-color: #ffffff;
}

/* Footer Middle: Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
}

.brand-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: #84a98c;
    border-color: #84a98c;
    transform: translateY(-5px);
}

.footer-nav h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #84a98c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 18px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #a0aec0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ffffff;
}

/* Footer Bottom: Legal */
.footer-bottom {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #718096;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    text-decoration: none;
    color: #718096;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px 40px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-btns {
        flex-direction: column;
        gap: 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-watermark {
        font-size: 15rem;
    }
}