/* ================================================
   ALPA Intelli Moto Consulting — Premium Styles v2
   Apple-inspired minimal design with imagery & icons
   ================================================ */

/* ── Variables ── */
:root {
    --black:         #000000;
    --white:         #FFFFFF;
    --grey-lightest: #F5F5F7;
    --grey-light:    #E8E8ED;
    --grey-mid:      #86868B;
    --grey-dark:     #1D1D1F;
    --accent:        #2C5F8D;
    --accent-light:  #3A7AB5;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --font-display:  'Barlow Condensed', 'Inter', sans-serif;
    --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:    0.4s var(--ease-smooth);
    --nav-h:         70px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--grey-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded { opacity: 1; }

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

a { text-decoration: none; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ── Section Shared ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-label.centered { display: flex; justify-content: center; }
.section-label.light { color: rgba(255,255,255,0.6); }

.section-label i { font-size: 8px; }

.section-heading {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 20px;
    text-align: center;
}

.section-heading.left-align { text-align: left; }
.section-heading.light-heading { color: var(--white); }

.section-intro {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: var(--grey-mid);
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Fade-in ── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
}

/*
  The source image is 1024×576 (16:9) with large whitespace padding
  around the ALPA text. The text occupies roughly the middle 50% width
  and 60% height of the canvas.
  We use a clipping wrapper + negative margins to crop out the dead space
  so only the wordmark is visible, at the right visual size.
*/
.logo-wrap {
    /* Show only the centre portion of the image */
    overflow: hidden;
    /* Visual height of the cropped logo */
    height: 26px;
    /* Width = height × (1024/576) × cropped-fraction ≈ 26 × 1.78 × 1.85 ≈ 86px */
    width: 86px;
    position: relative;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

.logo-wrap:hover { opacity: 0.8; }

.logo-img {
    /*
      Render the full image larger than the wrapper so the
      whitespace is hidden. The text fills roughly 54% of the
      width and 58% of the height of the original canvas.
      We scale up so the text region = wrapper size.
    */
    width:  calc(86px / 0.54);   /* ≈ 159px */
    height: calc(26px / 0.58);   /* ≈ 45px  */
    /* Centre the image so the text lands in view */
    position: absolute;
    top:  50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    /* Default: white logo over dark hero */
    filter: invert(1) brightness(2);
    transition: filter 0.4s ease;
}

/* Scrolled navbar → show original black logo */
.navbar.scrolled .logo-img {
    filter: invert(0) brightness(1);
}

/* Footer logo wrapper — slightly smaller, always white */
.logo-wrap--footer {
    height: 22px;
    width: 72px;
}

.logo-img--footer {
    width:  calc(72px / 0.54);   /* ≈ 133px */
    height: calc(22px / 0.58);   /* ≈ 38px  */
    filter: invert(1) brightness(2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 7px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--grey-dark); }

.nav-link:hover {
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-link:hover {
    background: var(--grey-lightest);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25);
}

.navbar.scrolled .nav-cta {
    color: var(--black);
    background: var(--grey-lightest);
    border-color: transparent;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--grey-light);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

body.loaded .hero-img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-body {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 100px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}

.hero-eyebrow i { color: var(--accent-light); }

.hero-headline {
    font-size: clamp(48px, 7.5vw, 88px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2.5px;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-subheadline {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
    margin-bottom: 32px;
}

.hero-intro {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 720px;
    margin: 0 auto 50px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CTA Buttons ── */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.cta-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cta-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-hint i {
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about { padding: 130px 0; }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.75;
    color: var(--grey-dark);
    margin-bottom: 24px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 40px 80px rgba(0,0,0,0.16);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.about-img-badge i {
    font-size: 22px;
    color: var(--accent-light);
}

.about-img-badge span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
    background: var(--grey-lightest);
    padding: 130px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 44px 36px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.09);
    border-color: rgba(0,0,0,0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--grey-lightest);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 20px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-mid);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CLIENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clients { padding: 130px 0; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.client-item {
    background: var(--grey-lightest);
    padding: 32px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-dark);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.client-item i {
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.client-item:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.client-item:hover i { color: var(--accent-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.philosophy {
    background: var(--black);
    padding: 130px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 36px;
    transition: var(--transition);
}

.philosophy-card:hover {
    border-top-color: var(--accent-light);
}

.philosophy-number {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    margin-bottom: 16px;
    letter-spacing: -1px;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-number {
    color: rgba(44, 95, 141, 0.3);
}

.philosophy-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY ALPA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-alpa {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.why-image-band {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.78) 60%,
        rgba(30,50,80,0.82) 100%
    );
}

.why-body {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-content {
    max-width: 760px;
    margin: 0 auto 60px;
}

.why-content p {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
}

.why-content p:last-child { margin-bottom: 0; }

.why-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 60px;
    padding: 22px 40px;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.stat-item i {
    font-size: 22px;
    color: var(--accent-light);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CLOSING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.closing {
    background: var(--white);
    padding: 130px 0;
    text-align: center;
}

.closing-content {
    max-width: 700px;
    margin: 0 auto 48px;
}

.closing-content p {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.75;
    color: var(--grey-mid);
}

.closing .cta-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.closing .cta-primary:hover {
    background: transparent;
    color: var(--black);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact {
    background: var(--grey-lightest);
    padding: 130px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    font-size: 18px;
    color: var(--grey-mid);
    margin-top: 14px;
    line-height: 1.7;
}

.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-row > i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-dark);
    line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    max-width: 220px;
    line-height: 1.5;
}

.footer-center { text-align: center; }

.footer-tagline {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
}

.footer-tagline span {
    color: rgba(255,255,255,0.2);
    margin: 0 6px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    border-top: none;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INNER PAGES (Privacy & Terms)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.inner-page {
    padding-top: var(--nav-h);
    min-height: 100vh;
}

.inner-hero {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
}

.inner-hero .logo-link {
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 40px;
    color: var(--white);
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 14px;
}

.inner-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.inner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px 100px;
}

.inner-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 48px 0 14px;
    letter-spacing: -0.3px;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-mid);
    margin-bottom: 16px;
}

.inner-content ul {
    margin: 12px 0 20px 20px;
}

.inner-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-mid);
    margin-bottom: 8px;
}

.inner-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 50px;
    transition: gap 0.2s ease;
}

.inner-back:hover { gap: 12px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .container, .nav-container { padding: 0 40px; }

    .services-grid,
    .clients-grid { grid-template-columns: repeat(2, 1fr); }

    .philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .about-layout { gap: 50px; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-center { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    .container, .nav-container { padding: 0 24px; }

    .about-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }

    .about-image-wrap { aspect-ratio: 16 / 9; }

    .services-grid,
    .clients-grid,
    .philosophy-grid { grid-template-columns: 1fr; gap: 20px; }

    .philosophy-card { padding-top: 24px; }
    .philosophy-number { font-size: 44px; }

    .why-stats {
        flex-direction: column;
        border-radius: 20px;
        padding: 28px 32px;
        gap: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .nav-link { display: none; }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand { align-items: center; }
    .footer-brand p { max-width: 100%; }
    .footer-links { justify-content: center; }

    .inner-content { padding: 60px 24px 80px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-button { width: 100%; max-width: 280px; justify-content: center; }

    .hero-headline { letter-spacing: -1.5px; }

    .section-heading { letter-spacing: -1px; }
}
