/* ============================================================
   GLOBAL.CSS — Growigo Design System
   Base styles, variables, resets, utilities, navbar, footer
   ============================================================ */

/* ── 1. CSS Custom Properties (Design Tokens) ─────────────── */
:root {
    /* Brand Colors — Deep Navy + Icy Cyan (Stripe/Linear style) */
    --color-navy: #0d1b3e;
    /* Darkest navy — hero bg, footer bg */
    --color-navy-mid: #1e3a8a;
    /* Mid navy — cards, badges */
    --color-blue: #2563eb;
    /* Vivid blue — primary buttons        */
    --color-blue-hover: #1d4ed8;
    /* Hover state of primary button      */
    --color-cyan: #1fb6c9;
    /* Icy cyan — accent lines & SVG only  */
    --color-cyan-light: #5ed4e6;
    /* Lighter cyan — SVG decoration only  */

    /* Text highlight for span in headings */
    --color-highlight: #0e1f4d;
    /* Deep navy bold — for span on light/white bg sections         */
    --color-accent-title: rgba(255, 255, 255, 0.90);
    /* Near-white — for span inside large dark-bg headings (hero)   */

    /* Neutrals */
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --color-bg-alt: #f0f6ff;
    /* Very subtle blue tint for alt sections */
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;

    /* Gradients — subdued, no rainbow or gold */
    --gradient-dark: linear-gradient(160deg, #0d1b3e 0%, #1e3a8a 100%);
    --gradient-hero: linear-gradient(160deg, rgba(13, 27, 62, 0.96) 0%, rgba(30, 58, 138, 0.88) 100%);
    --gradient-btn: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f6ff 100%);

    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .12);
    --shadow-btn: 0 4px 14px rgba(37, 99, 235, .30);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Navbar */
    --navbar-height: 84px;

    /* Container */
    --container-max: 1200px;
    --container-pad: clamp(1rem, 5vw, 2rem);
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-navy);
}

/* ── 3. Layout Utilities ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-4xl);
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--dark {
    background: var(--gradient-dark);
    color: var(--color-white);
}

/* ── 4. Section Headings ───────────────────────────────────── */
.section__header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--space-3xl);
}

/* Badge: small, subtle pill ─ no gradient */
.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(31, 182, 201, 0.08);
    color: var(--color-cyan);
    border: 1px solid rgba(31, 182, 201, 0.20);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.section__badge i {
    font-size: 0.75rem;
    color: var(--color-cyan);
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

/* Accent span: uses --color-highlight (navy) on light bg by default */
.section__title span {
    color: var(--color-highlight);
}

/* On dark sections, override to soft white so it stays visible */
.section--dark .section__title span {
    color: var(--color-accent-title);
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ── 5. Buttons — Clean & Professional ─────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

/* Primary: vivid blue pill */
.btn--primary {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: var(--shadow-btn);
    border-color: var(--color-blue);
}

.btn--primary:hover {
    transform: translateY(-2px);
    background: var(--color-blue-hover);
    box-shadow: 0 8px 22px rgba(37, 99, 235, .40);
}

/* Secondary: transparent ghost on dark bg */
.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.30);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Outline: dark border on light bg */
.btn--outline {
    background: transparent;
    color: var(--color-navy-mid);
    border-color: var(--color-navy-mid);
}

.btn--outline:hover {
    background: var(--color-navy-mid);
    color: var(--color-white);
}

/* Accent: cyan for special CTAs */
.btn--accent {
    background: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
    box-shadow: 0 4px 14px rgba(31, 182, 201, .25);
}

.btn--accent:hover {
    transform: translateY(-2px);
    background: #179db0;
    box-shadow: 0 8px 22px rgba(31, 182, 201, .35);
}

.btn--sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ── Stats Bar (Global — used on home + about) ─────────────── */
.stats-bar {
    background: var(--color-navy);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stats-bar__item {
    position: relative;
    padding: var(--space-lg) var(--space-md);
}

.stats-bar__item+.stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stats-bar__icon {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    display: block;
}

.stats-bar__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.stats-bar__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 640px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 6. Cards ──────────────────────────────────────────────── */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* ── 7. Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    background: rgba(14, 31, 77, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(14, 31, 77, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
}

.navbar__logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(31, 182, 201, 0.25));
    /* Separation from navbar background */
    transition: transform 0.3s ease;
}

.navbar__logo:hover img {
    transform: scale(1.05);
    /* Subtle interactivity */
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-inline: auto;
}

.navbar__link {
    position: relative;
    padding: 0.5rem 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.navbar__link:hover {
    color: var(--color-white);
}

.navbar__link:hover::after {
    width: calc(100% - 1.75rem);
}

.navbar__link--active {
    color: var(--color-cyan) !important;
    background: rgba(31, 182, 201, 0.08);
}

.navbar__link--active::after {
    width: calc(100% - 1.75rem);
}

.navbar__cta {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.navbar__hamburger.is-open .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open .hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.is-open .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── 8. Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: var(--space-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__tagline {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-white);
    margin-bottom: 0.15rem;
}

.footer__subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    margin-bottom: var(--space-sm);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.50);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-normal);
}

.footer__nav-link i {
    font-size: 0.7rem;
    color: var(--color-cyan);
}

.footer__nav-link:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.9rem;
}

.footer__contact i {
    color: var(--color-cyan);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-normal);
}

.footer__contact a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--space-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom i.fa-heart {
    color: #ef4444;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-normal);
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── 9. Page Offset for Fixed Navbar ───────────────────────── */
/* Each page (hero / page-hero) handles navbar offset individually.
   Hero section: 100svh covers full viewport.
   Inner pages: page-hero uses calc(var(--navbar-height) + extra-padding). */


/* ── 10. Scroll Reveal Animation Utility ───────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ── 11. Skeleton / Utility ────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page transition fade */
.page-fade-in {
    animation: pageFadeIn 0.5s ease forwards;
}

/* ── 12. Global Page Components (Hero Base) ────────────────── */
.page-hero {
    background: var(--gradient-dark);
    padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-4xl);
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* ── Full-hero Geometric Grid Background ── */

/* Layer 1: Hexagonal grid — rotates slowly, covers full bg */
.page-hero::before {
    content: '';
    position: absolute;
    inset: -100px;
    /* extend beyond edges */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 104'%3E%3Cpolygon points='60,4 116,34 116,94 60,124 4,94 4,34' fill='none' stroke='%231FB6C9' stroke-width='0.8' opacity='0.5'/%3E%3C/svg%3E") repeat;
    background-size: 80px 70px;
    opacity: 0.12;
    pointer-events: none;
    animation: geoRotate 60s linear infinite;
    transform-origin: center;
}

/* Layer 2: Diamond dot grid — drifts slowly over hero */
.page-hero::after {
    content: '';
    position: absolute;
    inset: -60px;
    /* extend beyond edges */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Crect x='18' y='18' width='4' height='4' fill='%235ED4E6' opacity='0.6' transform='rotate(45 20 20)'/%3E%3C/svg%3E") repeat;
    background-size: 48px 48px;
    opacity: 0.10;
    pointer-events: none;
    animation: geoShift 25s ease-in-out infinite alternate;
}

@keyframes geoRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes geoShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

/* ── Global Call to Action ── */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-blue) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.cta-section__title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
}

.cta-section__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(31, 182, 201, 0.10);
    border: 1px solid rgba(31, 182, 201, 0.20);
    color: var(--color-cyan);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Single-color span highlight on large dark-bg heading — very soft, no clash */
.page-hero__title span {
    color: var(--color-accent-title);
}

.page-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(14, 31, 77, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: max-content;
    margin-inline: auto;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: var(--color-accent);
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── 12. Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 68px;
    }

    /* Mobile navbar */
    .navbar__links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(14, 31, 77, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md);
        gap: 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        pointer-events: none;
    }

    .navbar__links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar__link {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn--lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}