/* ============================================
   Qualité Benefícios — Landing Page
   Saúde Emocional e Fatores Psicossociais
   ============================================ */

:root {
    --orange: #E87722;
    --orange-light: #F5A05A;
    --orange-dark: #C45F12;
    --navy: #0B1E3F;
    --navy-deep: #061530;
    --navy-light: #1A3160;
    --cream: #FBF7F2;
    --ink: #16223A;
    --muted: #5B6B86;
    --line: rgba(11, 30, 63, 0.10);
    --line-light: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 4px 16px rgba(11, 30, 63, 0.06);
    --shadow-md: 0 12px 32px rgba(11, 30, 63, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 30, 63, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--orange);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(232, 119, 34, 0.32);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(232, 119, 34, 0.44);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #fff;
}

.btn-nav {
    background: var(--orange);
    color: #fff;
    padding: 10px 22px;
    font-size: 0.9rem;
}
.btn-nav:hover { background: var(--orange-dark); }

.btn-block { width: 100%; }

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(11, 30, 63, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.logo-text em {
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
    opacity: 0.85;
    display: block;
    margin-top: -2px;
    line-height: 1;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

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

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--orange) 0%, #F08A3C 50%, var(--orange-dark) 100%);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(11, 30, 63, 0.22) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.eyebrow-dark {
    background: rgba(232, 119, 34, 0.12);
    color: var(--orange-dark);
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .hl {
    background: linear-gradient(120deg, #fff 0%, #FBE3CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 4px;
}
.hero-meta span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Hero illustration */
.hero-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb {
    position: relative;
    width: 380px;
    height: 380px;
    max-width: 100%;
}

.orb svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.20));
    animation: float 6s ease-in-out infinite;
}

.float-tag {
    position: absolute;
    padding: 10px 18px;
    background: #fff;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    animation: floatTag 5s ease-in-out infinite;
}

.tag-1 { top: 8%; left: -4%; animation-delay: 0s; }
.tag-2 { top: 20%; right: -8%; animation-delay: 1.2s; }
.tag-3 { bottom: 22%; left: -8%; animation-delay: 2.4s; }
.tag-4 { bottom: 8%; right: 0; animation-delay: 3.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-cue span {
    display: block;
    width: 3px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ========== Generic Sections ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-light { background: var(--cream); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-head.light h2,
.section-head.light .section-sub { color: #fff; }
.section-head.light h2 em { color: var(--orange-light); }

.section-sub {
    font-size: 1.1rem;
    color: var(--muted);
}

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

.two-col h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

.two-col p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.two-col p strong { color: var(--ink); font-weight: 600; }

/* Factors card */
.factors-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.factors-card h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.factors-list { display: flex; flex-direction: column; gap: 16px; }

.factors-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background 0.25s;
}

.factors-list li:hover { background: var(--cream); }

.factor-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.factors-list strong { display: block; color: var(--ink); font-size: 0.98rem; }
.factors-list span { font-size: 0.85rem; color: var(--muted); }

/* ========== Steps ========== */
.section-steps {
    background: var(--cream);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(232, 119, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(11, 30, 63, 0.04) 0%, transparent 50%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.steps li {
    position: relative;
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.steps li:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}

.steps h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.steps p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* ========== Norma Section ========== */
.section-norma {
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.norma-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.norma-badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.norma-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--orange);
    opacity: 0.5;
    animation: rotate 24s linear infinite;
}

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

.norma-badge span {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--orange);
    line-height: 1;
}

.norma-badge strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
}

.norma-checks {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.norma-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
}

.norma-checks li::before {
    content: '✓';
    width: 24px; height: 24px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========== Quote ========== */
.section-quote {
    background: var(--orange);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(11, 30, 63, 0.18) 0%, transparent 40%);
}

.section-quote > .container { position: relative; }

.section-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.25;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.section-quote blockquote em {
    font-style: italic;
    color: var(--navy);
    display: block;
    margin-top: 8px;
}

.quote-mark {
    display: block;
    font-size: 5rem;
    line-height: 0.4;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.quote-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
}

/* ========== Benefits ========== */
.section-benefits {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 0% 100%, rgba(232, 119, 34, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(232, 119, 34, 0.08) 0%, transparent 50%);
}

.section-benefits > .container { position: relative; }

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
    backdrop-filter: blur(6px);
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
}

.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
    grid-column: span 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 14px;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(232, 119, 34, 0.32);
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ========== Solutions ========== */
.section-solutions {
    background: var(--cream);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    display: flex;
    gap: 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s var(--ease);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-card:hover::before { transform: scaleY(1); }

.solution-card-wide { grid-column: 1 / -1; }

.solution-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(232, 119, 34, 0.14) 0%, rgba(232, 119, 34, 0.06) 100%);
    color: var(--orange);
    border-radius: 14px;
    flex-shrink: 0;
}
.solution-icon svg { width: 28px; height: 28px; }

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.solution-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.solution-card-body {
    flex: 1;
    min-width: 0;
}

/* ========== CTA ========== */
.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 100px 0;
}

.cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

.cta-content h2 em { color: var(--orange); }

.cta-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 460px;
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 36px;
    backdrop-filter: blur(8px);
}

.field { margin-bottom: 18px; }

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.40); }

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.12);
}

.field textarea { resize: vertical; min-height: 90px; }

.form-feedback {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--orange-light);
    min-height: 1.2em;
}

/* Honeypot (anti-spam) — invisível para humanos, visível para bots */
.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========== Footer ========== */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer ul { display: flex; flex-direction: column; gap: 10px; }

.footer ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer ul a:hover { color: var(--orange); }

.footer-tagline {
    margin-top: 16px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.85rem;
}

/* ========== Reveal animations ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
    .hero-grid,
    .two-col,
    .cta-wrap { grid-template-columns: 1fr; gap: 50px; }

    .hero { padding: 120px 0 60px; min-height: auto; }

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

    .benefits-grid,
    .solutions-grid { grid-template-columns: 1fr; }

    .solution-card-wide { grid-column: auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.35s var(--ease);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.open { right: 0; }

    .nav-toggle { display: flex; }

    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .section { padding: 70px 0; }

    .hero-meta { grid-template-columns: 1fr; gap: 14px; }

    .orb { width: 280px; height: 280px; }
}

@media (max-width: 560px) {
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .factors-card { padding: 28px 22px; }
    .cta-form { padding: 26px; }
    .float-tag { font-size: 0.78rem; padding: 8px 14px; }

    .solution-card {
        padding: 26px 22px;
        gap: 18px;
    }
    .solution-card h3 { font-size: 1.1rem; }
    .solution-card p { font-size: 0.92rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
