:root {
    --orange: #ff7a1a;
    --blue: #0b3d91;
    --green: #16a34a;
    --charcoal: #111827;
    --cream: #fff7ed;
    --white: #ffffff;
    --soft: #f8fafc;
    --muted: #64748b;
    --line: #e5e7eb;
    --shadow: 0 18px 55px rgba(17, 24, 39, 0.10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gograbx-body {
    margin: 0;
    background: #fffaf5;
    color: var(--charcoal);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #fed7aa;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(255, 122, 26, 0.24);
}

.brand-name {
    display: block;
    color: var(--charcoal);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.1;
}

.brand-tagline {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.primary-nav > a,
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 999px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.primary-nav a:hover {
    background: #fff7ed;
    color: var(--orange);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 280px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.dropdown-panel a {
    display: block;
    padding: 11px 14px;
    border-radius: 14px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions,
.hero-actions,
.center-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--charcoal);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    transition: 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(255, 122, 26, 0.22);
}

.btn-secondary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(11, 61, 145, 0.18);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-outline {
    border-color: var(--line);
    background: var(--white);
    color: var(--charcoal);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.hero-surface {
    background:
        linear-gradient(135deg, rgba(255, 122, 26, 0.13), rgba(22, 163, 74, 0.08)),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 65%, #f8fafc 100%);
}

.page-hero {
    border-bottom: 1px solid #fed7aa;
}

.hero-grid {
    min-height: 650px;
    padding: 76px 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: var(--white);
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--charcoal);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    margin-top: 22px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
}

h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 900;
}

h3 {
    font-size: 20px;
    font-weight: 900;
}

.hero-copy {
    max-width: 760px;
    margin: 22px 0 0;
    color: #475569;
    font-size: 20px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 30px;
}

.visual-card,
.home-visual,
.app-panel,
.qr-panel {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.visual-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.mini-stat {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--soft);
}

.mini-stat span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mini-stat strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
}

.home-visual {
    padding: 22px;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 18px;
}

.phone-card {
    min-height: 360px;
    padding: 22px;
    border: 10px solid var(--charcoal);
    border-radius: 34px;
    background: var(--white);
}

.phone-card strong {
    display: block;
    padding: 18px;
    border-radius: 20px;
    background: var(--orange);
    color: var(--white);
    font-size: 24px;
}

.phone-card p {
    color: var(--charcoal);
    font-weight: 900;
}

.phone-card span,
.visual-stack div {
    display: block;
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    background: var(--soft);
    font-weight: 900;
}

.visual-stack {
    display: grid;
    gap: 14px;
}

.visual-stack div:nth-child(3) {
    background: #dcfce7;
}

.visual-stack div:nth-child(4) {
    background: var(--blue);
    color: var(--white);
}

.visual-stack small {
    color: inherit;
    opacity: 0.76;
}

.section {
    padding: 84px 0;
    background: var(--white);
}

.section-soft {
    background: #f8fafc;
}

.section-cream {
    background: var(--cream);
}

.section-tight {
    padding-top: 0;
}

.section-dark,
.final-cta {
    background: var(--charcoal);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.final-cta h2,
.final-cta p {
    color: var(--white);
}

.section-header {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-header.align-left {
    margin-left: 0;
    text-align: left;
}

.section-header p {
    color: var(--muted);
    font-size: 18px;
}

.feature-grid,
.service-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.blog-card,
.gx-form {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card p,
.service-card p,
.blog-card p,
.split-grid p {
    color: var(--muted);
    line-height: 1.75;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #fff7ed;
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
}

.tone-blue .card-icon {
    background: #dbeafe;
    color: var(--blue);
}

.tone-green .card-icon {
    background: #dcfce7;
    color: var(--green);
}

.tone-charcoal .card-icon {
    background: #e5e7eb;
    color: var(--charcoal);
}

.service-card strong {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.step-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
}

.step-card h3 {
    margin-top: 15px;
    font-size: 17px;
}

.split-grid,
.form-layout,
.app-panel,
.qr-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.chip-grid span {
    display: block;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    font-weight: 900;
}

.chip-grid.light span {
    border-color: var(--line);
    background: var(--soft);
    color: #334155;
}

.note {
    padding: 18px;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    background: #f0fdf4;
    color: #166534;
    font-weight: 800;
}

.app-panel,
.qr-panel {
    padding: 36px;
    align-items: center;
}

.app-placeholder,
.qr-box {
    min-height: 250px;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 2px dashed var(--line);
    border-radius: 26px;
    background: var(--soft);
    text-align: center;
}

.app-placeholder span {
    display: inline-flex;
    min-width: 150px;
    justify-content: center;
    padding: 12px;
    border-radius: 14px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 900;
}

.qr-box {
    width: 250px;
    height: 250px;
    min-height: 250px;
    color: #94a3b8;
    font-size: 56px;
    font-weight: 900;
}

.faq-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--line);
}

.faq-item button {
    width: 100%;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-groups {
    display: grid;
    gap: 34px;
}

.faq-group {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 24px;
}

.gx-form h2 {
    font-size: 28px;
}

.gx-form > p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.form-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 900;
}

.form-field label span {
    color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: var(--soft);
    color: var(--charcoal);
    font: inherit;
}

.field-error {
    display: block;
    min-height: 20px;
    margin-top: 4px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 800;
}

.hp-field {
    display: none;
}

.form-success {
    padding: 14px;
    border-radius: 16px;
    background: #dcfce7;
    color: #166534;
    font-weight: 800;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list a,
.contact-list span {
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--soft);
    font-weight: 900;
}

.narrow {
    max-width: 920px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 56px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.7fr;
    gap: 44px;
}

.footer-brand p {
    color: var(--muted);
}

.footer-brand a {
    color: var(--blue);
    font-weight: 900;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-links h2,
.city-strip h2 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #475569;
    font-weight: 800;
}

.city-strip {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 24px;
    margin-top: 38px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--soft);
}

.pill {
    display: inline-flex;
    margin: 4px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #475569;
    font-size: 13px;
    font-weight: 900;
}

.pill-active {
    background: var(--orange);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .header-actions {
        display: none;
    }

    .primary-nav > a,
    .nav-dropdown > a {
        padding: 0 10px;
    }

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

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 86px;
        display: none;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav > a,
    .nav-dropdown > a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    .dropdown-panel {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 4px 0 8px;
    }

    .hero-grid,
    .split-grid,
    .form-layout,
    .app-panel,
    .qr-panel,
    .footer-grid,
    .city-strip,
    .faq-group {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 56px 0;
    }

    .home-visual {
        grid-template-columns: 1fr;
    }

    .phone-card {
        min-height: 260px;
    }

    .feature-grid,
    .blog-grid,
    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-tagline {
        display: none;
    }

    h1 {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

    .feature-grid,
    .service-grid,
    .blog-grid,
    .stepper,
    .chip-grid,
    .form-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .app-panel,
    .qr-panel {
        padding: 22px;
    }

    .qr-box {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
