/* =========================================================
   AMAATYA Static Website CSS
   Theme: Vibrant Cyan/Teal Gradient + Metallic Gold Gradient
   ========================================================= */

:root {
    --dark-main: #020713;
    --dark-secondary: #07101f;
    --dark-card: rgba(8, 18, 34, 0.78);
    --dark-card-solid: #081222;

    --cyan: #20f5e8;
    --teal: #00b8d4;
    --blue: #0088ff;

    --gold-light: #fff2b0;
    --gold: #d4af37;
    --gold-dark: #8c6b1f;

    --white: #ffffff;
    --muted: #a9b3c7;
    --border: rgba(255, 255, 255, 0.12);

    --cyan-gradient: linear-gradient(135deg, #20f5e8, #00b8d4, #0088ff);
    --gold-gradient: linear-gradient(135deg, #fff2b0, #d4af37, #8c6b1f);
    --dark-gradient: radial-gradient(circle at top left, rgba(32, 245, 232, 0.16), transparent 32%),
                     radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 32%),
                     linear-gradient(135deg, #020713 0%, #07101f 55%, #020713 100%);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --shadow-cyan: 0 0 35px rgba(32, 245, 232, 0.25);
    --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.24);
    --shadow-card: 0 22px 70px rgba(0, 0, 0, 0.35);

    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --transition: all 0.35s ease;
}

/* =========================
   Reset
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--dark-main);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font-family: inherit;
}

::selection {
    background: rgba(32, 245, 232, 0.35);
    color: var(--white);
}

/* =========================
   Background Effects
   ========================= */

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    background: var(--dark-gradient);
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: floatGlow 7s ease-in-out infinite alternate;
}

.bg-glow-cyan {
    top: 80px;
    left: -120px;
    background: var(--cyan);
}

.bg-glow-gold {
    right: -140px;
    bottom: 80px;
    background: var(--gold);
    animation-delay: 1.5s;
}

@keyframes floatGlow {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-40px) scale(1.08);
    }
}

/* =========================
   Header / Navbar
   ========================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(2, 7, 19, 0.76);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(2, 7, 19, 0.94);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.35);
}

.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(32, 245, 232, 0.25));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--cyan-gradient);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--gold-gradient);
    color: #081222;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.38);
}

.nav-cta i {
    margin-left: 7px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px auto;
    border-radius: 999px;
    transition: var(--transition);
}

/* =========================
   Common Layout
   ========================= */

.page-content {
    min-height: 70vh;
}

.section {
    padding: 100px 0;
}

.section-container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-label,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 15px;
    border: 1px solid rgba(32, 245, 232, 0.26);
    border-radius: 999px;
    background: rgba(32, 245, 232, 0.08);
    color: var(--cyan);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-label {
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
}

.section-heading h2,
.dashboard-content h2,
.cta-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-heading h2 span,
.dashboard-content h2 span {
    display: block;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p,
.dashboard-content p,
.cta-container p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* =========================
   Buttons
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.96rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--cyan-gradient);
    color: #02101d;
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 55px rgba(32, 245, 232, 0.38);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    border-color: rgba(212, 175, 55, 0.48);
    color: var(--gold-light);
    transform: translateY(-4px);
}

.center-action {
    text-align: center;
    margin-top: 46px;
}

/* =========================
   Hero Section
   ========================= */

.hero-section {
    position: relative;
    padding: 92px 0 72px;
    overflow: hidden;
}

.hero-container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 58px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--cyan);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 5vw, 5.4rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    margin-top: 24px;
    max-width: 680px;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
}

.stat-box h3 {
    font-size: 1.65rem;
    font-weight: 800;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-visual {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-orbit {
    position: relative;
    width: 430px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(32, 245, 232, 0.23);
    animation: rotateOrbit 18s linear infinite;
}

.ring-one {
    inset: 0;
    box-shadow: inset 0 0 55px rgba(32, 245, 232, 0.08);
}

.ring-two {
    inset: 48px;
    border-color: rgba(212, 175, 55, 0.28);
    animation-direction: reverse;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-logo-card {
    position: relative;
    width: 255px;
    height: 255px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, rgba(32, 245, 232, 0.14), transparent 55%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-card), 0 0 80px rgba(32, 245, 232, 0.18);
    backdrop-filter: blur(20px);
}

.hero-logo-card img {
    position: relative;
    z-index: 2;
    width: 165px;
    height: 165px;
    object-fit: contain;
}

.hero-logo-glow {
    position: absolute;
    inset: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 66%);
    filter: blur(22px);
}

.floating-chip {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(8, 18, 34, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    font-weight: 700;
    font-size: 0.86rem;
    animation: chipFloat 3.6s ease-in-out infinite alternate;
}

.floating-chip i {
    color: var(--cyan);
}

.chip-one {
    top: 56px;
    left: -28px;
}

.chip-two {
    right: -30px;
    top: 170px;
    animation-delay: 0.8s;
}

.chip-three {
    left: 52px;
    bottom: 30px;
    animation-delay: 1.4s;
}

@keyframes chipFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

/* =========================
   Trust Strip
   ========================= */

.trust-strip {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.trust-container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.trust-container p {
    color: var(--muted);
    font-weight: 600;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
}

.trust-points i {
    color: var(--gold);
}

/* =========================
   Cards / Icons
   ========================= */

.problem-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card,
.feature-card,
.step-card,
.dashboard-card,
.footer-brand,
.footer-links,
.footer-newsletter {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--dark-card);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-card);
}

.problem-card,
.step-card {
    padding: 30px;
    transition: var(--transition);
}

.problem-card::before,
.feature-card::before,
.step-card::before,
.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 245, 232, 0.10), transparent 36%, rgba(212, 175, 55, 0.08));
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover,
.feature-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(32, 245, 232, 0.32);
}

.problem-card:hover::before,
.feature-card:hover::before,
.step-card:hover::before {
    opacity: 1;
}

.problem-card > *,
.feature-card > *,
.step-card > * {
    position: relative;
    z-index: 2;
}

.problem-icon,
.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.cyan-icon {
    background: rgba(32, 245, 232, 0.10);
    color: var(--cyan);
    box-shadow: 0 0 22px rgba(32, 245, 232, 0.12);
}

.gold-icon {
    background: rgba(212, 175, 55, 0.13);
    color: var(--gold-light);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.13);
}

.problem-card h3,
.feature-card h3,
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.problem-card p,
.feature-card p,
.step-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* =========================
   Feature Preview
   ========================= */

.features-preview {
    background:
        radial-gradient(circle at 20% 20%, rgba(32, 245, 232, 0.07), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06), transparent 30%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px;
    min-height: 265px;
    transition: var(--transition);
}

.feature-card.large-card {
    grid-row: span 2;
}

.feature-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.feature-top span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.16);
}

.mini-chart {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-chart span {
    flex: 1;
    border-radius: 999px 999px 6px 6px;
    background: var(--cyan-gradient);
    box-shadow: 0 0 20px rgba(32, 245, 232, 0.22);
}

/* =========================
   Dashboard Preview
   ========================= */

.dashboard-preview-section {
    padding-top: 110px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.dashboard-content {
    max-width: 570px;
}

.dashboard-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.dashboard-checks div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-checks i {
    color: var(--cyan);
}

.dashboard-card {
    padding: 32px;
    min-height: 520px;
}

.dashboard-card > * {
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.dashboard-header h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.dashboard-header p {
    color: var(--muted);
    font-size: 0.92rem;
}

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(32, 245, 232, 0.10);
    color: var(--cyan);
    font-weight: 800;
    font-size: 0.82rem;
}

.live-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--cyan);
}

.score-circle {
    width: 245px;
    height: 245px;
    margin: 42px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, var(--dark-card-solid) 0 56%, transparent 57%),
        conic-gradient(var(--cyan) 0 82%, rgba(255, 255, 255, 0.10) 82% 100%);
    box-shadow: 0 0 60px rgba(32, 245, 232, 0.20);
}

.score-circle div {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    background: rgba(8, 18, 34, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
}

.score-circle h4 {
    font-size: 3.5rem;
    line-height: 1;
    font-family: var(--font-heading);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-circle p {
    color: var(--muted);
    font-size: 0.9rem;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dashboard-metrics div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-metrics span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 5px;
}

.dashboard-metrics strong {
    color: var(--white);
    font-size: 1.15rem;
}

.insight-note {
    margin-top: 24px;
    padding: 17px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: var(--gold-light);
    font-weight: 700;
}

.insight-note i {
    margin-right: 8px;
}

/* =========================
   How It Works
   ========================= */

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-card {
    min-height: 245px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 22px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   CTA
   ========================= */

.cta-section {
    padding: 70px 0 110px;
}

.cta-container {
    position: relative;
    overflow: hidden;
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    text-align: center;
    padding: 72px 28px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(32, 245, 232, 0.14), rgba(212, 175, 55, 0.10)),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow-card);
}

.cta-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(32, 245, 232, 0.18), transparent 70%);
    filter: blur(40px);
}

.cta-container h2,
.cta-container p,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-container p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================
   Footer
   ========================= */

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 7, 19, 0.82);
    padding: 74px 0 24px;
}

.footer-container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.1fr;
    gap: 24px;
}

.footer-brand,
.footer-links,
.footer-newsletter {
    padding: 26px;
    border-radius: 24px;
}

.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p,
.footer-newsletter p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: var(--transition);
}

.footer-social a:hover {
    color: #02101d;
    background: var(--cyan-gradient);
    transform: translateY(-4px);
}

.footer-links h3,
.footer-newsletter h3 {
    font-family: var(--font-heading);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: var(--muted);
    margin: 10px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.newsletter-form {
    margin-top: 18px;
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 13px 16px;
    color: var(--white);
    background: transparent;
}

.newsletter-form input::placeholder {
    color: rgba(169, 179, 199, 0.8);
}

.newsletter-form button {
    width: 52px;
    border: none;
    background: var(--gold-gradient);
    color: #07101f;
    cursor: pointer;
    font-weight: 800;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* =========================
   Common Inner Page Styles
   Use for About, Features, Insights, Pricing, Contact
   ========================= */

.inner-hero {
    padding: 90px 0 55px;
    text-align: center;
}

.inner-hero .section-heading {
    margin-bottom: 0;
}

.content-card {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: var(--dark-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.common-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.common-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    outline: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.045);
    transition: var(--transition);
}

.form-control:focus {
    border-color: rgba(32, 245, 232, 0.55);
    box-shadow: 0 0 0 4px rgba(32, 245, 232, 0.08);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   Responsive Design
   ========================= */

@media (max-width: 1024px) {
    .hero-container,
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 480px;
    }

    .dashboard-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
    }

    .trust-points {
        justify-content: center;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
        background: rgba(2, 7, 19, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-card);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 13px 14px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .problem-grid,
    .common-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 72px 0;
    }

    .hero-section {
        padding: 64px 0 48px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 1.08rem;
    }

    .brand-tagline {
        font-size: 0.64rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 390px;
    }

    .logo-orbit {
        width: 310px;
        height: 310px;
    }

    .hero-logo-card {
        width: 190px;
        height: 190px;
    }

    .hero-logo-card img {
        width: 122px;
        height: 122px;
    }

    .floating-chip {
        font-size: 0.72rem;
        padding: 9px 11px;
    }

    .chip-one {
        top: 26px;
        left: -8px;
    }

    .chip-two {
        right: -10px;
        top: 138px;
    }

    .chip-three {
        left: 36px;
        bottom: 18px;
    }

    .feature-grid,
    .steps-grid,
    .dashboard-checks,
    .dashboard-metrics,
    .common-grid-2 {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 24px;
        min-height: auto;
    }

    .score-circle {
        width: 220px;
        height: 220px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-container {
        padding: 56px 22px;
    }
}

@media (max-width: 420px) {
    .navbar,
    .hero-container,
    .section-container,
    .trust-container,
    .cta-container,
    .footer-container,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .section-heading h2,
    .dashboard-content h2,
    .cta-container h2 {
        font-size: 1.85rem;
    }

    .logo-orbit {
        width: 280px;
        height: 280px;
    }

    .floating-chip {
        display: none;
    }

    /* =========================
   Flash Messages
   ========================= */

.flash-message-wrap {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.flash-message.success {
    background: rgba(32, 245, 232, 0.10);
    color: var(--cyan);
    border-color: rgba(32, 245, 232, 0.28);
}

.flash-message.error {
    background: rgba(255, 80, 80, 0.10);
    color: #ff8a8a;
    border-color: rgba(255, 80, 80, 0.28);
}
}