:root {

    --navy: #071A2B;
    --navy-light: #0D2940;

    --teal: #00BFA6;
    --teal-dark: #009F8B;
    --teal-light: #DDF8F3;

    --blue: #2F80ED;

    --white: #FFFFFF;

    --bg: #F7FAFC;
    --bg-soft: #F1F6F8;

    --text: #172B3A;
    --text-light: #64748B;
    --text-muted: #94A3B8;

    --border: #E2E8F0;

    --shadow-sm:
        0 4px 15px rgba(7, 26, 43, 0.06);

    --shadow:
        0 15px 45px rgba(7, 26, 43, 0.10);

    --shadow-lg:
        0 25px 70px rgba(7, 26, 43, 0.15);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --transition:
        all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {

    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    background: var(--bg);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}

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

button,
input,
textarea {
    font-family: inherit;
}

a {
    color: inherit;
}

::selection {
    background: var(--teal);
    color: white;
}

/* Visible keyboard focus for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(7, 26, 43, 0.90);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);

    transition: var(--transition);
}

.navbar.scrolled {

    background: rgba(7, 26, 43, 0.98);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.15);
}

.nav-container {

    max-width: 1180px;

    height: 78px;

    margin: auto;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Logo */

.logo {

    text-decoration: none;

    font-size: 1.65rem;

    font-weight: 800;

    letter-spacing: -0.7px;

    color: var(--teal);
}

.logo span {
    color: white;
}


/* Navigation */

.nav-links {

    display: flex;

    align-items: center;

    gap: 2.2rem;
}

.nav-links a {

    position: relative;

    text-decoration: none;

    color: rgba(255,255,255,0.75);

    font-size: 0.92rem;

    font-weight: 600;

    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {

    color: white;
}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--teal);

    border-radius: 10px;

    transition: var(--transition);
}

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


/* Mobile menu */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 10px;

    background: rgba(255,255,255,0.06);

    color: white;

    font-size: 1.15rem;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    padding: 140px 0 80px;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0,191,166,0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061725,
            #09273B 55%,
            #063C45
        );

    color: white;

    overflow: hidden;
}


/* Background */

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);
}

.orb-one {

    width: 450px;
    height: 450px;

    right: -180px;
    top: 100px;

    background:
        radial-gradient(
            circle,
            rgba(0,191,166,0.16),
            transparent 70%
        );
}

.orb-two {

    width: 500px;
    height: 500px;

    left: -280px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(47,128,237,0.13),
            transparent 70%
        );
}


/* Medical pattern */

.medical-pattern {

    position: absolute;

    right: 4%;
    bottom: 10%;

    opacity: 0.035;

    display: grid;

    grid-template-columns: repeat(2, 100px);

    gap: 50px;

    font-size: 5rem;

    transform: rotate(-10deg);
}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 80px;
}


/* Hero content */

.hero-content {
    max-width: 650px;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 25px;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 100px;

    background:
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.8);

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.3px;
}

.badge-dot {

    width: 7px;
    height: 7px;

    background: var(--teal);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(0,191,166,0.12);
}


.hero-content h1 {

    max-width: 650px;

    font-size:
        clamp(3rem, 6vw, 5.2rem);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-content h1 span {

    color: var(--teal);

    display: inline-block;
}


.hero-description {

    max-width: 610px;

    color:
        rgba(255,255,255,0.68);

    font-size: 1.08rem;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* Hero buttons */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 45px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 11px;

    border: none;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn:hover {

    transform: translateY(-3px);
}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--teal),
            #00A990
        );

    color: white;

    box-shadow:
        0 12px 25px rgba(0,191,166,0.20);
}

.btn-primary:hover {

    box-shadow:
        0 16px 35px rgba(0,191,166,0.30);
}


.btn-outline {

    border:
        1px solid rgba(255,255,255,0.18);

    color: white;

    background:
        rgba(255,255,255,0.04);
}

.btn-outline:hover {

    background:
        rgba(255,255,255,0.10);
}


.btn-white {

    background: white;

    color: var(--navy);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}


/* Hero trust */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.58);

    font-size: 0.76rem;

    font-weight: 500;
}

.trust-item i {

    color: var(--teal);

    font-size: 0.85rem;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.hero-card {

    position: relative;

    width: min(420px, 90%);

    padding: 28px;

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.04)
        );

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.25);
}


.hero-card-top {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.doctor-avatar {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(0,191,166,0.16);

    color: var(--teal);

    font-size: 1.3rem;
}

.small-label {

    display: block;

    color: var(--teal);

    font-size: 0.63rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero-card-top h3 {

    font-size: 1rem;

    color: white;
}

.status-indicator {

    margin-left: auto;
}

.status-indicator span {

    display: block;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 0 6px rgba(0,191,166,0.10);
}


.hero-card-body {

    padding: 35px 0;
}

.medical-icon {

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 18px;

    background:
        rgba(0,191,166,0.10);

    color: var(--teal);

    font-size: 1.5rem;
}

/* App icon badge — used in the hero card's download promo */

.app-icon-badge {

    width: 60px;
    height: 60px;

    margin-bottom: 20px;

    border-radius: 18px;

    overflow: hidden;

    background:
        rgba(0,191,166,0.10);

    display: grid;

    place-items: center;
}

.app-icon-badge img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-card-body h4 {

    font-size: 1.45rem;

    margin-bottom: 10px;
}

.hero-card-body p {

    color:
        rgba(255,255,255,0.55);

    font-size: 0.88rem;

    line-height: 1.7;

    margin-bottom: 22px;
}

.hero-download-btn {

    min-height: 44px;

    padding: 0 18px;

    font-size: 0.78rem;

    border-radius: 10px;
}


.hero-card-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.hero-card-stats div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-card-stats strong {

    color: white;

    font-size: 0.85rem;
}

.hero-card-stats span {

    color:
        rgba(255,255,255,0.4);

    font-size: 0.65rem;
}


/* Floating cards */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    background:
        rgba(8,31,48,0.82);

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.20);
}

.floating-card i {

    color: var(--teal);

    font-size: 1.05rem;
}

.floating-card strong {

    display: block;

    color: white;

    font-size: 0.7rem;
}

.floating-card span {

    display: block;

    color:
        rgba(255,255,255,0.45);

    font-size: 0.58rem;
}

.floating-card-two {

    right: -5px;
    bottom: 75px;
}


/* Scroll indicator */

.scroll-indicator {

    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,0.35);

    text-decoration: none;

    font-size: 0.65rem;

    z-index: 2;
}

.scroll-indicator i {

    animation:
        bounce 1.7s infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 110px 0;
}

.about-section,
.products-section,
.contact-section {

    background: var(--bg);
}

.hakimbet-section {

    background:
        linear-gradient(
            180deg,
            #EFF8F8,
            #F8FBFC
        );
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 720px;

    margin:
        0 auto 60px;

    text-align: center;
}

.section-eyebrow {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--teal);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-heading h2 {

    color: var(--navy);

    font-size:
        clamp(2rem, 4vw, 3rem);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.section-heading h2 span {

    color: var(--teal);
}

.section-heading p {

    color: var(--text-light);

    max-width: 620px;

    margin: auto;

    font-size: 0.96rem;
}


/* =========================================================
   ABOUT CARDS
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.about-card {

    position: relative;

    padding: 35px;

    min-height: 350px;

    display: flex;

    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: white;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: var(--transition);
}

.about-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--teal),
            var(--blue)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.about-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

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

.featured-card {

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #0C3148
        );

    border-color: transparent;

    color: white;
}

.card-icon {

    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 1.35rem;

    margin-bottom: 25px;
}

.featured-card .card-icon {

    background:
        rgba(0,191,166,0.12);
}

.card-number {

    position: absolute;

    top: 30px;
    right: 30px;

    color: var(--text-muted);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 1px;
}

.featured-card .card-number {

    color:
        rgba(255,255,255,0.25);
}

.about-card h3 {

    color: var(--navy);

    font-size: 1.25rem;

    margin-bottom: 12px;
}

.featured-card h3 {
    color: white;
}

.about-card p {

    color: var(--text-light);

    font-size: 0.86rem;

    line-height: 1.75;

    margin-bottom: 25px;
}

.featured-card p {

    color:
        rgba(255,255,255,0.58);
}

.card-link {

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: var(--teal);

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;
}

.card-link i {

    transition: var(--transition);
}

.card-link:hover i {

    transform: translateX(5px);
}


/* =========================================================
   HAKIMBET APP
========================================================= */

.app-showcase {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    align-items: center;

    gap: 90px;
}


/* App image */

.app-image-wrapper {

    position: relative;

    display: flex;

    justify-content: center;

    min-height: 550px;

    align-items: center;
}

.app-glow {

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,191,166,0.20),
            transparent 70%
        );

    filter: blur(15px);
}

.app-image {

    position: relative;

    z-index: 2;
}

.app-image img {

    width: 310px;

    max-height: 560px;

    object-fit: contain;

    border-radius: 28px;

    box-shadow:
        0 30px 70px rgba(7,26,43,0.25);

    border:
        6px solid rgba(255,255,255,0.8);
}

.image-badge {

    position: absolute;

    z-index: 4;

    top: -15px;
    right: -35px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 100px;

    background: white;

    color: var(--navy);

    font-size: 0.65rem;

    font-weight: 700;

    box-shadow: var(--shadow);
}

.image-badge i {
    color: var(--teal);
}


/* Floating stat */

.app-floating-stat {

    position: absolute;

    z-index: 5;

    bottom: 55px;
    left: 5px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    background: white;

    border-radius: 14px;

    box-shadow: var(--shadow);

    border:
        1px solid var(--border);
}

.app-floating-stat > i {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 0.85rem;
}

.app-floating-stat strong {

    display: block;

    font-size: 0.72rem;

    color: var(--navy);
}

.app-floating-stat span {

    display: block;

    font-size: 0.58rem;

    color: var(--text-muted);
}


/* App details */

.app-details .section-eyebrow {

    margin-bottom: 18px;
}

.app-title-row {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}

.app-logo-small {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--blue)
        );

    color: white;

    font-size: 1.35rem;

    box-shadow:
        0 10px 25px rgba(0,191,166,0.20);
}

.app-title-row h2 {

    color: var(--navy);

    font-size: 1.7rem;

    line-height: 1.1;
}

.app-title-row span {

    color: var(--text-muted);

    font-size: 0.72rem;
}


.app-details h3 {

    color: var(--navy);

    max-width: 600px;

    font-size:
        clamp(2rem, 4vw, 3rem);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}

.app-details h3 span {
    color: var(--teal);
}

.app-description {

    color: var(--text-light);

    font-size: 0.92rem;

    max-width: 600px;

    margin-bottom: 32px;
}


/* Disclaimer note (used on index.html + download.html) */

.disclaimer-note {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    max-width: 600px;

    margin-bottom: 32px;

    padding: 16px 18px;

    border:
        1px solid rgba(0,191,166,0.25);

    border-radius: 13px;

    background:
        rgba(0,191,166,0.06);
}

.disclaimer-note i {

    flex-shrink: 0;

    margin-top: 3px;

    color: var(--teal-dark);

    font-size: 0.9rem;
}

.disclaimer-note p {

    color: var(--text);

    font-size: 0.76rem;

    line-height: 1.7;
}

.disclaimer-note a {

    color: var(--teal-dark);

    font-weight: 700;
}

.download-disclaimer {

    max-width: none;

    margin: 30px auto 0;
}


/* Feature grid */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;

    margin-bottom: 35px;
}

.feature-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    background: rgba(255,255,255,0.75);

    border:
        1px solid var(--border);

    border-radius: 13px;

    transition: var(--transition);
}

.feature-item:hover {

    transform: translateY(-3px);

    background: white;

    box-shadow: var(--shadow-sm);
}

.feature-icon {

    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 0.8rem;
}

.feature-item strong {

    display: block;

    color: var(--navy);

    font-size: 0.72rem;

    margin-bottom: 2px;
}

.feature-item span {

    display: block;

    color: var(--text-muted);

    font-size: 0.62rem;

    line-height: 1.5;
}


/* App actions */

.app-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}

.app-actions-top {

    margin-bottom: 32px;
}

.download-btn {

    padding-left: 20px;
    padding-right: 20px;
}

.download-note {

    color: var(--text-muted);

    font-size: 0.65rem;
}

.download-note i {
    color: var(--teal);
    margin-right: 4px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.product-card {

    position: relative;

    padding: 30px;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;
}

.product-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.product-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background:
        var(--teal-light);

    transition: var(--transition);
}

.product-card:hover::after {

    transform: scale(2.5);

    opacity: 0.35;
}

.product-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.product-icon {

    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 1.25rem;
}

.product-label {

    padding: 5px 9px;

    border-radius: 50px;

    background: var(--bg-soft);

    color: var(--text-muted);

    font-size: 0.55rem;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.product-card h3 {

    position: relative;

    z-index: 2;

    color: var(--navy);

    font-size: 1.15rem;

    margin-bottom: 10px;
}

.product-card p {

    position: relative;

    z-index: 2;

    color: var(--text-light);

    font-size: 0.82rem;

    line-height: 1.7;

    margin-bottom: 25px;
}

.btn-secondary {

    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    padding: 9px 15px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background: white;

    color: var(--navy);

    font-size: 0.7rem;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.btn-secondary:hover {

    border-color: var(--teal);

    background: var(--teal);

    color: white;

    transform: translateX(3px);
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(7,26,43,0.55);

    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {

    position: relative;

    width: min(480px, 100%);

    padding: 32px;

    border-radius: var(--radius);

    background: white;

    box-shadow: var(--shadow-lg);
}

.modal-box h3 {

    color: var(--navy);

    font-size: 1.2rem;

    margin-bottom: 14px;

    padding-right: 20px;
}

.modal-box p {

    color: var(--text-light);

    font-size: 0.85rem;

    line-height: 1.75;
}

.modal-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 8px;

    background: var(--bg-soft);

    color: var(--text-light);

    cursor: pointer;

    transition: var(--transition);
}

.modal-close:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 30px 0 100px;

    background: var(--bg);
}

.cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px 60px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #0B3549
        );

    color: white;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.cta-box::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -120px;
    top: -200px;

    border-radius: 50%;

    background:
        rgba(0,191,166,0.16);
}

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 650px;
}

.cta-content h2 {

    font-size:
        clamp(1.8rem, 4vw, 2.7rem);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--teal);
}

.cta-content p {

    color:
        rgba(255,255,255,0.58);

    font-size: 0.86rem;

    max-width: 580px;
}

.cta-box > .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-wrapper {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 25px;

    max-width: 1000px;

    margin: auto;
}


/* Contact info */

.contact-info {

    padding: 35px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #0C3148
        );

    color: white;
}

.contact-info-header {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.contact-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(0,191,166,0.12);

    color: var(--teal);
}

.contact-info h3 {

    font-size: 1.2rem;
}

.contact-info > p {

    color:
        rgba(255,255,255,0.55);

    font-size: 0.78rem;

    line-height: 1.75;

    margin-bottom: 30px;
}

.contact-feature {

    display: flex;

    gap: 10px;

    margin-bottom: 18px;
}

.contact-feature > i {

    color: var(--teal);

    font-size: 0.8rem;

    margin-top: 4px;
}

.contact-feature strong {

    display: block;

    font-size: 0.7rem;
}

.contact-feature span {

    display: block;

    color:
        rgba(255,255,255,0.4);

    font-size: 0.6rem;
}


/* Contact form */

.contact-form {

    padding: 35px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}

.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.form-group {

    margin-bottom: 18px;
}

.form-group label {

    display: block;

    color: var(--navy);

    font-size: 0.7rem;

    font-weight: 700;

    margin-bottom: 7px;
}

.input-wrapper {

    position: relative;
}

.input-wrapper > i {

    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 0.75rem;

    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {

    width: 100%;

    padding:
        13px 14px 13px 39px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: #FAFCFD;

    color: var(--text);

    font-size: 0.76rem;

    outline: none;

    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {

    border-color: var(--teal);

    background: white;

    box-shadow:
        0 0 0 4px rgba(0,191,166,0.08);
}

.input-wrapper textarea {

    resize: vertical;

    min-height: 145px;
}

.textarea-wrapper > i {

    top: 18px;

    transform: none;
}

.form-status {

    display: none;

    margin-bottom: 15px;

    padding: 10px 14px;

    border-radius: 9px;

    background: var(--teal-light);

    color: var(--teal-dark);

    font-size: 0.72rem;

    line-height: 1.6;
}

.form-status.visible {
    display: block;
}

.form-submit {

    width: 100%;
}

/* Honeypot field — present in the DOM for bots to find, but
   invisible and unreachable for real visitors. */
.hp-field {

    position: absolute;

    left: -9999px;

    top: -9999px;

    height: 0;

    overflow: hidden;
}


/* =========================================================
   LEGAL PAGE (privacy.html)
========================================================= */

.legal-section {
    padding-top: 160px;
}

.legal-container {
    max-width: 760px;
}

.legal-container h1 {

    color: var(--navy);

    font-size: clamp(2.2rem, 4vw, 3rem);

    letter-spacing: -1.5px;

    margin: 10px 0 8px;
}

.legal-updated {

    color: var(--text-muted);

    font-size: 0.78rem;

    margin-bottom: 30px;
}

.legal-callout {

    display: flex;

    gap: 12px;

    padding: 18px 20px;

    margin-bottom: 40px;

    border:
        1px solid rgba(217,119,87,0.3);

    border-radius: 13px;

    background: rgba(217,119,87,0.06);
}

.legal-callout i {

    flex-shrink: 0;

    margin-top: 3px;

    color: #C05A3C;
}

.legal-callout p {

    color: var(--text);

    font-size: 0.8rem;

    line-height: 1.75;
}

.legal-container h2 {

    color: var(--navy);

    font-size: 1.2rem;

    margin: 34px 0 12px;
}

.legal-container p {

    color: var(--text-light);

    font-size: 0.88rem;

    line-height: 1.8;
}

.legal-container ul {

    margin: 0 0 18px 22px;

    color: var(--text-light);

    font-size: 0.88rem;

    line-height: 1.9;
}

.legal-container li {

    margin-bottom: 4px;
}

.legal-container a {

    color: var(--teal-dark);

    font-weight: 700;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #051522;

    color: white;

    padding: 60px 0 25px;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 45px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {

    display: inline-block;

    margin-bottom: 12px;
}

.footer-brand p {

    max-width: 270px;

    color:
        rgba(255,255,255,0.38);

    font-size: 0.7rem;
}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-links h4 {

    color: white;

    font-size: 0.72rem;

    margin-bottom: 8px;
}

.footer-links a,
.footer-links span {

    color:
        rgba(255,255,255,0.4);

    text-decoration: none;

    font-size: 0.68rem;

    transition: var(--transition);
}

.footer-links a:hover {

    color: var(--teal);

    transform: translateX(3px);
}

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;
}

.footer-bottom p {

    color:
        rgba(255,255,255,0.3);

    font-size: 0.6rem;
}

.footer-bottom a {

    color:
        rgba(255,255,255,0.55);

    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--teal);
}

.footer-disclaimer {
    text-align: right;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-container {

        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        min-height: 450px;
    }

    .app-showcase {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .app-image-wrapper {
        min-height: 500px;
    }

    .app-details {
        max-width: 750px;
        margin: auto;
    }

    .disclaimer-note {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links {

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 12px 20px 20px;

        background:
            rgba(7,26,43,0.98);

        backdrop-filter: blur(20px);

        border-bottom:
            1px solid rgba(255,255,255,0.08);
    }

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

    .nav-links a {

        width: 100%;

        padding: 13px;

        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }


    /* Hero */

    .hero-section {

        min-height: auto;

        padding:
            125px 0 90px;
    }

    .hero-content h1 {

        font-size: 3rem;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.65rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-card {
        width: 95%;
    }

    .floating-card-two {
        right: -5px;
        bottom: 25px;
    }

    .scroll-indicator {
        display: none;
    }


    /* Sections */

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }


    /* About */

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

    .about-card {
        min-height: auto;
    }


    /* Hakimbet */

    .app-showcase {
        gap: 25px;
    }

    .app-image-wrapper {
        min-height: 440px;
    }

    .app-image img {
        width: 260px;
    }

    .image-badge {
        right: -5px;
    }

    .app-floating-stat {
        left: 0;
        bottom: 20px;
    }

    .app-details h3 {
        font-size: 2rem;
    }

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


    /* Products */

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


    /* CTA */

    .cta-section {
        padding-bottom: 80px;
    }

    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;
    }


    /* Contact */

    .contact-info,
    .contact-form {
        padding: 27px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* Footer */

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .legal-section {
        padding-top: 130px;
    }
}


.download-hero {

    position: relative;

    padding:
        145px 0 90px;

    min-height: 680px;

    display: flex;

    align-items: center;

    text-align: center;

    color: white;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,191,166,0.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061725,
            #09273B 55%,
            #063C45
        );

    overflow: hidden;
}


.download-background {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.download-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);
}


.download-orb-one {

    width: 500px;
    height: 500px;

    top: -250px;
    left: -150px;

    background:
        radial-gradient(
            circle,
            rgba(0,191,166,0.15),
            transparent 70%
        );
}


.download-orb-two {

    width: 450px;
    height: 450px;

    right: -200px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(47,128,237,0.14),
            transparent 70%
        );
}


.download-pattern {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: space-around;

    opacity: 0.025;

    font-size: 7rem;
}


.download-hero-container {

    position: relative;

    z-index: 2;

    max-width: 850px;
}


/* Back button */

.back-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,0.55);

    text-decoration: none;

    font-size: 0.72rem;

    font-weight: 600;

    transition: var(--transition);
}


.back-link:hover {

    color: white;

    transform: translateX(-3px);
}


/* Download badge */

.download-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 20px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 100px;

    background:
        rgba(255,255,255,0.06);

    color:
        rgba(255,255,255,0.65);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 1px;
}


.download-badge span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 0 5px rgba(0,191,166,0.10);
}


.download-hero h1 {

    font-size:
        clamp(3rem, 7vw, 5rem);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 20px;
}


.download-hero h1 span {

    color: var(--teal);
}


.download-hero-text {

    max-width: 650px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,0.62);

    font-size: 0.98rem;

    line-height: 1.8;
}


/* Device badge */

.device-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    margin-bottom: 28px;

    border:
        1px solid rgba(0,191,166,0.18);

    border-radius: 10px;

    background:
        rgba(0,191,166,0.07);

    color:
        rgba(255,255,255,0.55);

    font-size: 0.7rem;
}


.device-badge i {

    color: var(--teal);
}


.device-badge strong {

    color: white;
}


/* Main download */

.download-action {

    margin-bottom: 30px;
}


.download-main-btn {

    min-height: 58px;

    padding:
        0 28px;

    font-size: 0.85rem;

    border-radius: 13px;
}


.download-main-btn .fa-android {

    font-size: 1.2rem;
}


.file-size-info {

    margin-top: 10px;

    color:
        rgba(255,255,255,0.35);

    font-size: 0.62rem;
}


.file-size-info span {

    margin:
        0 5px;
}


.file-size-info strong {

    color:
        rgba(255,255,255,0.55);
}


/* Trust highlights */

.trust-highlights {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;
}


.trust-highlights div {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,0.45);

    font-size: 0.65rem;
}


.trust-highlights i {

    color: var(--teal);

    font-size: 0.75rem;
}


/* =========================================================
   DOWNLOAD INFO
========================================================= */

.download-info-section {

    background: var(--bg);
}


.download-card {

    max-width: 900px;

    margin: auto;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 24px;

    box-shadow: var(--shadow);

    overflow: hidden;
}


.download-card-header {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 35px;
}


.app-icon-wrapper {

    flex-shrink: 0;
}


.app-icon {

    width: 90px;
    height: 90px;

    object-fit: cover;

    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(7,26,43,0.12);

    border:
        1px solid var(--border);
}


.app-meta {

    min-width: 0;
}


.app-name-row {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}


.app-meta h3 {

    color: var(--navy);

    font-size: 1.6rem;

    line-height: 1.2;
}


.direct-badge {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding: 4px 7px;

    border-radius: 50px;

    background: var(--teal-light);

    color: var(--teal-dark);

    font-size: 0.55rem;

    font-weight: 700;
}


.developer {

    color: var(--text);

    font-size: 0.72rem;

    margin-top: 5px;
}


.developer-description {

    color: var(--text-muted);

    font-size: 0.62rem;

    margin-top: -3px;
}


.app-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 13px;
}


.app-stats span {

    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--text-muted);

    font-size: 0.6rem;
}


.app-stats i {

    color: var(--teal);
}


/* Divider */

.download-divider {

    height: 1px;

    margin:
        0 35px;

    background: var(--border);
}


/* Card body */

.download-card-body {

    padding: 35px;
}


.download-card-body h4 {

    color: var(--navy);

    font-size: 0.9rem;

    margin-bottom: 20px;
}


/* Features */

.app-feature-tags {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    list-style: none;

    margin-bottom: 30px;
}


.feature-tag {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: #FAFCFD;

    transition: var(--transition);
}


.feature-tag:hover {

    background: white;

    border-color:
        rgba(0,191,166,0.3);

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}


.tag-icon {

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 0.85rem;
}


.feature-tag strong {

    display: block;

    color: var(--navy);

    font-size: 0.7rem;
}


.feature-tag span {

    display: block;

    color: var(--text-muted);

    font-size: 0.58rem;

    margin-top: 2px;
}


/* Download card action */

.card-download-area {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    padding-top: 5px;
}


.download-card-btn {

    min-height: 48px;

    padding:
        0 20px;
}


.card-download-area p {

    color: var(--text-muted);

    font-size: 0.6rem;
}


.card-download-area p i {

    color: var(--teal);

    margin-right: 4px;
}


/* =========================================================
   INSTALLATION STEPS
========================================================= */

.installation-section {

    background: var(--bg-soft);
}


.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.step-card {

    position: relative;

    padding: 28px 22px;

    min-height: 250px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;
}


.step-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);
}


.step-number {

    position: absolute;

    top: 15px;
    right: 18px;

    color: var(--text-muted);

    opacity: 0.45;

    font-size: 0.65rem;

    font-weight: 800;
}


.step-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--teal-light);

    color: var(--teal);

    font-size: 1.1rem;
}


.step-card h3 {

    color: var(--navy);

    font-size: 0.95rem;

    margin-bottom: 9px;
}


.step-card p {

    color: var(--text-light);

    font-size: 0.7rem;

    line-height: 1.7;
}


/* =========================================================
   INSTALLATION NOTICE
========================================================= */

.notice-section {

    padding:
        0 0 100px;

    background: var(--bg-soft);
}


.installation-notice {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    max-width: 900px;

    margin: auto;

    padding: 20px 22px;

    border:
        1px solid rgba(0,191,166,0.15);

    border-radius: 14px;

    background:
        rgba(0,191,166,0.05);
}


.notice-icon {

    flex-shrink: 0;

    color: var(--teal);

    font-size: 1.1rem;
}


.installation-notice h3 {

    color: var(--navy);

    font-size: 0.75rem;

    margin-bottom: 4px;
}


.installation-notice p {

    color: var(--text-light);

    font-size: 0.65rem;

    line-height: 1.7;
}


/* =========================================================
   DOWNLOAD CTA
========================================================= */

.download-cta {

    padding:
        0 0 100px;

    background: var(--bg-soft);
}


.download-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px 50px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #0B3549
        );

    box-shadow: var(--shadow-lg);
}


.download-cta-box h2 {

    color: white;

    font-size:
        clamp(1.7rem, 4vw, 2.4rem);

    line-height: 1.2;

    letter-spacing: -1px;
}


.download-cta-box h2 span {

    color: var(--teal);
}


.download-cta-box .section-eyebrow {

    margin-bottom: 8px;
}


/* =========================================================
   DOWNLOAD BUTTON ANIMATION
========================================================= */

.download-started {

    animation:
        downloadPulse 0.7s ease;
}


@keyframes downloadPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.96);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================================
   UPCOMING APPS (download.html)
========================================================= */

.upcoming-section {

    background: var(--bg-soft);
}

.upcoming-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 340px));

    justify-content: center;

    gap: 22px;
}


/* =========================================================
   DOWNLOAD PAGE — TABLET
========================================================= */

@media (max-width: 900px) {

    .steps-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   DOWNLOAD PAGE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .download-hero {

        min-height: auto;

        padding:
            125px 0 75px;
    }


    .download-hero h1 {

        font-size: 3rem;

        letter-spacing: -2px;
    }


    .download-hero-text {

        font-size: 0.85rem;
    }


    .download-main-btn {

        width: 100%;

        max-width: 330px;
    }


    .trust-highlights {

        gap: 14px;

        flex-direction: column;

        align-items: center;
    }


    .download-card-header {

        padding: 25px;

        align-items: flex-start;
    }


    .app-icon {

        width: 70px;
        height: 70px;

        border-radius: 17px;
    }


    .app-meta h3 {

        font-size: 1.25rem;
    }


    .app-stats {

        flex-direction: column;

        gap: 5px;
    }


    .download-divider {

        margin:
            0 25px;
    }


    .download-card-body {

        padding: 25px;
    }


    .app-feature-tags {

        grid-template-columns: 1fr;
    }


    .card-download-area {

        align-items: flex-start;

        flex-direction: column;
    }


    .download-card-btn {

        width: 100%;
    }


    .steps-grid {

        grid-template-columns: 1fr;
    }


    .step-card {

        min-height: auto;
    }


    .installation-notice {

        padding: 17px;
    }


    .download-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }


    .download-cta-box .btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .download-hero h1 {

        font-size: 2.45rem;
    }


    .download-card-header {

        gap: 14px;
    }


    .app-icon {

        width: 60px;
        height: 60px;
    }


    .app-name-row {

        gap: 5px;
    }


    .direct-badge {

        display: none;
    }


    .download-cta-box h2 {

        font-size: 1.7rem;
    }

}

/* =========================================================
   RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .hero-content h1 {
        font-size: 2.45rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-card {
        padding: 20px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .floating-card-two {
        right: -20px;
    }

    .hero-card-stats {
        gap: 5px;
    }

    .app-image-wrapper {
        min-height: 390px;
    }

    .app-image img {
        width: 225px;
    }

    .image-badge {
        font-size: 0.55rem;
    }

    .app-floating-stat {
        transform: scale(0.85);
        left: -12px;
    }

    .app-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}
.download-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    border: 1px solid rgba(0,191,166,0.20);
    border-radius: 100px;
    background: rgba(0,191,166,0.08);
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
}

.download-counter i {
    color: var(--teal);
    font-size: 0.8rem;
}

.download-counter strong {
    color: white;
    font-weight: 800;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    border-color: #0b6e69;
    color: #ffffff;
    background: rgba(11, 110, 105, 0.15);
    transform: translateY(-2px);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
}