@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;

    color: #18211d;

    background: #aeb8ac;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


/* =================================
   HEADER
================================= */

.site-header {
    position: fixed;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 1000;

    width: calc(100% - 36px);
    max-width: 1550px;

    min-height: 78px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        rgba(205, 211, 202, 0.94);

    backdrop-filter: blur(16px);

    border:
        1px solid
        rgba(25, 39, 31, 0.15);

    border-radius: 20px;

    box-shadow:
        0 14px 40px
        rgba(28, 40, 33, 0.13);
}


.brand {
    display: flex;
    align-items: center;

    gap: 12px;
}


.brand img {
    width: 50px;
    height: 50px;

    border-radius: 12px;

    object-fit: cover;
}


.brand-name {
    display: flex;
    flex-direction: column;
}


.brand-name strong {
    color: #17201c;

    font-family: "Space Grotesk", sans-serif;

    font-size: 17px;

    letter-spacing: 4px;
}


.brand-name span {
    margin-top: 4px;

    color: #b9433c;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 5px;
}


/* NAVIGATION */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.desktop-nav a {
    color: #445149;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    transition: 0.25s;
}


.desktop-nav a:hover {
    color: #a43731;
}


.privacy-button {
    padding: 14px 18px;

    border:
        1px solid
        rgba(28, 42, 33, 0.27);

    border-radius: 9px;
}


/* MOBILE BUTTON */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-button span {
    width: 23px;
    height: 2px;

    background: #1d2922;
}


/* MOBILE NAV */

.mobile-nav {
    display: none;

    position: fixed;

    top: 105px;
    left: 18px;
    right: 18px;

    z-index: 999;

    padding: 12px;

    background:
        rgba(199, 207, 197, 0.98);

    border-radius: 15px;

    box-shadow:
        0 20px 50px
        rgba(25, 38, 30, 0.18);
}


.mobile-nav.open {
    display: flex;

    flex-direction: column;
}


.mobile-nav a {
    padding: 15px;

    color: #344139;

    border-bottom:
        1px solid
        rgba(25, 39, 31, 0.09);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}



/* =================================
   HOME HERO
================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        130px 20px
        60px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(193, 202, 193, 0.20),
            rgba(111, 125, 116, 0.30)
        ),
        url("assets/images/hero-bg.jpg")
        center center / cover
        no-repeat;
}


/* soft shading for readability */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(235, 238, 231, 0.08),
            rgba(33, 43, 37, 0.12)
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 800px;

    padding:
        43px 45px;

    text-align: center;

    background:
        rgba(220, 225, 216, 0.64);

    backdrop-filter: blur(9px);

    border:
        1px solid
        rgba(255, 255, 255, 0.34);

    border-radius: 24px;

    box-shadow:
        0 25px 65px
        rgba(23, 34, 28, 0.18);
}


.hero-label {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;

    color: #4a584f;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3.5px;
}


.hero-label span {
    width: 35px;
    height: 2px;

    background: #b9433c;
}


.hero h1 {
    color: #17201c;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            60px,
            7vw,
            100px
        );

    line-height: 0.89;

    font-weight: 600;

    letter-spacing: -5px;
}


.hero h1 span {
    display: block;

    color: #59675e;
}


.hero-content > p {
    max-width: 620px;

    margin:
        27px auto
        0;

    color: #3f4c44;

    font-size: 14px;

    line-height: 1.85;
}


/* HERO BUTTONS */

.hero-buttons {
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}


.primary-btn {
    min-height: 55px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;

    gap: 30px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #c54b43,
            #a53630
        );

    border-radius: 9px;

    box-shadow:
        0 14px 32px
        rgba(151, 48, 43, 0.25);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s;
}


.primary-btn:hover {
    background: #91302b;

    transform: translateY(-3px);
}


.secondary-btn {
    color: #243129;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border-bottom:
        1px solid #516057;

    padding-bottom: 7px;
}


/* HERO STATS */

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 39px;
}


.hero-stats div {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 100px;
}


.hero-stats strong {
    color: #a63731;

    font-size: 19px;
}


.hero-stats span {
    color: #27342c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero-stats i {
    width: 1px;
    height: 40px;

    background:
        rgba(32, 47, 37, 0.22);
}



/* =================================
   COMMON SECTION
================================= */

.section {
    padding:
        110px 7%;
}


.section-small-title {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 45px;

    color: #47554c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.section-small-title span {
    color: #a63832;
}


.big-heading {
    color: #18211d;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            45px,
            5.5vw,
            78px
        );

    line-height: 1;

    font-weight: 500;

    letter-spacing: -4px;
}


.big-heading span {
    display: block;

    color: #5c6961;
}


.two-column {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}



/* =================================
   PROTOCOL
================================= */

.protocol-section {
    background: #bdc6ba;
}


.section-text h3 {
    margin-bottom: 20px;

    color: #243129;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            25px,
            3vw,
            38px
        );

    font-weight: 500;
}


.section-text p {
    margin-bottom: 18px;

    color: #46534a;

    font-size: 14px;

    line-height: 1.9;
}



/* =================================
   FEATURES
================================= */

.features-section {
    background:
        linear-gradient(
            180deg,
            #929f94,
            #aab4a8
        );
}


.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 58px;
}


.feature-card {
    min-height: 315px;

    padding: 26px;

    display: flex;
    flex-direction: column;

    background:
        rgba(213, 218, 209, 0.88);

    border:
        1px solid
        rgba(28, 41, 33, 0.16);

    border-radius: 14px;

    box-shadow:
        0 15px 35px
        rgba(28, 40, 33, 0.11);

    transition: 0.3s;
}


.feature-card:hover {
    transform: translateY(-7px);

    background: #dfe3dc;
}


.number {
    color: #606d64;

    font-size: 9px;

    letter-spacing: 2px;
}


.feature-icon {
    width: 52px;
    height: 52px;

    margin-top: auto;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #a83a34;

    background:
        rgba(185, 67, 60, 0.11);

    border-radius: 50%;

    font-size: 23px;
}


.feature-card h3 {
    margin-bottom: 10px;

    color: #1e2a23;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;

    font-weight: 500;
}


.feature-card p {
    color: #4b5950;

    font-size: 12px;

    line-height: 1.75;
}



/* =================================
   EXPERIENCE
================================= */

.experience-section {
    background: #b4beb2;
}


.experience-box {
    padding: 60px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    background:
        linear-gradient(
            130deg,
            #919e93,
            #b4beb3
        );

    border-radius: 20px;

    border:
        1px solid
        rgba(28, 41, 33, 0.16);
}


.mini-title {
    margin-bottom: 18px;

    color: #97332e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.experience-left h2 {
    color: #18211d;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 1;

    font-weight: 500;

    letter-spacing: -4px;
}


.experience-left h2 span {
    display: block;

    color: #4f5d54;
}


.experience-left p {
    margin-top: 25px;

    color: #405047;

    font-size: 13px;

    line-height: 1.8;
}


.experience-list {
    background:
        rgba(215, 220, 211, 0.90);

    border-radius: 13px;

    overflow: hidden;

    box-shadow:
        0 18px 45px
        rgba(25, 38, 30, 0.13);
}


.experience-row {
    display: grid;

    grid-template-columns:
        40px 1fr;

    gap: 17px;

    padding: 22px;

    border-bottom:
        1px solid
        rgba(30, 44, 35, 0.10);
}


.experience-row:last-child {
    border: 0;
}


.experience-row > span {
    color: #aa3b35;

    font-size: 10px;

    font-weight: 700;
}


.experience-row strong {
    display: block;

    margin-bottom: 5px;

    color: #26342b;
}


.experience-row p {
    color: #4e5b53;

    font-size: 11px;

    line-height: 1.6;
}



/* =================================
   WHY
================================= */

.why-section {
    background:
        linear-gradient(
            180deg,
            #9ca89d,
            #89968c
        );
}


.why-content > p {
    color: #344239;

    font-size: 14px;

    line-height: 1.9;
}


.why-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}


.why-grid div {
    padding: 15px;

    color: #344139;

    background:
        rgba(213, 218, 209, 0.76);

    border-radius: 8px;

    font-size: 11px;
}


.why-grid span {
    margin-right: 7px;

    color: #a43731;

    font-weight: 700;
}



/* =================================
   SUPPORT
================================= */

.support-section {
    background: #b9c2b7;
}


.support-card {
    padding: 55px 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background:
        linear-gradient(
            130deg,
            #929f94,
            #b0baaf
        );

    border-radius: 18px;

    border:
        1px solid
        rgba(27, 40, 32, 0.16);
}


.support-card h2 {
    color: #17211c;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height: 1;

    font-weight: 500;

    letter-spacing: -3px;
}


.support-card p {
    max-width: 550px;

    margin-top: 16px;

    color: #3e4c44;

    font-size: 13px;

    line-height: 1.8;
}


.dark-btn {
    flex-shrink: 0;

    min-height: 54px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;

    gap: 22px;

    color: white;

    background: #26322c;

    border-radius: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s;
}


.dark-btn:hover {
    background: #a73a34;

    transform: translateY(-3px);
}



/* =================================
   FINAL SECTION
================================= */

.final-section {
    min-height: 70vh;

    padding:
        100px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(185, 67, 60, 0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #7f8c82,
            #9da89e,
            #77857b
        );
}


.final-label {
    color: #842d29;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 5px;
}


.final-section h2 {
    margin:
        20px 0
        25px;

    color: #17201c;

    font-family: "Space Grotesk", sans-serif;

    font-size:
        clamp(
            55px,
            7vw,
            95px
        );

    line-height: 0.91;

    font-weight: 500;

    letter-spacing: -5px;
}


.final-section p {
    margin:
        0 auto
        30px;

    color: #344239;

    font-size: 13px;
}



/* =================================
   FOOTER
================================= */

.footer {
    padding:
        42px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            135deg,
            #87958a,
            #9eaa9f
        );

    border-top:
        1px solid
        rgba(28, 40, 33, 0.15);
}


.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;
}


.footer-brand img {
    width: 40px;
    height: 40px;

    object-fit: cover;

    border-radius: 8px;
}


.footer-brand div {
    display: flex;
    flex-direction: column;
}


.footer-brand strong {
    color: #17201c;

    font-size: 10px;

    letter-spacing: 3px;
}


.footer-brand span {
    margin-top: 4px;

    color: #8d312c;

    font-size: 6px;

    letter-spacing: 3px;
}


.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 22px;
}


.footer-links a {
    color: #344239;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.footer-links a:hover {
    color: #8f302b;
}


.footer > p {
    color: #3d4b43;

    font-size: 8px;
}



/* =================================
   TABLET
================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .menu-button {
        display: flex;
    }


    .two-column,
    .experience-box {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .support-card {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer {
        flex-direction: column;

        text-align: center;
    }

}



/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .site-header {
        top: 10px;

        width:
            calc(100% - 20px);

        min-height: 68px;

        padding: 0 14px;

        border-radius: 15px;
    }


    .brand img {
        width: 42px;
        height: 42px;
    }


    .brand-name strong {
        font-size: 12px;

        letter-spacing: 3px;
    }


    .brand-name span {
        font-size: 6px;

        letter-spacing: 3px;
    }


    .mobile-nav {
        top: 88px;

        left: 10px;
        right: 10px;
    }


    /* HOME */

    .hero {
        min-height: 100svh;

        padding:
            100px 13px
            35px;

        background-position: center center;
    }


    .hero-content {
        padding:
            30px 18px;

        border-radius: 17px;
    }


    .hero-label {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .hero-label span {
        width: 25px;
    }


    .hero h1 {
        font-size: 49px;

        letter-spacing: -3px;
    }


    .hero-content > p {
        font-size: 12px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        gap: 20px;
    }


    .hero-stats {
        gap: 15px;

        flex-wrap: wrap;
    }


    .hero-stats i {
        display: none;
    }


    .hero-stats div {
        min-width: 80px;
    }


    /* SECTIONS */

    .section {
        padding:
            78px 20px;
    }


    .big-heading {
        letter-spacing: -2px;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }


    .feature-card {
        min-height: 275px;
    }


    .experience-box {
        padding:
            30px 18px;

        border-radius: 15px;
    }


    .experience-left h2 {
        letter-spacing: -2px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .support-card {
        padding:
            35px 22px;
    }


    .final-section {
        min-height: 600px;

        padding:
            80px 20px;
    }


    .final-section h2 {
        letter-spacing: -3px;
    }


    .footer-links {
        gap: 15px;
    }

    /* =================================
   HERO BOX REMOVE + TEXT ON BACKGROUND
================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 130px 20px 60px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(35, 45, 39, 0.22),
            rgba(35, 45, 39, 0.28)
        ),
        url("assets/images/hero-bg.jpg")
        center center / cover
        no-repeat;
}

.hero::before {
    display: none;
}


/* white box hata do */
.hero-content {
    width: 100%;
    max-width: 900px;

    padding: 0 !important;

    text-align: center;

    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}


/* top label */
.hero-label {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;

    color: #f1f4ef !important;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3.5px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-label span {
    width: 35px;
    height: 2px;

    background: #c54b43;
}


/* main heading */
.hero h1 {
    color: #ffffff !important;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.89;

    font-weight: 600;

    letter-spacing: -5px;

    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero h1 span {
    display: block;

    color: #e6ece7 !important;
}


/* paragraph */
.hero-content > p {
    max-width: 700px;

    margin: 27px auto 0;

    color: #f3f6f3 !important;

    font-size: 15px;

    line-height: 1.85;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}


/* buttons */
.hero-buttons {
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.primary-btn {
    background:
        linear-gradient(
            135deg,
            #c54b43,
            #a53630
        ) !important;

    box-shadow:
        0 14px 32px
        rgba(151, 48, 43, 0.25);
}

.primary-btn:hover {
    background: #91302b !important;
}

.secondary-btn {
    color: #ffffff !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.7) !important;
}


/* stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 39px;

    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 100px;
}

.hero-stats strong {
    color: #ffb2ad !important;

    font-size: 19px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

.hero-stats span {
    color: #ffffff !important;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.hero-stats i {
    width: 1px;
    height: 40px;

    background: rgba(255, 255, 255, 0.28);
}


/* mobile */
@media (max-width: 600px) {

    .hero {
        min-height: 100svh;

        padding: 100px 14px 40px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 !important;
    }

    .hero-label {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-label span {
        width: 24px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .hero-stats i {
        display: none;
    }

}
}
/* =========================================
   HOME HERO FINAL POLISH
   NO BOX — SOFT CENTER FADE
========================================= */

.hero {
    position: relative;
}


/* poori image par box nahi,
   sirf center mein soft fade */
.hero::before {
    content: "";

    display: block !important;

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at center,
            rgba(226, 231, 223, 0.82) 0%,
            rgba(226, 231, 223, 0.62) 28%,
            rgba(226, 231, 223, 0.30) 48%,
            rgba(226, 231, 223, 0.05) 68%,
            transparent 82%
        );

    pointer-events: none;

    z-index: 1;
}


.hero-content {
    position: relative;

    z-index: 2;

    max-width: 820px;

    transform: translateY(-10px);

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}


/* small VANISH PROTOCOL text */

.hero-label {
    color: #39463e !important;

    text-shadow: none !important;
}

.hero-label span {
    background: #b9433c !important;
}


/* main heading */

.hero h1 {
    color: #17201c !important;

    text-shadow:
        0 2px 12px
        rgba(255, 255, 255, 0.20) !important;
}

.hero h1 span {
    color: #59675e !important;
}


/* paragraph */

.hero-content > p {
    max-width: 670px;

    color: #3e4b43 !important;

    font-weight: 500;

    text-shadow: none !important;
}


/* discover more */

.secondary-btn {
    color: #243129 !important;

    border-bottom:
        1px solid #4e5c53 !important;
}


/* stats */

.hero-stats strong {
    color: #aa3933 !important;

    text-shadow: none !important;
}

.hero-stats span {
    color: #27342c !important;
}

.hero-stats i {
    background:
        rgba(30, 45, 35, 0.25) !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .hero::before {
        background:
            radial-gradient(
                ellipse at center,
                rgba(226, 231, 223, 0.88) 0%,
                rgba(226, 231, 223, 0.65) 40%,
                rgba(226, 231, 223, 0.18) 72%,
                transparent 90%
            );
    }

    .hero-content {
        transform: none;
    }

}