:root {
    --ga-bg: #060d18;
    --ga-surface: #0c1829;
    --ga-card: #101f33;
    --ga-border: rgba(148, 163, 184, 0.14);
    --ga-text: #e2e8f0;
    --ga-muted: #94a3b8;
    --ga-brand: #024f7c;
    --ga-sky: #38bdf8;
    --ga-accent: #22c55e;
    --ga-warn: #f59e0b;
    --ga-danger: #ef4444;
}

* { box-sizing: border-box; }

body.ga-page {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--ga-text);
    background: var(--ga-bg);
    -webkit-font-smoothing: antialiased;
}

.ga-serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

.ga-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(34, 197, 94, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(37, 99, 235, 0.12), transparent 55%);
    pointer-events: none;
}

.ga-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
    pointer-events: none;
}

.ga-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(6, 13, 24, 0.82);
    border-bottom: 1px solid var(--ga-border);
}

.ga-nav-inner {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ga-logo img { height: 2.25rem; width: 2.25rem; object-fit: contain; }

.ga-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: var(--ga-accent);
    color: #052e16;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.ga-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -10px rgba(34, 197, 94, 0.55);
}

.ga-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 4rem;
}

.ga-container {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ga-hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .ga-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
        align-items: center;
    }
    .ga-hero { padding: 3.5rem 0 5rem; }
}

.ga-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(56, 189, 248, 0.08);
    color: #bae6fd;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.ga-eyebrow-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--ga-accent);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.ga-headline {
    font-size: clamp(2.1rem, 5.5vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0 0 1.1rem;
    font-weight: 600;
}

.ga-headline em {
    font-style: normal;
    color: var(--ga-sky);
    text-shadow: 0 0 32px rgba(56, 189, 248, 0.28);
}

.ga-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ga-muted);
    max-width: 36rem;
    margin: 0 0 1.75rem;
}

.ga-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.ga-proof-stat strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1.1;
}

.ga-proof-stat span {
    font-size: 0.75rem;
    color: var(--ga-muted);
    letter-spacing: 0.02em;
}

.ga-checklist {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ga-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.ga-check-icon {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--ga-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.ga-form-card {
    position: relative;
    background: linear-gradient(160deg, rgba(16, 31, 51, 0.98), rgba(12, 24, 41, 0.98));
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 1.35rem;
    padding: 1.5rem;
    box-shadow:
        0 28px 60px -24px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

@media (min-width: 1024px) {
    .ga-form-card { padding: 1.75rem; }
}

.ga-form-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.ga-form-badge h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.ga-price-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #052e16;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.ga-price-tag s {
    opacity: 0.65;
    margin-right: 0.25rem;
}

.ga-stepper {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.ga-step {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    transition: background 0.3s;
}

.ga-step.is-active,
.ga-step.is-done { background: linear-gradient(90deg, var(--ga-sky), var(--ga-accent)); }

.ga-step-label {
    font-size: 0.72rem;
    color: var(--ga-muted);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ga-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.ga-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #cbd5e1;
}

.ga-field input,
.ga-field select,
.ga-field textarea {
    width: 100%;
    padding: 0.72rem 0.85rem;
    border-radius: 0.7rem;
    border: 1px solid var(--ga-border);
    background: rgba(6, 13, 24, 0.65);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ga-field input:focus,
.ga-field select:focus,
.ga-field textarea:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.55);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.ga-field textarea { min-height: 5.5rem; resize: vertical; }

.ga-field-grid {
    display: grid;
    gap: 0.9rem;
}

@media (min-width: 640px) {
    .ga-field-grid.two { grid-template-columns: 1fr 1fr; }
}

.ga-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ga-chip {
    position: relative;
}

.ga-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ga-chip span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--ga-border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.78rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.ga-chip input:checked + span {
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(56, 189, 248, 0.12);
    color: #e0f2fe;
}

.ga-form-actions {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

.ga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    border: none;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.ga-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #052e16;
}

.ga-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -12px rgba(34, 197, 94, 0.65);
}

.ga-btn-primary:disabled { opacity: 0.65; cursor: wait; }

.ga-btn-ghost {
    background: transparent;
    color: var(--ga-muted);
    border: 1px solid var(--ga-border);
}

.ga-form-note {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    line-height: 1.55;
    color: var(--ga-muted);
}

.ga-form-error {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    color: #fca5a5;
}

.ga-form-panel { display: none; }
.ga-form-panel.is-active { display: block; }

.ga-form-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.ga-form-success-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--ga-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ga-form-success h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.ga-form-success p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ga-muted);
    line-height: 1.6;
}

.ga-section {
    padding: 4rem 0;
    border-top: 1px solid var(--ga-border);
}

.ga-section-title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.ga-section-lead {
    margin: 0 0 2rem;
    color: var(--ga-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 40rem;
}

.ga-phase-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
}

.ga-phase-tabs::-webkit-scrollbar { display: none; }

.ga-phase-tab {
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--ga-border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--ga-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.ga-phase-tab.is-active {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.1);
    color: #e0f2fe;
}

.ga-phase-panel { display: none; }
.ga-phase-panel.is-active { display: block; }

.ga-risk-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ga-risk-grid { grid-template-columns: repeat(2, 1fr); }
}

.ga-risk-card {
    background: var(--ga-card);
    border: 1px solid var(--ga-border);
    border-radius: 1rem;
    padding: 1.15rem;
}

.ga-risk-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.ga-risk-card h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.ga-severity {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
}

.ga-severity.critical { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
.ga-severity.high { background: rgba(245, 158, 11, 0.15); color: #fcd34d; }
.ga-severity.medium { background: rgba(56, 189, 248, 0.12); color: #7dd3fc; }

.ga-risk-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ga-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.ga-deliverables {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ga-deliverables { grid-template-columns: repeat(3, 1fr); }
}

.ga-deliverable {
    background: linear-gradient(180deg, rgba(16, 31, 51, 0.9), rgba(12, 24, 41, 0.75));
    border: 1px solid var(--ga-border);
    border-radius: 1rem;
    padding: 1.25rem;
}

.ga-deliverable-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--ga-sky);
    margin-bottom: 0.5rem;
}

.ga-deliverable h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #fff;
}

.ga-deliverable p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--ga-muted);
    line-height: 1.55;
}

.ga-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    opacity: 0.75;
    filter: grayscale(1) brightness(1.4);
}

.ga-logos img {
    height: 1.6rem;
    width: auto;
    object-fit: contain;
}

.ga-faq {
    display: grid;
    gap: 0.65rem;
    max-width: 48rem;
}

.ga-faq details {
    background: var(--ga-card);
    border: 1px solid var(--ga-border);
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
}

.ga-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ga-faq summary::-webkit-details-marker { display: none; }

.ga-faq p {
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    color: var(--ga-muted);
    line-height: 1.6;
}

.ga-cta-band {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(2, 79, 124, 0.35), rgba(34, 197, 94, 0.12));
    border-top: 1px solid var(--ga-border);
}

.ga-cta-band-inner {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.ga-footer-min {
    padding: 1.5rem 0 5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--ga-muted);
    border-top: 1px solid var(--ga-border);
}

.ga-footer-min a { color: #94a3b8; text-decoration: none; }
.ga-footer-min a:hover { color: var(--ga-sky); }

.ga-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(6, 13, 24, 0.92);
    border-top: 1px solid var(--ga-border);
    backdrop-filter: blur(12px);
    display: flex;
    gap: 0.65rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.ga-sticky-cta.is-visible { transform: translateY(0); }

@media (min-width: 1024px) {
    .ga-sticky-cta { display: none; }
}

.ga-hidden { display: none !important; }