/* ══════════════════════════════════════════
   CREATE Reviews — Shared site styles
   Sub-brand of CREATE Agency. Inherits brand tokens.
   ══════════════════════════════════════════ */

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

:root {
    --green: #79B949;
    --green-dark: #5a8f35;
    --green-bright: #8cd157;
    --dark: #0a0a0a;
    --darker: #050505;
    --surface: #111111;
    --card: #161616;
    --card-hover: #1c1c1c;
    --border: #1e1e1e;
    --border-light: #2a2a2a;
    --text: #e0e0e0;
    --text-mid: #999999;
    --text-dim: #666666;
    --white: #ffffff;
    --gold: #d4a017;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-pill: 50px;
    --wa-green: #25D366;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOP UTILITY BAR ── */
.top-bar { background: var(--darker); padding: 0.6rem 5%; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 1.75rem; color: var(--text-mid); flex-wrap: wrap; }
.top-bar-left a { color: var(--text-mid); transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.top-bar-left a:hover { color: var(--green); }
.top-bar-left i { color: var(--green); }
.top-bar-right { display: flex; gap: 1rem; align-items: center; }
.top-bar-right .rating { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }
.top-bar-right .rating-text { color: var(--text-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }

/* ── NAV ── */
nav.site-nav { position: sticky; top: 0; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 1000; padding: 1rem 5%; border-bottom: 1px solid var(--border); transition: all 0.3s; }
nav.site-nav.scrolled { padding: 0.7rem 5%; background: rgba(10,10,10,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 0.8rem; }
.logo-img { height: 40px; width: auto; transition: height 0.3s; }
nav.site-nav.scrolled .logo-img { height: 34px; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-menu-logo { display: none; }
.nav-links a { color: var(--text-mid); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--green) !important; color: var(--dark) !important; padding: 0.75rem 2rem; border-radius: var(--r-pill); font-weight: 700 !important; font-size: 0.85rem !important; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--white) !important; color: var(--dark) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(121,185,73,0.3); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.75rem; min-width: 44px; min-height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.mobile-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── PAGE HERO ── */
.page-hero { padding: 6rem 5% 4rem; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(121,185,73,0.08) 0%, transparent 60%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem, 6.5vw, 4.5rem); margin-bottom: 1.25rem; font-weight: 800; }
.page-hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 700px; margin: 0 auto; line-height: 1.75; font-weight: 300; }
.page-hero .section-label { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--green); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.page-hero .section-label::before { content: ''; width: 30px; height: 2px; background: var(--green); }

/* ── BUTTONS ── */
.btn { padding: 1rem 2.25rem; font-size: 0.92rem; font-weight: 700; border-radius: var(--r-pill); cursor: pointer; transition: all 0.4s ease; border: 2px solid transparent; display: inline-flex; align-items: center; gap: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; font-family: 'Roboto', sans-serif; white-space: nowrap; }
.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(121,185,73,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--border-light); }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--dark); transform: translateY(-3px); }
.btn-wa { background: var(--wa-green); color: var(--white); }
.btn-wa:hover { background: #1da851; color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

/* ── SECTION COMMON ── */
.section-header { max-width: 1200px; margin: 0 auto 4rem; text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--green); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--green); }
.section-header h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 1.5rem; font-weight: 800; }
.section-header p { font-size: 1.1rem; color: var(--text-mid); max-width: 700px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

/* ── CONTACT FORM (shared) — light section, mirrors .why-us / .industries ── */
.contact { padding: 6rem 5%; background: var(--white); color: var(--dark); }
.contact .section-header h2 { color: var(--dark); }
.contact .section-header p { color: #555555; }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.contact-form-card { background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--r-lg); padding: 3rem; color: var(--dark); }
.contact-form-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--dark); }
.contact-form-card > p { color: #555555; margin-bottom: 2rem; font-size: 1rem; font-weight: 300; }
.contact-promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; padding: 1.25rem; background: rgba(121,185,73,0.08); border: 1px solid rgba(121,185,73,0.25); border-radius: var(--r-md); }
.contact-promise .cp-item { text-align: center; }
.contact-promise .cp-item i { color: var(--green-dark); font-size: 1.1rem; margin-bottom: 0.3rem; display: block; }
.contact-promise .cp-item .cp-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); font-weight: 700; line-height: 1.1; margin-bottom: 0.15rem; }
.contact-promise .cp-item .cp-sub { font-size: 0.7rem; color: #666666; font-weight: 500; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #555555; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid #d8d8d8; border-radius: var(--r-md); font-family: 'Roboto', sans-serif; font-size: 0.95rem; color: var(--dark); background: var(--white); transition: all 0.3s ease; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #999999; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(121,185,73,0.18); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; padding: 1.1rem; background: var(--green); color: var(--white); border: none; border-radius: var(--r-pill); font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; transition: all 0.4s ease; }
.btn-submit:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(121,185,73,0.3); }
.form-note { margin-top: 1rem; color: #888888; font-size: 0.8rem; text-align: center; }
.contact-next { background: rgba(121,185,73,0.06); border: 1px dashed rgba(121,185,73,0.4); border-radius: var(--r-md); padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.contact-next h5 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.5rem; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-next ol { padding-left: 1.25rem; color: #555555; font-size: 0.88rem; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
/* Distribute right-column cards evenly so the column matches the form height */
.contact-info > * { flex: 1; min-height: 0; }
.contact-info-card { background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--r-lg); padding: 1.75rem; display: flex; gap: 1.25rem; align-items: center; transition: all 0.4s ease; color: var(--dark); }
.contact-info-card:hover { border-color: rgba(121,185,73,0.4); transform: translateY(-3px); background: var(--white); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.contact-info-card .ci-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(121,185,73,0.12); border: 1px solid rgba(121,185,73,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green-dark); }
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--dark); }
.contact-info-card p { color: #555555; font-size: 0.9rem; line-height: 1.6; font-weight: 300; margin: 0; }
.contact-info-card a { color: var(--green-dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--dark); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--wa-green); color: var(--white); padding: 0.7rem 1.4rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; transition: all 0.3s ease; margin-top: 0.75rem; }
.btn-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.contact-big-cta { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: var(--r-lg); padding: 2rem; color: var(--dark); text-align: center; }
.contact-big-cta h4 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 800; }
.contact-big-cta p { color: rgba(10,10,10,0.8); font-size: 0.9rem; margin-bottom: 1.25rem; font-weight: 500; }
.contact-big-cta .btn-white-wa { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--dark); color: var(--white); padding: 0.9rem 1.75rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; }
.contact-big-cta .btn-white-wa:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 5rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(0,0,0,0.12) 0%, transparent 40%); pointer-events: none; }
.cta-band-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); color: var(--dark); margin-bottom: 1.5rem; }
.cta-band p { color: rgba(10,10,10,0.8); font-size: 1.1rem; margin: 0 auto 2rem; max-width: 650px; font-weight: 300; }
.cta-band-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-dark { background: var(--dark); color: var(--white); padding: 1rem 2rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s ease; border: 2px solid var(--dark); }
.cta-band .btn-dark:hover { background: var(--white); color: var(--dark); transform: translateY(-3px); border-color: var(--white); }
.cta-band .btn-ghost { background: transparent; color: var(--dark); padding: 1rem 2rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s ease; border: 2px solid var(--dark); }
.cta-band .btn-ghost:hover { background: var(--dark); color: var(--green); transform: translateY(-3px); }

/* ── FOOTER ── */
footer { background: var(--darker); border-top: 1px solid var(--border); color: var(--text-mid); padding: 5rem 5% 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand h3 { font-size: 1.8rem; color: var(--green); margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.75rem; font-weight: 300; font-size: 0.92rem; }
.footer-brand-heading { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-brand-logo { height: 3rem; width: auto; display: inline-block; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 44px; height: 44px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: all 0.3s ease; font-size: 0.9rem; }
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--dark); transform: translateY(-3px); }
.footer-links h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; font-size: 0.88rem; font-weight: 300; color: var(--text-mid); }
.footer-links a { color: var(--text-mid); transition: all 0.3s ease; font-size: 0.88rem; font-weight: 300; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.75rem; }
.footer-bottom-links a { color: var(--text-mid); font-weight: 300; }
.footer-bottom-links a:hover { color: var(--green); }

/* ── FLOATING WHATSAPP + MOBILE BAR ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s ease; animation: wa-pulse 2.5s ease infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white); }
@keyframes wa-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0.08); } }

.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border); z-index: 998; padding: 0.6rem 0.6rem 0.7rem; }
.mobile-cta-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-width: 500px; margin: 0 auto; }
.mobile-cta-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.75rem 0.5rem; min-height: 48px; border-radius: var(--r-md); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-align: center; line-height: 1; gap: 0.35rem; }
.mobile-cta-bar a i { font-size: 1.1rem; }
.mobile-cta-bar .mc-call { background: rgba(121,185,73,0.12); border: 1px solid rgba(121,185,73,0.25); color: var(--green); }
.mobile-cta-bar .mc-wa { background: var(--wa-green); color: var(--white); }
.mobile-cta-bar .mc-msg { background: var(--green); color: var(--dark); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 540px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; z-index: 2001; box-shadow: 0 20px 50px rgba(0,0,0,0.6); transform: translateY(calc(100% + 2rem)); transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--white); display: inline-flex; align-items: center; gap: 0.5rem; }
.cookie-banner h4 i { color: var(--green); }
.cookie-banner p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.65; margin-bottom: 1rem; font-weight: 300; }
.cookie-banner p a { color: var(--green); font-weight: 600; }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btn { flex: 1; min-width: 110px; padding: 0.75rem 1rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; font-family: 'Roboto', sans-serif; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; }
.cookie-accept { background: var(--green); color: var(--dark); }
.cookie-accept:hover { background: var(--white); }
.cookie-reject { background: transparent; color: var(--white); border-color: var(--border-light); }
.cookie-reject:hover { border-color: var(--white); }

/* ── LEGAL/POLICY PAGES ── */
/* Legal pages — light section to match the rest of the site */
.legal-page { padding: 5rem 5% 6rem; background: var(--white); color: var(--dark); }
.legal-inner { max-width: 1200px; margin: 0 auto; }
.legal-inner h2 { font-size: 1.6rem; margin: 3rem 0 1rem; color: var(--dark); }
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--dark); }
.legal-inner p { color: #444444; font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; font-weight: 400; }
.legal-inner ul { color: #444444; font-weight: 400; margin: 0 0 1rem 1.5rem; line-height: 1.8; }
.legal-inner li { margin-bottom: 0.4rem; }
.legal-inner a { color: var(--green-dark); font-weight: 600; }
.legal-inner a:hover { color: var(--dark); text-decoration: underline; }
.legal-inner strong { color: var(--dark); font-weight: 600; }
.legal-meta { color: #555555; font-size: 0.85rem; font-style: italic; margin-bottom: 3rem; padding: 1rem 1.5rem; background: #fafafa; border: 1px solid #e5e5e5; border-left: 3px solid var(--green); border-radius: 4px; }
.legal-inner table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--r-md); overflow: hidden; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.legal-inner table th, .legal-inner table td { padding: 1rem; text-align: left; border-bottom: 1px solid #e5e5e5; font-size: 0.95rem; }
.legal-inner table th { background: #f0f0f0; color: var(--dark); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; }
.legal-inner table td { color: #444444; font-weight: 400; }
.legal-inner table tr:last-child td { border-bottom: none; }

/* ── START-STYLE CONTACT (form + founder banner + 3-card row) — light section ── */
.start-wrap { padding: 5rem 5% 6rem; background: var(--white); color: var(--dark); }
.start-wrap .section-header h2 { color: var(--dark); }
.start-wrap .section-header p { color: #555555; }
.start-grid { max-width: 1200px; margin: 0 auto; }
.start-form-card { background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--r-lg); padding: 3rem; color: var(--dark); }
.start-form-card h2 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--dark); }
.start-form-card > p { color: #555555; margin-bottom: 2rem; font-size: 1rem; font-weight: 300; }
.start-form-card form { margin-top: 1rem; }

.start-below { max-width: 1200px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1.5rem; }
.start-contact-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
.start-contact-row > * { height: 100%; margin: 0; }
.start-contact-row .contact-big-cta { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2.5rem 1.75rem; }
.start-contact-row .contact-big-cta h4 { margin-bottom: 1.75rem; }
.start-contact-row .contact-info-card { align-items: center; }

.founder-reassure { background: linear-gradient(135deg, rgba(121,185,73,0.10) 0%, rgba(121,185,73,0.03) 100%); border: 1px solid rgba(121,185,73,0.3); border-radius: var(--r-lg); padding: 1.75rem; text-align: center; }
.founder-reassure .label { color: var(--green-dark); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.founder-reassure p { color: var(--dark); font-size: 0.95rem; line-height: 1.65; font-weight: 300; margin: 0; }
.founder-reassure p strong { color: var(--dark); font-weight: 600; }

.start-success-card { background: #fafafa; border: 1px solid rgba(121,185,73,0.4); border-radius: var(--r-lg); padding: 3rem; text-align: center; color: var(--dark); }
.start-success-card .success-icon { font-size: 4rem; color: var(--green); margin-bottom: 1rem; line-height: 1; }
.start-success-card h2 { font-size: 1.8rem; margin-bottom: 0.75rem; color: var(--dark); }
.start-success-card .success-lead { color: #555555; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
.start-success-card .contact-next { text-align: left; max-width: 620px; margin: 0 auto 2rem; }
.start-success-card .success-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.start-success-card .success-actions .btn-submit { width: auto; padding: 0.9rem 1.75rem; }
.start-success-card .btn-submit-wa { background: var(--wa-green); }
.start-success-card .btn-submit-wa:hover { background: #1da851; }

/* ── ONBOARDING PAGE (post-payment) ── */
.onboard-plan-chip { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.75rem; padding: 0.6rem 1.2rem; background: rgba(121,185,73,0.12); border: 1px solid rgba(121,185,73,0.4); border-radius: var(--r-pill); color: var(--green); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.onboard-plan-chip i { color: var(--green); }
.onboard-fieldset-title { display: flex; align-items: center; gap: 0.6rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); margin: 2.25rem 0 1.25rem; padding-bottom: 0.6rem; border-bottom: 1px solid #e5e5e5; }
.onboard-fieldset-title:first-of-type { margin-top: 0.5rem; }
.onboard-fieldset-title i { color: var(--green-dark); font-size: 0.95rem; }
.onboard-hint { color: #888888; font-size: 0.8rem; line-height: 1.55; margin-top: 0.5rem; font-weight: 400; }
.start-form-card input[type="file"] { padding: 0.7rem 1rem; background: var(--white); cursor: pointer; }
.start-form-card input[type="file"]::file-selector-button { margin-right: 1rem; padding: 0.5rem 1rem; border: 1px solid var(--green); border-radius: var(--r-pill); background: rgba(121,185,73,0.1); color: var(--green-dark); font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.8rem; cursor: pointer; transition: all 0.3s ease; }
.start-form-card input[type="file"]::file-selector-button:hover { background: var(--green); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .footer-content { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer-content .footer-col-extra { display: none; }
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 1100px) {
    /* Burger menu — phone (any orientation) + tablet */
    .mobile-toggle { display: flex; position: relative; z-index: 1002; }
    body.menu-open nav.site-nav,
    body.menu-open nav { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    .nav-links { display: flex !important; position: fixed !important; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; background: rgba(10,10,10,0.98); flex-direction: column; padding: 5rem 2rem 2rem; gap: 1.75rem; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s; z-index: 1001; }
    .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s; }
    .nav-links a { font-size: 1.4rem; font-weight: 600; color: var(--white); }
    .nav-links .nav-cta { padding: 1rem 2.5rem !important; font-size: 1rem !important; }
    .nav-links.open .nav-menu-logo { display: block; margin-bottom: 1.25rem; }
    .nav-links.open .nav-menu-logo img { display: block; height: 50px; width: auto; }
    body.menu-open { overflow: hidden; }
}

@media (max-width: 768px) {
    .start-wrap { padding: 3rem 5% 4rem; }
    .start-form-card { padding: 2rem 1.5rem; }
    .start-contact-row { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    nav.site-nav { padding: 0.8rem 5%; }
    .logo-text { font-size: 1.2rem; }
    .logo-img { height: 34px; }
    .page-hero { padding: 3.5rem 5% 2.5rem; }
    .contact { padding: 4rem 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-band { padding: 4rem 5%; }
    .cta-band-btns { flex-direction: column; }
    .cta-band-btns .btn-dark, .cta-band-btns .btn-ghost { width: 100%; justify-content: center; }
    .contact-promise { grid-template-columns: 1fr; }
    .legal-page { padding: 3rem 5% 4rem; }
    .legal-inner h2 { font-size: 1.35rem; }

    /* Hide hover WhatsApp on mobile — mobile-cta-bar provides WhatsApp */
    .wa-float { display: none !important; }
    .mobile-cta-bar { display: block; }
    /* Cookie banner sits at bottom on mobile; mobile CTA bar hides while it's showing.
       !important to ensure these win over any per-page legacy rules. */
    .cookie-banner { bottom: 0.75rem !important; left: 0.75rem !important; right: 0.75rem !important; max-width: none !important; padding: 1.1rem 1.25rem !important; }
    .cookie-banner h4 { font-size: 1rem; }
    .cookie-banner p { font-size: 0.8rem; margin-bottom: 0.85rem; }
    .cookie-btn { padding: 0.7rem 0.9rem; font-size: 0.75rem; }
    body.has-cookie-banner .mobile-cta-bar { display: none !important; }
    body.has-cookie-banner { padding-bottom: 0 !important; }

    /* Footer mobile treatment — applied to EVERY page that loads site.css */
    footer .footer-content { text-align: center; }
    footer .footer-brand { display: flex; flex-direction: column; align-items: center; }
    footer .footer-brand .footer-brand-heading { justify-content: center; }
    footer .footer-links ul { padding: 0; list-style: none; }
    footer .footer-links h4 { text-align: center; }
    footer .social-links { justify-content: center; }
    footer .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    footer .footer-bottom-links { justify-content: center; }

    /* Better headline wrapping on mobile — avoids orphan single-word lines */
    h1, h2, h3, .hero-content h1, .page-hero h1, .section-header h2 { text-wrap: balance; word-break: normal; overflow-wrap: break-word; }
    p, .hero .subtitle, .step-desc { text-wrap: pretty; overflow-wrap: break-word; }

    /* Centre any standalone <img> inside common content containers on mobile */
    .page-hero img, .section-header img, .why-create-card img, .service-card img, .hero-content > img { display: block; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    /* Tighten shared sections for iPhone-size phones */
    .page-hero { padding: 3rem 5% 2rem; }
    .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); letter-spacing: -0.01em; }
    .page-hero p { font-size: 0.95rem; line-height: 1.65; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .section-header p { font-size: 0.95rem; line-height: 1.65; }

    /* Contact section (shared across pages) */
    .contact { padding: 3rem 5%; }
    .contact-grid { gap: 1.25rem; }
    .contact-form-card { padding: 1.5rem; }
    .contact-form-card h3 { font-size: 1.4rem; }
    .contact-info-card { padding: 1.25rem; gap: 1rem; }
    .contact-promise { gap: 0.75rem; padding: 1rem; }
    .contact-promise .cp-item .cp-label { font-size: 0.75rem; }
    .contact-promise .cp-item .cp-sub { font-size: 0.65rem; }

    /* Start-wrap (used by start.html, ai.html contact) */
    .start-wrap { padding: 2.5rem 5% 3rem; }
    .start-form-card { padding: 1.5rem; }
    .start-form-card h2 { font-size: 1.4rem; }
    .start-contact-row { gap: 1rem; }

    /* Form fields */
    .form-group { margin-bottom: 1rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.75rem 0.9rem; font-size: 0.95rem; }

    /* Legal page */
    .legal-page { padding: 2.5rem 5% 3rem; }
    .legal-inner h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
    .legal-inner h3 { font-size: 1.05rem; }
    .legal-inner p, .legal-inner ul { font-size: 0.95rem; }
    .legal-meta { padding: 0.85rem 1rem; font-size: 0.8rem; }

    /* CTA band */
    .cta-band { padding: 2.75rem 5%; }
    .cta-band h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .cta-band p { font-size: 0.95rem; }

    /* Footer */
    footer { padding: 3rem 5% 1.5rem; }
    .footer-content { gap: 1.5rem; margin-bottom: 2rem; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-links h4 { font-size: 0.95rem; margin-bottom: 0.85rem; }
    .footer-links a { font-size: 0.85rem; }
}

/* ══════════════════════════════════════════
   CREATE REVIEWS — Product-specific components
   ══════════════════════════════════════════ */

/* ── Reviews wordmark in nav (CREATE | Reviews) ── */
.logo-suffix { color: var(--text); font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 400; padding-left: 0.6rem; margin-left: 0.2rem; border-left: 1px solid var(--border-light); }

/* ── HOMEPAGE HERO (big, bold, on-brand) ── */
.cr-hero { position: relative; overflow: hidden; padding: 7rem 5% 6rem; background: var(--dark); }
.cr-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(121,185,73,0.18) 0%, transparent 55%), radial-gradient(circle at 10% 90%, rgba(121,185,73,0.08) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.cr-hero-grid { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 4.5rem; align-items: center; }
.cr-hero-content .label { display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.45rem 1rem; background: rgba(121,185,73,0.12); border: 1px solid rgba(121,185,73,0.35); border-radius: var(--r-pill); color: var(--green); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1.5rem; }
.cr-hero-content .label i { font-size: 0.7rem; }
.cr-hero-content h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 900; line-height: 0.98; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.cr-hero-content h1 .accent { color: var(--green); display: inline-block; }
.cr-hero-content .lead { font-size: 1.2rem; color: var(--text-mid); line-height: 1.65; max-width: 560px; margin-bottom: 2.25rem; font-weight: 300; }
.cr-hero-content .lead strong { color: var(--white); font-weight: 600; }
.cr-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.25rem; }
.cr-hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.cr-hero-trust .t-item { font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.cr-hero-trust .t-item i { color: var(--green); font-size: 0.95rem; }

/* Hero visual — floating review cards */
.cr-hero-visual { position: relative; min-height: 480px; perspective: 1200px; }
.float-card { position: absolute; background: var(--card); border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: 0 30px 70px rgba(0,0,0,0.6); transition: transform 0.4s ease; }
.float-card .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.05em; margin-bottom: 0.65rem; }
.float-card .ftext { color: var(--text); font-size: 0.93rem; line-height: 1.55; margin-bottom: 0.85rem; font-weight: 300; }
.float-card .fauthor { display: flex; align-items: center; gap: 0.6rem; }
.float-card .favatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--dark); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.float-card .fmeta { font-size: 0.8rem; color: var(--text-mid); font-weight: 500; }
.float-card .fmeta .src { color: var(--green); font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.float-card.fc-1 { top: 0; left: 0; width: 64%; transform: rotate(-2.5deg); animation: floaty1 6s ease-in-out infinite; }
.float-card.fc-2 { top: 32%; right: 0; width: 60%; transform: rotate(3deg); animation: floaty2 7s ease-in-out infinite; }
.float-card.fc-3 { bottom: 0; left: 14%; width: 60%; transform: rotate(-1.5deg); animation: floaty1 8s ease-in-out infinite reverse; }
.float-badge { position: absolute; top: -1.25rem; right: -1.25rem; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--dark); padding: 0.85rem 1.15rem; border-radius: var(--r-md); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; box-shadow: 0 12px 30px rgba(121,185,73,0.4); transform: rotate(8deg); z-index: 5; }
.float-badge .b-num { font-size: 1.45rem; line-height: 1; display: block; }
.float-badge .b-lbl { font-size: 0.72rem; opacity: 0.9; }
@keyframes floaty1 { 0%, 100% { transform: rotate(-2.5deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-12px); } }
@keyframes floaty2 { 0%, 100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(10px); } }

/* ── STAT BAND ── */
.stat-band { background: var(--surface); padding: 4rem 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 0.5rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .n { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.5rem; }
.stat-item .n .pct { font-size: 0.55em; color: var(--green); padding-left: 0.1em; }
.stat-item .l { font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; line-height: 1.5; }

/* ── 3 CORE BENEFITS ── */
.core-benefits { padding: 7rem 5%; background: var(--dark); }
.benefit-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.75rem 2rem 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden; text-align: center; display: flex; flex-direction: column; align-items: center; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--green), transparent); transform: scaleX(0); transition: transform 0.4s ease; }
.benefit-card:hover { background: var(--card-hover); transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); border-color: rgba(121,185,73,0.4); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card .b-icon { width: 72px; height: 72px; background: rgba(121,185,73,0.12); border: 1px solid rgba(121,185,73,0.3); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--green); margin: 0 auto 1.75rem; }
.benefit-card h3 { font-size: 1.55rem; margin-bottom: 1rem; color: var(--white); text-align: center; }
.benefit-card p { color: var(--text-mid); line-height: 1.75; font-weight: 300; font-size: 0.96rem; margin-bottom: 1.5rem; text-align: center; max-width: 320px; }
.benefit-card ul { list-style: none; padding: 0; margin: 0; text-align: left; display: inline-block; }
.benefit-card ul li { color: var(--text); font-size: 0.9rem; padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-weight: 400; }
.benefit-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--green); font-size: 0.8rem; top: 0.5rem; }

/* ── INTEGRATIONS PREVIEW ── */
.integrations-preview { padding: 6rem 5%; background: var(--surface); border-top: 1px solid var(--border); }
.int-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.int-grid.compact { grid-template-columns: repeat(8, 1fr); gap: 0.75rem; }
.int-tile { aspect-ratio: 1.4 / 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; padding: 1.1rem; transition: all 0.3s ease; overflow: hidden; }
.int-tile:hover { background: var(--card-hover); border-color: rgba(121,185,73,0.5); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,0.3); }
.int-tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; opacity: 0.95; }
.int-tile.text-tile { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; color: var(--text); font-size: 1.1rem; text-align: center; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1; flex-direction: column; gap: 0.4rem; }
.int-tile.text-tile::before { content: ''; display: block; width: 28px; height: 3px; background: var(--green); border-radius: 2px; margin-bottom: 0.2rem; opacity: 0.8; }
.int-tile.custom { background: linear-gradient(135deg, rgba(121,185,73,0.15), rgba(121,185,73,0.05)); border-color: rgba(121,185,73,0.4); color: var(--green); flex-direction: column; gap: 0.4rem; }
.int-tile.custom i { font-size: 1.4rem; }
.int-tile.custom span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.int-cta { text-align: center; margin-top: 3rem; }

/* ── INDUSTRIES SHOWCASE ── */
.industries { padding: 7rem 5%; background: var(--white); color: var(--dark); }
.industries .section-header h2 { color: var(--dark); }
.industries .section-header p { color: #555; }
.ind-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.85rem; }
.ind-tile { position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-md); overflow: hidden; cursor: default; transition: all 0.4s ease; }
.ind-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ind-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.ind-tile .ind-label { position: absolute; bottom: 0.85rem; left: 0.85rem; right: 0.85rem; z-index: 2; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1; }
.ind-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.ind-tile:hover img { transform: scale(1.08); }
.ind-tile:hover::before { background: linear-gradient(180deg, rgba(0,0,0,0.0) 10%, rgba(121,185,73,0.85) 100%); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 7rem 5%; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; padding-top: 1.25rem; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 3rem 1.75rem 2rem; counter-increment: step; position: relative; transition: all 0.3s ease; text-align: center; }
.step-card::before { content: counter(step, decimal-leading-zero); position: absolute; top: -1.4rem; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--dark); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; box-shadow: 0 8px 22px rgba(121,185,73,0.38); border: 4px solid var(--surface); }
.how-it-works.light .step-card::before { border-color: var(--white); }
.step-card:hover { transform: translateY(-4px); border-color: rgba(121,185,73,0.4); }
.step-card h4 { font-size: 1.2rem; margin: 1rem 0 0.6rem; color: var(--white); text-align: center; }
.step-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; font-weight: 300; text-align: center; }

/* ── BIG FEATURE / GUARANTEE ── */
.guarantee-band { padding: 6rem 5%; background: var(--dark); position: relative; overflow: hidden; }
.guarantee-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(121,185,73,0.12) 0%, transparent 70%); pointer-events: none; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.guarantee-shield { aspect-ratio: 1; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--dark); box-shadow: 0 30px 80px rgba(121,185,73,0.35); position: relative; }
/* Outer rotating dashed ring */
.guarantee-shield::before { content: ''; position: absolute; inset: -8px; border: 2px dashed rgba(121,185,73,0.55); border-radius: 50%; animation: spin 30s linear infinite; }
/* Outer pulsing glow halo */
.guarantee-shield::after { content: ''; position: absolute; inset: -24px; border-radius: 50%; background: radial-gradient(circle, rgba(121,185,73,0.35) 0%, rgba(121,185,73,0) 65%); animation: shieldPulse 2.4s ease-in-out infinite; pointer-events: none; z-index: -1; }
/* Inline wrapper for the count-up number (no ring) */
.guarantee-shield .gn-wrap { display: inline-block; }
.guarantee-shield .gn { font-family: 'Barlow Condensed', sans-serif; font-size: 6rem; font-weight: 900; line-height: 0.85; margin-bottom: 0.15rem; display: inline-block; min-width: 7rem; text-align: center; }
.guarantee-shield .gd { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; line-height: 1; }
.guarantee-shield .gm { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.55rem; padding-top: 0.55rem; border-top: 1px solid rgba(10,10,10,0.25); }
/* When count-up triggers, briefly scale + flash the number */
.guarantee-shield.is-counting .gn { animation: gnPulse 0.4s ease-out; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shieldPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes gnPulse { 0% { transform: scale(0.9); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.guarantee-text h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.25rem; color: var(--white); }
.guarantee-text p { font-size: 1.1rem; color: var(--text); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }
.guarantee-text p strong { color: var(--green); font-weight: 700; }

/* ── FEATURE SHOWCASE ROWS (image alternating) ── */
.feature-row { padding: 7rem 5%; background: var(--dark); border-top: 1px solid var(--border); }
.feature-row.alt { background: var(--surface); }
.feature-row-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.feature-row-inner.flip > .feature-img { order: 2; }
/* Dark-framed image card — keeps white-text testimonial graphics readable on light AND dark sections */
.feature-img { position: relative; background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%); padding: 1.5rem; border-radius: var(--r-lg); border: 1px solid var(--border-light); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.feature-img img { width: 100%; border-radius: var(--r-md); box-shadow: 0 12px 30px rgba(0,0,0,0.5); display: block; }
.feature-img .fr-badge { position: absolute; top: -1rem; left: -1rem; background: var(--green); color: var(--dark); padding: 0.7rem 1.1rem; border-radius: var(--r-md); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; box-shadow: 0 12px 25px rgba(121,185,73,0.35); z-index: 2; }
.feature-text .label { display: inline-block; color: var(--green); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1.25rem; }
.feature-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; }
.feature-text p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; font-weight: 300; margin-bottom: 1rem; }
.feature-text ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-text ul li { padding: 0.5rem 0 0.5rem 2rem; position: relative; color: var(--text); line-height: 1.6; }
.feature-text ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 0.55rem; color: var(--green); font-size: 1rem; }

/* ── PRICING ── */
.pricing-section { padding: 7rem 5%; background: var(--dark); }
.pricing-toggle { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3.5rem; padding: 0.4rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill); width: max-content; margin-left: auto; margin-right: auto; }
.pricing-toggle button { padding: 0.7rem 1.75rem; background: transparent; border: none; border-radius: var(--r-pill); font-family: 'Roboto', sans-serif; color: var(--text-mid); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: all 0.3s ease; }
.pricing-toggle button.active { background: var(--green); color: var(--dark); }
.pricing-toggle .save-pill { display: inline-block; background: var(--gold); color: var(--dark); font-size: 0.65rem; padding: 0.18rem 0.5rem; border-radius: var(--r-pill); margin-left: 0.4rem; font-weight: 800; }
.pricing-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 3rem 2.5rem; position: relative; transition: all 0.4s ease; display: flex; flex-direction: column; }
/* Featured = same size as monthly, just a green border (and the popup badge) */
.price-card.featured { border-color: var(--green); border-width: 2px; padding: calc(3rem - 1px) calc(2.5rem - 1px); }
.price-card .pop-badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--dark); padding: 0.4rem 1.1rem; border-radius: var(--r-pill); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.price-card h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 0.4rem; }
.price-card .p-sub { color: var(--text-mid); font-size: 0.92rem; font-weight: 300; margin-bottom: 1.75rem; }
.price-card .price-num { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.4rem; }
.price-card .price-num .currency { font-size: 1.8rem; color: var(--green); font-weight: 700; }
.price-card .price-num .period { font-size: 1rem; color: var(--text-mid); font-weight: 400; text-transform: lowercase; letter-spacing: 0; padding-left: 0.4rem; }
.price-card .price-billed { color: var(--text-mid); font-size: 0.85rem; margin-bottom: 1.75rem; font-weight: 300; }
.price-card .price-billed.savings { color: var(--green); font-weight: 600; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; flex-grow: 1; }
.price-card ul li { padding: 0.55rem 0 0.55rem 1.75rem; position: relative; color: var(--text); font-size: 0.93rem; line-height: 1.55; font-weight: 400; }
.price-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--green); top: 0.65rem; font-size: 0.85rem; }
.price-card .btn { width: 100%; justify-content: center; }
.price-vat { text-align: center; color: var(--text-dim); font-size: 0.82rem; margin-top: 2rem; font-style: italic; }

/* ── FAQ ── */
.faq-section { padding: 6rem 5%; background: var(--surface); border-top: 1px solid var(--border); }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 0.75rem; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--border-light); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.5rem 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--white); font-weight: 600; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--green); transition: transform 0.3s ease; font-size: 0.85rem; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] { border-color: rgba(121,185,73,0.4); }
.faq-item .faq-body { padding: 0 1.75rem 1.5rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; font-size: 0.95rem; }
.faq-item .faq-body p { margin-bottom: 0.75rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ── INTEGRATIONS PAGE — unified masonry wall (light) ── */
.int-full { padding: 4rem 5% 6rem; background: var(--white); color: var(--dark); }

/* Category filter pills */
.int-filter { max-width: 1200px; margin: 0 auto 3rem; display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.if-btn { background: #fafafa; border: 1px solid #e5e5e5; color: var(--dark); padding: 0.6rem 1.25rem; border-radius: var(--r-pill); font-family: 'Roboto', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.4rem; }
.if-btn i { font-size: 0.85rem; color: var(--green-dark); }
.if-btn:hover { border-color: var(--green); background: var(--white); }
.if-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.if-btn.active i { color: var(--green); }

/* The masonry wall */
.int-wall { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(8, 1fr); grid-auto-rows: 110px; gap: 0.85rem; grid-auto-flow: dense; }
.int-wall .int-tile { aspect-ratio: auto; background: #fafafa; border: 1px solid #e5e5e5; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; padding: 1rem; transition: all 0.3s ease; overflow: hidden; }
.int-wall .int-tile:hover { background: var(--white); border-color: rgba(121,185,73,0.55); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.int-wall .int-tile.is-hidden { display: none; }
/* Logos all sized identically regardless of tile span */
.int-wall .int-tile img { max-height: 44px; max-width: 80%; width: auto; height: auto; object-fit: contain; opacity: 0.95; transition: transform 0.3s ease; }
.int-wall .int-tile:hover img { transform: scale(1.05); }

/* Tile spans */
.int-wall .int-tile.featured { grid-column: span 2; }
.int-wall .int-tile.tall { grid-row: span 2; }
.int-wall .int-tile.big { grid-column: span 2; grid-row: span 2; padding: 1.75rem; }

/* Featured tile — same logo size as standard tiles, just centred in a wider tile */
.int-wall .int-tile.featured { padding: 1rem 1.5rem; justify-content: center; }
.int-wall .int-tile.featured img { max-height: 44px; max-width: 60%; }
/* .ft-meta text labels removed — kept hidden for legacy markup compatibility */
.int-wall .int-tile.featured .ft-meta { display: none; }

/* Custom integration "big" promo tile */
.int-wall .int-tile.big.custom { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-color: var(--green-dark); color: var(--dark); flex-direction: column; align-items: flex-start; justify-content: space-between; text-align: left; gap: 1rem; }
.int-wall .int-tile.big.custom:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(121,185,73,0.35); }
.int-wall .int-tile.big.custom .bc-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.int-wall .int-tile.big.custom h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin: 0; font-weight: 800; }
.int-wall .int-tile.big.custom p { font-size: 0.82rem; color: rgba(10,10,10,0.78); line-height: 1.5; margin: 0; font-weight: 500; }
.int-wall .int-tile.big.custom .bc-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); }

/* Stat / quote highlight tiles */
.int-wall .int-tile.stat-tile { background: var(--dark); color: var(--white); border-color: var(--dark); flex-direction: column; gap: 0.35rem; padding: 1.25rem; text-align: center; }
.int-wall .int-tile.stat-tile:hover { background: var(--darker); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.int-wall .int-tile.stat-tile .st-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.int-wall .int-tile.stat-tile .st-lbl { font-size: 0.65rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; line-height: 1.3; }

/* RESPONSIVE — wall stays masonry but reflows */
@media (max-width: 1100px) {
    .int-wall { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
}
@media (max-width: 768px) {
    .int-wall { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 90px; gap: 0.6rem; }
    .int-wall .int-tile.featured { grid-column: span 2; padding: 0.85rem; gap: 0.55rem; }
    .int-wall .int-tile.featured img { max-height: 30px; }
    .int-wall .int-tile.featured .ft-name { font-size: 1.05rem; }
    .int-wall .int-tile.featured .ft-cat { font-size: 0.58rem; }
    .int-wall .int-tile.big { grid-column: span 4; grid-row: span 2; }
    .int-wall .int-tile.tall { grid-row: span 2; }
    .int-wall .int-tile.stat-tile .st-num { font-size: 1.7rem; }
    .int-filter { gap: 0.35rem; margin-bottom: 2rem; }
    .if-btn { padding: 0.5rem 0.9rem; font-size: 0.7rem; }
}
@media (max-width: 480px) {
    .int-wall { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 80px; }
    .int-wall .int-tile.featured { grid-column: span 3; }
    .int-wall .int-tile.big { grid-column: span 3; }
}

/* ── INTEGRATION REQUEST CARD (on white int-full) ── */
.int-request { max-width: 1200px; margin: 4rem auto 0; background: linear-gradient(135deg, rgba(121,185,73,0.10) 0%, rgba(121,185,73,0.02) 100%); border: 1px solid rgba(121,185,73,0.4); border-radius: var(--r-lg); padding: 3rem; text-align: center; }
.int-request h3 { font-size: 2rem; margin-bottom: 0.85rem; color: var(--dark); }
.int-request p { color: #555; margin-bottom: 1.75rem; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE — CR-specific ── */
@media (max-width: 1100px) {
    .cr-hero-grid { grid-template-columns: 1fr; gap: 4rem; }
    .cr-hero-visual { min-height: 420px; max-width: 520px; width: 100%; margin: 0 auto; }
    .feature-row-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .feature-row-inner.flip > .feature-img { order: 0; }
    .ind-grid { grid-template-columns: repeat(4, 1fr); }
    .int-grid { grid-template-columns: repeat(4, 1fr); }
    .int-grid.compact { grid-template-columns: repeat(6, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
    .benefit-grid { grid-template-columns: 1fr; }
    .guarantee-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .guarantee-shield { width: 240px; margin: 0 auto; }
}

/* ══════════════════════════════════════════
   LIGHT SECTION VARIANTS — alternate with dark
   Add `.light` to any of these section classes to flip to white-bg.
   ══════════════════════════════════════════ */

/* Generic section header inside .light section */
.light .section-header h2 { color: var(--dark); }
.light .section-header p { color: #555; }
.light .section-label { color: var(--green-dark); }
.light .section-label::before { background: var(--green-dark); }

/* Core benefits — light variant */
.core-benefits.light { background: var(--white); color: var(--dark); }
.core-benefits.light .benefit-card { background: #fafafa; border-color: #e5e5e5; }
.core-benefits.light .benefit-card:hover { background: var(--white); border-color: rgba(121,185,73,0.5); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.core-benefits.light .benefit-card h3 { color: var(--dark); }
.core-benefits.light .benefit-card p { color: #555; }
.core-benefits.light .benefit-card ul li { color: var(--dark); }
.core-benefits.light .benefit-card .b-icon { background: rgba(121,185,73,0.1); border-color: rgba(121,185,73,0.3); color: var(--green-dark); }

/* Integrations preview — light variant */
.integrations-preview.light { background: var(--white); color: var(--dark); border-top: none; }
.integrations-preview.light .int-tile { background: #fafafa; border-color: #e5e5e5; }
.integrations-preview.light .int-tile:hover { background: var(--white); border-color: rgba(121,185,73,0.5); box-shadow: 0 12px 25px rgba(0,0,0,0.06); }
.integrations-preview.light .int-tile img { filter: none; opacity: 1; }
.integrations-preview.light .int-tile.text-tile { color: var(--dark); }
.integrations-preview.light .int-tile.custom { background: rgba(121,185,73,0.08); border-color: rgba(121,185,73,0.4); color: var(--green-dark); }

/* Feature row — light variant (overrides .alt) */
.feature-row.light { background: var(--white); color: var(--dark); border-top: 1px solid #e5e5e5; }
.feature-row.light .feature-text h2 { color: var(--dark); }
.feature-row.light .feature-text p { color: #555; }
.feature-row.light .feature-text ul li { color: var(--dark); }
.feature-row.light .feature-text .label { color: var(--green-dark); }
/* On light sections, give the dark-framed image card a softer outer shadow */
.feature-row.light .feature-img { box-shadow: 0 30px 60px rgba(0,0,0,0.18); }

/* How it works — light variant */
.how-it-works.light { background: var(--white); color: var(--dark); border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; }
.how-it-works.light .step-card { background: #fafafa; border-color: #e5e5e5; }
.how-it-works.light .step-card:hover { background: var(--white); border-color: rgba(121,185,73,0.5); box-shadow: 0 16px 35px rgba(0,0,0,0.07); }
.how-it-works.light .step-card h4 { color: var(--dark); }
.how-it-works.light .step-card p { color: #555; }

/* FAQ — light variant */
.faq-section.light { background: var(--white); color: var(--dark); border-top: 1px solid #e5e5e5; }
.faq-section.light .faq-item { background: #fafafa; border-color: #e5e5e5; }
.faq-section.light .faq-item:hover { border-color: #d5d5d5; }
.faq-section.light .faq-item summary { color: var(--dark); }
.faq-section.light .faq-item .faq-body { color: #555; }
.faq-section.light .faq-item[open] { border-color: rgba(121,185,73,0.5); background: var(--white); }
.faq-section.light .faq-item summary::after { color: var(--green-dark); }

/* Stat band — light variant */
.stat-band.light { background: var(--white); border-color: #e5e5e5; }
.stat-band.light .stat-item { border-right-color: #e5e5e5; }
.stat-band.light .stat-item .l { color: #555; }

/* Pricing — light variant */
.pricing-section.light { background: var(--white); color: var(--dark); }
.pricing-section.light .pricing-toggle { background: #fafafa; border-color: #e5e5e5; }
.pricing-section.light .pricing-toggle button { color: #777; }
.pricing-section.light .price-card { background: #fafafa; border-color: #e5e5e5; }
.pricing-section.light .price-card.featured { background: linear-gradient(180deg, rgba(121,185,73,0.10) 0%, var(--white) 50%); border-color: var(--green); }
.pricing-section.light .price-card h3, .pricing-section.light .price-card .price-num { color: var(--dark); }
.pricing-section.light .price-card .price-num .currency { color: var(--green-dark); }
.pricing-section.light .price-card .price-num .period { color: #777; }
.pricing-section.light .price-card .p-sub, .pricing-section.light .price-card .price-billed { color: #555; }
.pricing-section.light .price-card ul { border-top-color: #e5e5e5; }
.pricing-section.light .price-card ul li { color: var(--dark); }
.pricing-section.light .price-vat { color: #777; }

/* Integrations full grid — alternating categories (full-width band inside .int-full) */
.int-full { padding-left: 0; padding-right: 0; }
.int-full > .int-cat { padding-left: 5%; padding-right: 5%; padding-top: 2rem; padding-bottom: 2rem; margin-bottom: 0; }
.int-cat.light-cat { background: var(--white); color: var(--dark); padding-top: 4rem; padding-bottom: 4rem; }
.int-cat.light-cat h3 { color: var(--dark); border-bottom-color: #e5e5e5; }
.int-cat.light-cat .int-tile { background: #fafafa; border-color: #e5e5e5; }
.int-cat.light-cat .int-tile:hover { background: var(--white); border-color: rgba(121,185,73,0.5); box-shadow: 0 12px 25px rgba(0,0,0,0.06); }
.int-cat.light-cat .int-tile.text-tile { color: var(--dark); }
.int-cat.light-cat .int-tile img { filter: none; opacity: 1; }
/* Add a little extra padding to first/last dark cats for breathing room */
.int-full > .int-cat:first-child { padding-top: 4rem; }
.int-full > .int-cat:last-of-type { padding-bottom: 4rem; }

@media (max-width: 768px) {
    .cr-hero { padding: 4rem 5% 3.5rem; }
    .cr-hero-content h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
    .cr-hero-content .lead { font-size: 1.05rem; }
    .cr-hero-visual { min-height: 360px; }
    .float-card { padding: 1.1rem; }
    .float-card .ftext { font-size: 0.85rem; }
    .core-benefits, .integrations-preview, .industries, .how-it-works, .feature-row, .pricing-section, .faq-section, .guarantee-band { padding: 4rem 5%; }
    .ind-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .ind-tile .ind-label { font-size: 0.78rem; }
    .int-grid { grid-template-columns: repeat(3, 1fr); }
    .int-grid.compact { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .price-card.featured { transform: none; }
    .price-card { padding: 2.25rem 1.75rem; }
    .stat-band-inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .logo-suffix { font-size: 1.15rem; padding-left: 0.45rem; }
    .int-request { padding: 2rem 1.5rem; }
    .int-request h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .cr-hero { padding: 3rem 5% 2.5rem; }
    .cr-hero-content h1 { font-size: 2.1rem; }
    .cr-hero-content .lead { font-size: 0.98rem; }
    .cr-hero-trust { gap: 0.85rem; }
    .cr-hero-trust .t-item { font-size: 0.78rem; }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .int-grid, .int-grid.compact { grid-template-columns: repeat(3, 1fr); }
    .benefit-card, .step-card { padding: 1.75rem 1.5rem; }
    .price-card .price-num { font-size: 3rem; }
    .guarantee-shield { width: 220px; }
    .guarantee-shield .gn { font-size: 4.5rem; }
    .guarantee-shield .gd { font-size: 1.05rem; }
    .guarantee-shield .gm { font-size: 0.85rem; }
    .faq-item summary { padding: 1.15rem 1.25rem; font-size: 0.92rem; }
    .faq-item .faq-body { padding: 0 1.25rem 1.15rem; font-size: 0.88rem; }
    /* Defensive mobile rules — prevent overflow */
    .float-badge { top: -0.5rem; right: 0; transform: rotate(6deg) scale(0.85); }
    .float-badge .b-num { font-size: 1.2rem; }
    .pricing-toggle { padding: 0.3rem; }
    .pricing-toggle button { padding: 0.55rem 1.1rem; font-size: 0.78rem; }
    .pricing-toggle .save-pill { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
    .price-card { padding: 2rem 1.4rem; }
    .price-card.featured { transform: none; }
    .pop-badge { font-size: 0.62rem; padding: 0.35rem 0.85rem; }
    .core-benefits, .integrations-preview, .industries, .how-it-works, .feature-row, .pricing-section, .faq-section, .guarantee-band { padding: 3rem 5%; }
    .feature-row-inner { gap: 2rem; }
    .feature-img .fr-badge { font-size: 0.75rem; padding: 0.55rem 0.9rem; top: -0.75rem; left: -0.5rem; }
    .stat-item .n { font-size: 2.6rem; }
    .stat-band { padding: 3rem 5%; }
    .int-cat h3 { font-size: 1.2rem; gap: 0.5rem; }
    .int-cat h3 i { font-size: 0.95rem; }
    /* Container body horizontal safety — never let anything exceed viewport */
    body { overflow-x: hidden; }
    .cr-hero-grid, .feature-row-inner, .benefit-grid, .ind-grid, .int-grid, .stat-band-inner, .steps-grid, .pricing-grid { max-width: 100%; }
}

/* ── EXTRA-SMALL (tiny phones <= 360px) ── */
@media (max-width: 360px) {
    .cr-hero-content h1 { font-size: 1.85rem; }
    .cr-hero-actions .btn { padding: 0.85rem 1.4rem; font-size: 0.82rem; }
    .float-badge { display: none; }
    .ind-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .ind-tile .ind-label { font-size: 0.7rem; }
    .top-bar { padding: 0.5rem 4%; }
    .top-bar-left { gap: 0.85rem; font-size: 0.72rem; }
    .top-bar-left a span:not(.fa) { display: inline; }
}
