@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #070d1a;
    --bg-soft: #0d1426;
    --ink: #f4f7ff;
    --ink-soft: #a9b3cb;
    --surface: #0e1830;
    --line: #22304f;
    --accent: #ff7a1a;
    --accent-deep: #d85f09;
    --cyan: #2ed4d4;
    --radius: 14px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --bg-color: var(--bg);
    --text-color: var(--ink);
    --card-bg: var(--surface);
    --border-color: var(--line);
    --primary-color: var(--accent);
    --accent-color: var(--cyan);
    --text-light: var(--ink-soft);
    --gradient: linear-gradient(135deg, var(--accent), #ffb37d);
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
    --shadow-md: var(--shadow);
    --transition: all 0.3s ease;
    --border-radius: var(--radius);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at 15% 0%, rgba(255, 122, 26, 0.25), transparent 30%),
                radial-gradient(circle at 90% 0%, rgba(46, 212, 212, 0.18), transparent 28%),
                var(--bg);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.9;
}

h1,
h2,
h3,
h4 {
    font-family: "Bebas Neue", sans-serif;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.container,
.wrap {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.container {
    padding: 2.5rem 1rem;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(7, 13, 26, 0.8);
    border-bottom: 1px solid rgba(34, 48, 79, 0.75);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
}

.brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.65rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--ink);
}

.menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-dropdown > a::after {
    content: "\25BE";
    font-size: 0.62rem;
    margin-left: 0.45rem;
    opacity: 0.8;
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 0.35rem;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0b152a;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    z-index: 40;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.submenu a {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}

.submenu a:hover {
    background: rgba(255, 122, 26, 0.18);
    border-color: rgba(255, 122, 26, 0.42);
    transform: none;
}

.menu-dropdown:hover .submenu,
.menu-dropdown:focus-within .submenu,
.menu-dropdown.open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

@media (min-width: 761px) {
    .menu {
        position: static;
        transform: none;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .menu a {
        font-size: 0.92rem;
        padding: 0.58rem 0.88rem;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu a:not(.nav-cta)::after {
        content: "";
        position: absolute;
        top: -20%;
        bottom: -20%;
        left: -30%;
        width: 46%;
        background: linear-gradient(110deg, rgba(255, 122, 26, 0) 0%, rgba(255, 122, 26, 0.45) 52%, rgba(46, 212, 212, 0) 100%);
        transform: translateX(-170%) skewX(-20deg);
        opacity: 0;
        z-index: -1;
        transition: transform 0.46s ease, opacity 0.36s ease;
    }

    .menu > a:not(.nav-cta),
    .menu > .menu-dropdown > a {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(169, 179, 203, 0.18);
    }

    .menu > a:not(.nav-cta):hover,
    .menu > .menu-dropdown > a:hover,
    .menu > .menu-dropdown.open > a,
    .menu > a.is-active,
    .menu > .menu-dropdown > a.is-active {
        background: rgba(255, 122, 26, 0.2);
        border-color: rgba(255, 122, 26, 0.42);
        box-shadow: 0 10px 20px rgba(255, 122, 26, 0.18);
        transform: translateY(-2px);
    }

    .menu > a:not(.nav-cta):hover::after,
    .menu > .menu-dropdown > a:hover::after,
    .menu > .menu-dropdown.open > a::after,
    .menu > a.is-active::after,
    .menu > .menu-dropdown > a.is-active::after {
        transform: translateX(240%) skewX(-20deg);
        opacity: 1;
    }
}

.menu a:hover {
    background: rgba(255, 122, 26, 0.12);
    color: var(--ink);
    transform: translateY(-1px);
}

.menu a.nav-cta {
    background: var(--accent);
    color: #0f0f0f;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.24);
}

.menu a.nav-cta:hover {
    background: #ff8d36;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 122, 26, 0.33);
}

.menu a.is-active {
    background: rgba(255, 122, 26, 0.2);
    color: var(--ink);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 22, 0.72);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 18;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #121c35 0%, #0b1327 100%);
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 22;
}

.menu-toggle span {
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffd1a8);
    transform-origin: center;
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 33px; }

.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #0f0f0f;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
}

.btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
}

.btn-ghost,
.btn-secondary {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
}

.btn-ghost:hover,
.btn-secondary:hover {
    background: rgba(255, 122, 26, 0.08);
    color: var(--ink);
}

.btn-light {
    background: #fff;
    color: #0f0f0f;
}

.hero {
    padding: 5rem 0 2.4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.6rem;
    align-items: center;
}

h1 {
    font-size: clamp(2.3rem, 6vw, 5rem);
    margin-bottom: 1.1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 122, 26, 0.12);
    border: 1px solid var(--line);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
    color: #ffb37d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero p,
.sub,
.subtitle,
.footer-cta p,
.cta-band p {
    font-family: "Manrope", sans-serif;
    color: var(--ink-soft);
    max-width: 58ch;
    font-size: 1.02rem;
}

.hero-cta,
.cta-buttons {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.split-two {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.stat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem;
    background: #0b152a;
}

.stat strong {
    display: block;
    color: var(--accent);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
}

.quote-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0a142a;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.quote-card p {
    color: var(--ink-soft);
}

.quote-card .author {
    margin-top: 0.8rem;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.84rem;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0a142a;
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group {
    display: grid;
    gap: 0.42rem;
    margin-bottom: 0.8rem;
}

.form-group label {
    color: var(--ink-soft);
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--line);
    background: #091227;
    color: var(--ink);
    border-radius: 10px;
    padding: 0.75rem 0.82rem;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 122, 26, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.16);
}

.helper-note {
    margin-top: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.contact-side {
    display: grid;
    gap: 0.9rem;
}

.mini-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0a142a;
    padding: 1rem;
}

.mini-card h3 {
    margin-bottom: 0.45rem;
}

.mini-card p,
.mini-card a,
.mini-card span {
    color: var(--ink-soft);
}

.mini-card strong {
    color: var(--ink);
}

.social-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.social-pill:hover {
    color: var(--ink);
    border-color: rgba(255, 122, 26, 0.5);
}

.success-panel {
    display: none;
    border: 1px solid rgba(46, 212, 212, 0.45);
    background: rgba(46, 212, 212, 0.08);
    border-radius: 12px;
    padding: 0.9rem;
    margin-top: 0.8rem;
}

.success-panel.show {
    display: grid;
    gap: 0.5rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.showcase-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0a142a;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 26, 0.6);
}

.showcase-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-media img {
    transform: scale(1.06);
}

.showcase-content {
    padding: 0.95rem;
    display: grid;
    gap: 0.45rem;
}

.tag-row {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.asset-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.asset-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #091227;
    padding: 0.9rem;
}

.asset-item p {
    color: var(--ink-soft);
}

.hero-panel,
.card,
.step,
.faq details,
.footer-cta {
    background: linear-gradient(160deg, rgba(255, 122, 26, 0.08) 0%, rgba(46, 212, 212, 0.07) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 1.4rem;
    background: linear-gradient(165deg, rgba(255, 122, 26, 0.13) 0%, rgba(46, 212, 212, 0.08) 45%, rgba(8, 17, 36, 0.92) 100%);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-metric,
.grid,
.process,
.footer-grid {
    display: grid;
    gap: 0.75rem;
}

.hero-metric {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.15rem;
}

.hero-metric div {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem;
    background: #0b152a;
}

.hero-metric span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.hero-metric strong,
.price {
    display: block;
    color: var(--accent);
}

.hero-metric strong {
    font-size: 1.2rem;
}

.section {
    padding: 3rem 0;
}

.section h2,
.footer-col h4,
.footer-cta h3,
.card h3,
.step h3,
.faq summary,
.cta-band h2 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.02em;
}

.section h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin-bottom: 0.8rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 26, 0.6);
}

.pill {
    font-size: 0.78rem;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price {
    font-size: 1.9rem;
    margin: 0.7rem 0;
    letter-spacing: 0.04em;
    font-family: "Bebas Neue", sans-serif;
}

.process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.step {
    background: #091227;
}

.step span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 999px;
    background: var(--accent);
    color: #141414;
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}

.faq details {
    background: #0a142a;
}

.faq details + details {
    margin-top: 0.8rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
}

.faq p {
    color: var(--ink-soft);
    margin-top: 0.55rem;
}

.cta-band {
    margin: 3rem 0 2.5rem;
    background: linear-gradient(120deg, #ff7a1a 0%, #ff9d4a 55%, #ffd2a8 100%);
    border-radius: 20px;
    color: #1a1208;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cta-band p {
    color: #2a1a0d;
    font-weight: 600;
}

.ticker {
    margin-top: 1.8rem;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 24s linear infinite;
}

.ticker-item {
    padding: 0.85rem 1.4rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.09em;
    color: #ffc79d;
    font-size: 1.02rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12));
    margin-top: 2rem;
}

.footer-shell {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(255, 122, 26, 0.16), rgba(46, 212, 212, 0.09));
    margin-bottom: 1.5rem;
}

.footer-cta h3 {
    font-size: 2rem;
}

.footer-cta p {
    max-width: 54ch;
}

.footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    padding: 1rem 0 1.5rem;
}

.footer-col {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.footer-col h4 {
    font-size: 1.4rem;
    color: var(--ink);
}

.footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.3rem;
    letter-spacing: 0.12em;
    color: var(--ink);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.2rem;
    justify-content: center;
}

.footer-tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--ink-soft);
    font-size: 0.8rem;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.footer-tag:hover {
    border-color: rgba(255, 122, 26, 0.42);
    background: rgba(255, 122, 26, 0.12);
    color: var(--ink);
}

.footer-contact strong {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(34, 48, 79, 0.75);
    color: var(--ink-soft);
    font-size: 0.88rem;
}

@media (min-width: 981px) {
    footer {
        padding-top: 3.4rem;
    }

    .footer-grid {
        grid-template-columns: 1.45fr 0.95fr 1.05fr 1.15fr;
        gap: 1.35rem;
        padding-top: 1.35rem;
        padding-bottom: 1.8rem;
    }

    .footer-col:first-child {
        border: 1px solid rgba(34, 48, 79, 0.9);
        border-radius: 16px;
        background: linear-gradient(165deg, rgba(255, 122, 26, 0.11), rgba(46, 212, 212, 0.06) 45%, rgba(8, 17, 36, 0.92));
        padding: 1rem;
    }

    .footer-col h4 {
        margin-bottom: 0.35rem;
        letter-spacing: 0.05em;
    }

    .footer-meta {
        justify-content: flex-start;
        margin-top: 0.45rem;
    }

    .footer-bottom {
        align-items: center;
        padding-top: 1.2rem;
        border-top-color: rgba(46, 212, 212, 0.28);
    }
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.2), transparent 35%),
                radial-gradient(circle at 80% 20%, rgba(46, 212, 212, 0.2), transparent 35%),
                #050a16;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-box {
    text-align: center;
    display: grid;
    gap: 0.8rem;
    justify-items: center;
}

.loader-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.18em;
    color: #f4f7ff;
}

.loader-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent);
    border-right-color: var(--cyan);
    animation: spin 0.9s linear infinite;
}

.loader-text {
    color: #c0cadf;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.is-loading,
body.nav-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .split-two {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .process,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .menu {
        position: fixed;
        top: 88px;
        left: 4vw;
        right: 4vw;
        flex-direction: column;
        align-items: flex-start;
        background: #0c152b;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.8rem;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px) scale(0.98);
        pointer-events: none;
        z-index: 21;
    }

    .menu a {
        width: 100%;
        padding: 0.8rem 0.9rem;
    }

    .menu-dropdown {
        width: 100%;
        display: block;
    }

    .menu-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        min-width: 0;
        margin-top: 0.3rem;
        box-shadow: none;
    }

    .grid-3,
    .process,
    .hero-metric,
    .footer-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .cta-band,
    .footer-cta {
        padding: 1.4rem;
    }
}

@media (max-width: 360px) {
    .hero,
    .section {
        padding-left: 0;
        padding-right: 0;
    }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.everything-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.everything-list p {
    font-weight: 500;
    background: var(--card-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.referral-offer { text-align: center; }

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 3rem 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.pricing-card:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
    z-index: 3;
    padding-top: 2.5rem;
}

.pricing-card.featured:hover {
    transform: scale(1.03);
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing-discount {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

body.dark-mode .pricing-discount {
    background: #1b5e20;
    color: #a5d6a7;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
}

.features-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li .check {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card,
    .pricing-card:first-child,
    .pricing-card:last-child {
        border-radius: var(--border-radius);
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: none;
    }
}

/* --- SERVICES PAGE --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border: none;
    border-radius: 16px;
    padding: 2rem;
    background: var(--card-bg);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 98, 230, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 98, 230, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .service-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.2);
}

.cta-section { text-align: center; padding-top: 2rem; }
.cta-section .btn { margin-top: 1rem; }

/* --- CONTACT PAGE --- */
.contact-layout { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    max-width: 1100px;
    width: 100%;
}

@media (min-width: 769px) { 
    .contact-layout { 
        grid-template-columns: 2fr 1fr; 
        gap: 3rem;
    }
}

@media (max-width: 768px) { 
    .form-group-split {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.form-group { 
    margin-bottom: 1.25rem; 
    width: 100%;
}

.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 500; 
    font-size: 0.9rem; 
    color: var(--text-light); 
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group textarea { 
    resize: vertical; 
    min-height: 120px; 
}

.form-group input:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); 
}

.form-group-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
    width: 100%;
}

.contact-form-container button[type="submit"] { 
    width: 100%; 
    font-size: 1rem; 
}

.contact-details {
    width: 100%;
}

#whatsapp-link-container {
    text-align: center;
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 1.5rem;
}

#whatsapp-link-container h3 { color: var(--primary-color); }
.contact-details h3 { font-size: 1.3rem; }
.contact-details p { margin-bottom: 1rem; }
.social-icons { margin-top: 1.5rem; display: flex; gap: 1.5rem; }
.social-link { color: var(--text-light); display: inline-block; transition: var(--transition); }
.social-link svg { width: 28px; height: 28px; fill: currentColor; }
.social-link:hover { color: var(--primary-color); transform: scale(1.1) translateY(-3px); }

/* --- ABOUT PAGE --- */
.about-content { max-width: 900px; }
.about-text h2 { font-size: 1.8rem; color: var(--primary-color); margin-top: 2rem; }
.founder-section { text-align: center; margin-top: 4rem; }

.founder-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.founder-img {
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    transition: var(--transition);
    filter: grayscale(100%);
}

.founder-card:hover .founder-img { filter: grayscale(0%); transform: scale(1.05); }

/* --- ASSETS PAGE --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-caption {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-caption h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.portfolio-caption p { color: var(--text-light); font-size: 0.9rem; margin-top: auto; }

/* 7. ANIMATIONS
----------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* 8. FOOTER
----------------------------------------- */
#site-footer {
    margin-top: 60px;
    padding: 30px 20px 15px;
    font-size: 14px;
    opacity: 0.85;
}

#site-footer a { text-decoration: none; }

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.footer-col strong { display: block; margin-bottom: 8px; }
.footer-col a, .footer-col span, .footer-col p { display: block; margin-bottom: 6px; }
.footer-bottom { text-align: center; margin-top: 25px; font-size: 13px; }
