/*
Theme Name: Shift 22
Theme URI: https://shift22.org
Author: Shift 22
Author URI: https://shift22.org
Description: A custom WordPress theme for Shift 22 Strategic Growth Consulting.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shift22
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Shift 22 Brand Colors */
    --navy: #0D1B3E;
    --navy-deep: #070E22;
    --navy-light: #162855;
    --red: #C41E24;
    --red-light: #E02A30;
    --orange: #E8872A;
    --orange-light: #F5A04A;
    --orange-warm: #F0C27A;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-100: #F0EEEA;
    --gray-200: #E0DDD7;
    --gray-400: #9B9690;
    --gray-600: #6B6660;
    --gray-800: #3A3530;
    --text: #1A1815;

    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== NAV ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-logo svg { height: 28px; width: auto; }

.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }

.nav-links .menu-item { list-style: none; }

.nav-links a,
.nav-links .menu-item a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        var(--navy-deep) 0%,
        var(--navy) 25%,
        #1A1040 35%,
        var(--red) 55%,
        var(--orange) 75%,
        var(--orange-warm) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(13, 27, 62, 0.9) 0%, transparent 70%);
    z-index: 1;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 135, 42, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

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

.hero-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 20px rgba(232, 135, 42, 0.08);
    transition: transform 0.4s ease;
}

.hero-photo:hover { transform: scale(1.03); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 3rem 2rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 0.35rem;
}

.stat-item p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

/* ===== TRUSTED BY ===== */
.trusted-by {
    background: var(--off-white);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.trusted-by-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-by-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2.25rem;
}

.trusted-by-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.trusted-by-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.trusted-by-logos a:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trusted-by-logos img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.trusted-by-logos .logo-dark {
    filter: brightness(0) invert(0.6);
    transition: filter 0.3s ease;
}

.trusted-by-logos a:hover .logo-dark {
    filter: brightness(0) saturate(100%) invert(30%) sepia(93%) saturate(1350%) hue-rotate(196deg) brightness(97%) contrast(101%);
}

.trusted-by-logos .logo-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--gray-400);
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.trusted-by-logos a:hover .logo-text {
    color: #0A66C2;
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 27, 62, 0.12);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(13,27,62,0.15), transparent);
}

.about-image {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

.about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about-tag {
    background: linear-gradient(135deg, rgba(13,27,62,0.06), rgba(232,135,42,0.08));
    color: var(--navy);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(13,27,62,0.08);
}

/* ===== ACHIEVEMENTS ===== */
.achievements {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,135,42,0.08) 0%, transparent 70%);
}

.achievements .section-eyebrow { color: var(--orange); }
.achievements .section-title { color: #fff; }
.achievements .section-subtitle { color: rgba(255,255,255,0.6); }

.achievements-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.achievements-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.achievement-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: flex-start;
}

.achievement-item:last-child { border-bottom: none; }

.achievement-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.achievement-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.achievement-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
}

.achievement-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.achievement-tag {
    display: inline-block;
    background: rgba(232,135,42,0.15);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.35rem;
    letter-spacing: 0.03em;
}

.conf-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: center;
}

.conf-logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}

.conf-logo-item svg {
    width: 16px;
    height: 16px;
    fill: var(--orange);
    opacity: 0.7;
}

.conf-logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
    padding: 2.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--red), var(--orange));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(13,27,62,0.2);
    box-shadow: 0 12px 35px rgba(13, 27, 62, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries { background: var(--off-white); }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.industry-card:hover {
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.06);
    transform: translateY(-2px);
}

.industry-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange);
    opacity: 0.7;
    min-width: 2rem;
}

.industry-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.industry-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== APPROACH ===== */
.approach { background: var(--white); }

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--red), var(--orange));
    opacity: 0.3;
}

.approach-step { text-align: center; position: relative; }

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--orange);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(13, 27, 62, 0.2);
}

.approach-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--navy);
}

.approach-step p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== LINKEDIN INSIGHTS ===== */
.linkedin-section {
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
}

.sk-ww-linkedin-profile-post .sk_branding {
    display: none !important;
}

.linkedin-header {
    text-align: center;
    margin-bottom: 3rem;
}

.linkedin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.linkedin-post-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.linkedin-post-card:hover {
    box-shadow: 0 12px 35px rgba(13, 27, 62, 0.08);
    transform: translateY(-3px);
}

.linkedin-post-card iframe {
    width: 100%;
    border: none;
    display: block;
}

.linkedin-follow-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #0A66C2;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.25);
}

.btn-linkedin svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg,
        var(--navy-deep) 0%,
        var(--navy) 30%,
        #1A1040 45%,
        var(--red) 65%,
        var(--orange) 85%,
        var(--orange-warm) 100%
    );
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(13,27,62,0.4) 0%, transparent 70%);
}

.cta-section > * { position: relative; z-index: 2; }

.cta-section .section-eyebrow { color: var(--orange-light); }

.cta-section .section-title {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-section .section-subtitle {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: var(--orange-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo svg { height: 24px; width: auto; }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-eyebrow { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-photo { width: 280px; height: 280px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:not(:last-child)::after { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .industries-grid { grid-template-columns: 1fr; }
    .approach-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .approach-steps::before { display: none; }
    .achievements-layout { grid-template-columns: 1fr; }
    .linkedin-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .site-nav { padding: 0.85rem 1.25rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { display: flex; }
    .mobile-toggle { display: flex; }
    .hero-inner { padding: 6.5rem 1.25rem 3rem; }
    .hero h1 { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .hero-photo { width: 220px; height: 220px; }
    .stats-inner { gap: 1.5rem; }
    .stat-item h3 { font-size: 1.5rem; }
    section { padding: 3.5rem 1.25rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
}
