/* ============================================================
   MACKIN AUTOMATION SYSTEMS — styles.css
   Brand: Deep navy · Soft teal · White · Inter
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* === VARIABLES === */
:root {
    --bg:        #070E1A;
    --bg-alt:    #0B1423;
    --bg-card:   #0F1D2E;
    --bg-proof:  #060C16;
    --accent:    #38BDF8;
    --accent-2:  #0EA5E9;
    --accent-dim: rgba(56, 189, 248, 0.7);
    --white:     #FFFFFF;
    --light:     #CBD5E1;
    --grey:      #4E6077;
    --muted:     #8DA3BC;
    --border:    rgba(56, 189, 248, 0.1);
    --border-h:  rgba(56, 189, 248, 0.28);
    --glow:      rgba(56, 189, 248, 0.08);
    --radius:    14px;
    --radius-lg: 22px;
    --max:       1080px;
    --ease:      0.25s cubic-bezier(.4,0,.2,1);
}

/* === BASE === */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--muted);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--muted); }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(120deg, #38BDF8 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === SCROLL REVEAL ANIMATIONS === */
.animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition: all var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #06101E;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(56, 189, 248, 0.35);
    filter: brightness(1.08);
}

.btn-ghost {
    background: transparent;
    color: var(--light);
    border: 1.5px solid var(--border-h);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    background: rgba(56, 189, 248, 0.05);
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #06101E;
    padding: 10px 22px;
    font-size: 0.88rem;
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.2);
}
.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
    filter: brightness(1.08);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1rem;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: padding var(--ease);
}
.nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: -1;
}
.nav.scrolled {
    padding: 14px 0;
}
.nav.scrolled::after {
    background: rgba(7, 14, 26, 0.94);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* === LOGO === */
.logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex-shrink: 0;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}
.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.logo-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: #38BDF8;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* === NAV LINKS === */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--ease);
}
.nav-links a:not(.btn):hover {
    color: var(--white);
}

/* === HAMBURGER === */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-h);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 14px;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

@keyframes cta-glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2); }
    50%       { box-shadow: 0 4px 36px rgba(56, 189, 248, 0.55); }
}

.hero-actions .btn-primary {
    background: #38BDF8;
    color: #070E1A;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 14px;
    box-shadow: none;
    animation: cta-glow-pulse 2.4s ease-in-out infinite;
    transition: background 0.25s cubic-bezier(.4,0,.2,1),
                box-shadow 0.25s cubic-bezier(.4,0,.2,1),
                transform  0.25s cubic-bezier(.4,0,.2,1);
}
.hero-actions .btn-primary:hover {
    background: #0EA5E9;
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.45);
    transform: translateY(-1px);
    animation: none;
}

.hero-actions .btn-ghost {
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.28);
    color: #CBD5E1;
    padding: 14px 28px;
    border-radius: 14px;
    transition: border-color 0.25s cubic-bezier(.4,0,.2,1),
                color       0.25s cubic-bezier(.4,0,.2,1),
                background  0.25s cubic-bezier(.4,0,.2,1);
}
.hero-actions .btn-ghost:hover {
    border-color: #38BDF8;
    color: #FFFFFF;
    background: rgba(56, 189, 248, 0.08);
    transform: none;
}

.hero-title {
    max-width: 820px;
    line-height: 1.12;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--light);
    max-width: 560px;
    line-height: 1.75;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.hero-note {
    font-size: 0.82rem;
    color: var(--grey);
    letter-spacing: 0.01em;
}

/* === TOOLS STRIP === */
.tools-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(56, 189, 248, 0.02);
    padding: 18px 0;
}
.tools-strip .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.tools-label {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    flex-shrink: 0;
}
.tools-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.tool-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: color var(--ease), border-color var(--ease);
    cursor: default;
}
.tool-pill:hover {
    color: var(--accent);
    border-color: var(--border-h);
}

/* === INCLUDED STRIP === */
.included-strip {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    padding: 22px 0;
}
.included-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.included-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.included-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.included-pill {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 14px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
    white-space: nowrap;
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--muted);
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* === CARDS (SERVICES) === */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all var(--ease);
}
.card:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--glow);
}

.card-featured {
    border-color: var(--border-h);
    background: var(--bg-card);
}
.card-featured:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--glow);
}

.card-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #06101E;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--border-h);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.card h3 { margin-top: 4px; }

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.card-list li {
    font-size: 0.88rem;
    color: var(--muted);
    padding-left: 20px;
    position: relative;
}
.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.55;
}

/* === SOCIAL PROOF === */
.section-proof {
    background: var(--bg-proof);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.proof-quote {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-proof);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.proof-quote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 7rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.proof-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.proof-quote blockquote {
    font-size: 1.15rem;
    color: var(--light);
    line-height: 1.7;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #06101E;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.proof-author strong {
    display: block;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
}

.proof-author span {
    font-size: 0.82rem;
    color: var(--muted);
}

.proof-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proof-result {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.proof-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.65), transparent);
    transition: left 0.5s cubic-bezier(.4,0,.2,1);
}
.proof-result:hover {
    border-color: var(--border-h);
    box-shadow: 0 0 24px var(--glow);
    transform: translateY(-2px);
}
.proof-result:hover::before { left: 100%; }

.proof-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.proof-desc {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.5;
}

/* === HOW IT WORKS === */
.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 24px;
}

.step-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    border: 1.5px solid var(--border-h);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
    letter-spacing: -0.02em;
    box-shadow: 0 0 20px var(--glow);
}

.step-content h3 {
    margin-bottom: 10px;
}
.step-content p {
    font-size: 0.93rem;
}

.step-divider {
    flex-shrink: 0;
    width: 80px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--border-h), transparent);
    margin-top: 29px;
}

/* === WHY CHOOSE US === */
.reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
}

.reason {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.reason-icon {
    width: 44px;
    height: 44px;
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid var(--border);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--ease), background var(--ease);
}
.reason:hover .reason-icon {
    border-color: var(--border-h);
    background: rgba(56, 189, 248, 0.12);
}
.reason-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.reason h4 { margin-bottom: 6px; }
.reason p { font-size: 0.88rem; }

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: -8px;
}

.about-content p { font-size: 0.97rem; }

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.65), transparent);
    transition: left 0.5s cubic-bezier(.4,0,.2,1);
}
.stat:hover {
    border-color: var(--border-h);
    box-shadow: 0 0 24px var(--glow);
    transform: translateY(-2px);
}
.stat:hover::before { left: 100%; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.4;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
    pointer-events: none;
}

.cta-section .btn-primary {
    animation: cta-glow-pulse 2.4s ease-in-out infinite;
}
.cta-section .btn-primary:hover {
    animation: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-h);
    border-radius: var(--radius-lg);
    padding: 72px 56px;
    box-shadow: 0 0 80px var(--glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: -4px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 56px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--grey);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4px 0;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--grey);
    padding: 4px 10px;
    border-radius: 6px;
    transition: color var(--ease);
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
    font-size: 0.78rem;
    color: var(--grey);
    opacity: 0.65;
}
.footer-copy a {
    color: var(--accent);
    opacity: 0.8;
    transition: opacity var(--ease);
}
.footer-copy a:hover { opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .reasons {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .step-divider {
        width: 1.5px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--border-h), transparent);
        margin: 0;
    }
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }

    .hero { padding: 100px 0 72px; }

    .proof-quote { padding: 28px 24px; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0;
        background: rgba(7, 14, 26, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links a:not(.btn) {
        padding: 14px 16px;
        font-size: 1rem;
    }
    .nav-links .btn {
        margin-top: 12px;
        justify-content: center;
    }

    .hero-actions { flex-direction: column; align-items: center; }

    .reasons { grid-template-columns: 1fr; }

    .cta-box { padding: 44px 28px; }

    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.85rem; }

    .tools-strip .container { gap: 16px; }

    .proof-quote blockquote { font-size: 1.05rem; }
}
