/* NUVREN v20260623100 - Icon system + polish */

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

:root {
  /* Colors */
  --white:      #FFFFFF;
  --bg:         #F8F7F4;
  --dark:       #111827;
  --dark-2:     #1F2937;
  --text:       #111827;
  --text-2:     #374151;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --border-2:   #D1D5DB;
  --orange:     #E8521A;
  --orange-dk:  #C4401A;
  --orange-lt:  #FEF0EB;
  --blue:       #2563EB;

  /* Layout */
  --nav-h:      68px;
  --container:  1200px;

  /* Border radius — 2 sizes only */
  --r:          8px;
  --r-lg:       16px;

  /* Spacing scale (8px grid) */
  --sp-1:  0.5rem;   /* ~8px  */
  --sp-2:  1rem;     /* ~16px */
  --sp-3:  1.5rem;   /* ~24px */
  --sp-4:  2rem;     /* ~32px */
  --sp-6:  3rem;     /* ~48px */
  --sp-8:  4rem;     /* ~64px */
  --sp-12: 6rem;     /* ~96px */

  /* Shadow elevation */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.12);
  --shadow-orange: 0 4px 24px rgba(232,82,26,.15);

  /* Typography */
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lh-heading: 1.15;
  --lh-body:    1.6;

  /* Font scale */
  --fs-h1:    clamp(2.25rem, 4vw + 1rem, 3.5rem);
  --fs-h2:    clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  --fs-h3:    1.35rem;
  --fs-body:  1rem;
  --fs-small: 0.875rem;

  /* Animation */
  --ease:          cubic-bezier(.25,.46,.45,.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --t:             200ms;
}

html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (max-width: 768px) { html { font-size: 16px; } }

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

.skip-link {
  position: absolute; top: -100%; left: 1rem; padding: .5rem 1rem;
  background: var(--orange); color: var(--white); font-weight: 600;
  border-radius: var(--r); text-decoration: none; z-index: 9999; transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: underline; transition: color var(--t); }
a:hover { color: var(--orange); }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* === UTILITIES === */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-label { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .875rem; }

.btn {
  display: inline-flex; align-items: center; gap: var(--sp-1); padding: .875rem 1.75rem;
  font-size: 1rem; font-weight: 600; font-family: var(--sans); border-radius: var(--r);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  line-height: 1.2; white-space: nowrap; min-height: 44px;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--border-2); }
.btn-outline-dark:hover { border-color: var(--dark); color: var(--dark); }

/* === ICON === */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-out-expo); }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.revealed { opacity: 1; transform: none; transition: none; }
}

/* === NAV === */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-wrap {
  max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem); height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; color: var(--dark); text-decoration: none; flex-shrink: 0; }
.nav-logo__img { height: 2.25rem; width: auto; display: block; }
.nav-logo__text { line-height: 1; }
.nav-logo:hover { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; list-style: none; }
.nav-link { display: inline-flex; align-items: center; padding: .5rem .75rem; font-size: .9rem; font-weight: 500; color: var(--text-2); text-decoration: none; border-radius: var(--r); transition: color var(--t), background var(--t); min-height: 44px; }
.nav-link:hover, .nav-link.active { color: var(--dark); background: var(--bg); }
.nav-cta-btn { display: inline-block; margin-left: .5rem; padding: .5rem 1.125rem; background: var(--orange); color: var(--white) !important; font-size: .9rem; font-weight: 600; border-radius: var(--r); text-decoration: none; transition: background var(--t); }
.nav-cta-btn:hover { background: var(--orange-dk); color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 500; color: var(--text-2); text-decoration: none; flex-shrink: 0; }
.nav-phone:hover { color: var(--orange); }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; }
.nav-burger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: var(--white); z-index: 99; overflow-y: auto; }
.nav-mobile.open { display: block; }
.nav-mobile__inner { display: flex; flex-direction: column; padding: 1.5rem clamp(1.25rem, 5vw, 3rem); gap: .25rem; }
.nav-mobile__link { display: block; padding: .875rem 1rem; font-size: 1.1rem; font-weight: 500; color: var(--text-2); text-decoration: none; border-radius: var(--r); border-bottom: 1px solid var(--border); }
.nav-mobile__link.active { color: var(--dark); font-weight: 600; }
.nav-mobile__link--cta { margin-top: 1rem; background: var(--orange); color: var(--white) !important; text-align: center; font-weight: 600; border-bottom: none; }
.nav-mobile__phone { display: flex; align-items: center; gap: .5rem; padding: .875rem 1rem; font-size: 1rem; font-weight: 500; color: var(--text-2); text-decoration: none; margin-top: .5rem; }

@media (max-width: 960px) { .nav-links { display: none; } .nav-phone { display: none; } .nav-burger { display: flex; } }

/* === HERO === */
.hero { background: var(--dark); color: var(--white); padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 9vw, 6rem); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .875rem; background: rgba(232,82,26,.12); border: 1px solid rgba(232,82,26,.3); border-radius: 100px; font-size: .8rem; font-weight: 600; color: #F97343; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero__h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.25rem; }
.hero__h1 em { font-style: normal; color: var(--orange); }
.hero__sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.72); max-width: 540px; line-height: 1.75; margin-bottom: 2.25rem; }
.hero__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.hero__mockup { background: var(--dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; position: relative; }
.hero__mockup-bar { position: absolute; top: 0; inset-inline: 0; height: 36px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; padding: 0 1rem; gap: .5rem; }
.hero__mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__mockup-dot:nth-child(1) { background: #FF5F56; }
.hero__mockup-dot:nth-child(2) { background: #FFBD2E; }
.hero__mockup-dot:nth-child(3) { background: #27C93F; }
.hero__mockup-screen { width: 100%; padding: 3.5rem 2rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.hero__mockup-line { height: 10px; background: rgba(255,255,255,.07); border-radius: 5px; }
.hero__mockup-line--h { height: 20px; width: 60%; background: rgba(255,255,255,.12); }
.hero__mockup-line--short { width: 40%; }
.hero__mockup-line--medium { width: 68%; }
.hero__mockup-line--long { width: 88%; }
.hero__mockup-btn { width: 130px; height: 38px; background: rgba(232,82,26,.4); border-radius: var(--r); margin-top: .5rem; }

@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } .hero__visual { display: none; } }

/* === TRUST NUMBERS === */
.hp-trust { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.hp-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 600px) { .hp-trust__grid { grid-template-columns: 1fr 1fr; } .hp-trust__grid > :nth-child(3) { grid-column: 1 / -1; } }
.hp-trust__num { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -.02em; }
.hp-trust__label { font-size: .875rem; color: var(--text-muted); margin-top: .375rem; font-weight: 500; }

/* === PROBLEM BLOCK === */
.hp-problem { background: var(--bg); padding: clamp(4rem, 8vw, 6rem) 0; }
.hp-problem__intro { max-width: 640px; margin-bottom: 3rem; }
.hp-problem__intro h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; margin-bottom: .875rem; line-height: 1.2; }
.hp-problem__intro p { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; }
.hp-problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .hp-problem__grid { grid-template-columns: 1fr; } }
.hp-problem__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; }
.hp-problem__icon { width: 48px; height: 48px; background: var(--orange-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--orange); font-size: 1.5rem; }
.hp-problem__card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.hp-problem__card p { color: var(--text-2); font-size: .925rem; line-height: 1.7; }

/* === SERVICES CARDS (homepage) === */
.hp-services { padding: clamp(4rem, 8vw, 6rem) 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.section-header h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-4); text-decoration: none; color: var(--text); transition: border-color 200ms ease-out, box-shadow 200ms ease-out, transform 200ms ease-out; display: flex; flex-direction: column; gap: .875rem; }
.svc-card:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); color: var(--text); transform: scale(1.015); }
.svc-card__icon { width: 52px; height: 52px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.svc-card__title { font-size: var(--fs-h3); font-weight: 600; line-height: 1.3; }
.svc-card__desc { color: var(--text-2); font-size: .95rem; line-height: 1.65; flex: 1; }
.svc-card__price { font-size: .875rem; font-weight: 600; color: var(--orange); }
.svc-card__link { font-size: .875rem; font-weight: 600; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: .25rem; }
.svc-card__link::after { content: '\2192'; }

/* === PORTFOLIO CARDS === */
.hp-work { background: var(--bg); padding: clamp(4rem, 8vw, 6rem) 0; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: var(--text); transition: border-color 200ms ease-out, box-shadow 200ms ease-out, transform 200ms ease-out; display: flex; flex-direction: column; }
.work-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); color: var(--text); transform: scale(1.015); }
.work-card__img { aspect-ratio: 16/9; background: var(--dark-2); overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; }
.work-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: rgba(255,255,255,.15); background: linear-gradient(135deg, #1F2937, #2D3748); }
.work-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.work-card__cat { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.work-card__title { font-size: 1.05rem; font-weight: 600; }
.work-card__desc { font-size: .9rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.work-card__cta { display: flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 600; color: var(--blue); margin-top: .5rem; }
.work-card__cta::after { content: '\2192'; }

/* === COMPARISON TABLE === */
.hp-compare { background: var(--dark); color: var(--white); padding: clamp(4rem, 8vw, 6rem) 0; }
.hp-compare h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; line-height: 1.2; }
.hp-compare .section-intro { color: rgba(255,255,255,.65); max-width: 580px; margin-bottom: 2.5rem; font-size: 1.05rem; }
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 480px; }
.compare-table th { padding: .875rem 1.25rem; text-align: left; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .875rem; letter-spacing: .03em; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.col-custom { color: var(--orange); }
.compare-table td { padding: .875rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.75); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table td:first-child { font-weight: 500; color: rgba(255,255,255,.9); }
.compare-table tr:last-child td { border-bottom: none; }
/* Comparison table badge icons */
.cmp-yes  { display: inline-flex; color: #4ADE80; vertical-align: middle; }
.cmp-no   { display: inline-flex; color: #F87171; vertical-align: middle; }
.cmp-part { display: inline-flex; color: #FBBF24; vertical-align: middle; }
.cmp-note { display: block; font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .25rem; line-height: 1.4; }
.cmp-note--warn { color: #F87171; }
@media (max-width: 640px) { .compare-table { font-size: .85rem; } .compare-table th, .compare-table td { padding: .625rem .75rem; } }

/* === PROCESS STEPS === */
.hp-process { padding: clamp(4rem, 8vw, 6rem) 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step__num { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--orange); color: var(--white); font-size: .9rem; font-weight: 700; border-radius: 50%; margin-bottom: 1.25rem; }
.process-step__title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.process-step__desc { color: var(--text-2); font-size: .9rem; line-height: 1.7; }
.process-step__time { display: inline-block; margin-top: .75rem; padding: .25rem .625rem; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; font-size: .75rem; font-weight: 600; color: var(--text-muted); }

/* === FOUNDER COMMITMENT === */
.hp-commitment { background: var(--dark-2); color: var(--white); padding: clamp(3.5rem, 7vw, 5.5rem) 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.hp-commitment__inner { max-width: 760px; margin-inline: auto; }
.hp-commitment__quote-mark { font-size: 5rem; line-height: .8; color: var(--orange); font-family: Georgia, serif; margin-bottom: .5rem; opacity: .8; }
.hp-commitment__quote { font-size: clamp(1.05rem, 2.5vw, 1.3rem); font-weight: 400; line-height: 1.8; color: rgba(255,255,255,.88); margin-bottom: 1.75rem; font-style: italic; }
.hp-commitment__author { font-size: .975rem; font-weight: 600; color: var(--white); margin-bottom: .375rem; font-style: normal; }
.hp-commitment__note { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* === FAQ ACCORDION === */
.hp-faq { background: var(--bg); padding: clamp(4rem, 8vw, 6rem) 0; }
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-size: 1rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--sans); line-height: var(--lh-heading); min-height: 44px; }
.faq-question:hover { color: var(--orange); }
.faq-question__icon { font-size: 1.5rem; font-weight: 300; flex-shrink: 0; line-height: 1; transition: transform var(--t); color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-question__icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer { display: none; padding: 0 0 1.25rem; color: var(--text-2); line-height: 1.8; font-size: .975rem; }
.faq-answer.open { display: block; }

/* === CTA FORM SECTION === */
.hp-cta-form { background: var(--dark); color: var(--white); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.hp-cta-form__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .hp-cta-form__inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.hp-cta-form__copy h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 1rem; }
.hp-cta-form__copy p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.5rem; }
.hp-cta-form__bullets { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.hp-cta-form__bullets li { display: flex; align-items: flex-start; gap: .625rem; font-size: .95rem; color: rgba(255,255,255,.8); }
.hp-cta-form__bullets li .bullet-icon { color: #4ADE80; flex-shrink: 0; margin-top: 2px; }

/* === LEAD FORM === */
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.75); }
.form-group input, .form-group select, .form-group textarea { padding: .75rem 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r); color: var(--white); font-size: .975rem; font-family: var(--sans); transition: border-color var(--t), background var(--t); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group--check { flex-direction: row; align-items: flex-start; gap: .75rem; }
.form-group--check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.form-group--check label { font-size: .85rem; color: rgba(255,255,255,.6); font-weight: 400; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: -.25rem; }
.form-error { font-size: .8rem; color: #F87171; margin-top: .25rem; }

/* Light form */
.lead-form--light .form-group label { color: var(--text-2); }
.lead-form--light .form-group input, .lead-form--light .form-group select, .lead-form--light .form-group textarea { background: var(--white); border-color: var(--border-2); color: var(--text); }
.lead-form--light .form-group input:focus, .lead-form--light .form-group select:focus, .lead-form--light .form-group textarea:focus { border-color: var(--orange); }
.lead-form--light .form-group input::placeholder, .lead-form--light .form-group textarea::placeholder { color: var(--text-muted); }
.lead-form--light .form-group select option { background: var(--white); color: var(--text); }
.lead-form--light .form-group--check label { color: var(--text-2); }
.lead-form--light .form-note { color: var(--text-muted); }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding-top: 4rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.35rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -.02em; margin-bottom: .75rem; }
.footer-logo__img { height: 2.25rem; width: auto; display: block; }
.footer-logo__text span { color: var(--orange); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 1.25rem; max-width: 280px; }
.footer-nap { display: flex; flex-direction: column; gap: .375rem; font-style: normal; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-nap a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-nap a:hover { color: var(--orange); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 560px) { .footer-nav { grid-template-columns: 1fr 1fr; } .footer-nav__col:last-child { grid-column: 1 / -1; } }
.footer-nav__heading { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-nav a { display: block; font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; margin-bottom: .5rem; transition: color var(--t); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal-note { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-legal-note a { color: rgba(255,255,255,.38); }
.footer-legal-note a:hover { color: rgba(255,255,255,.65); }

/* === MOBILE STICKY CTA === */
.mobile-sticky { display: none; position: fixed; bottom: 0; inset-inline: 0; z-index: 200; background: var(--white); border-top: 1px solid var(--border); padding: .75rem 1rem; padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0px)); gap: .75rem; box-shadow: var(--shadow-lg); }
.mobile-sticky.visible { display: flex; }
.mobile-sticky__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .875rem; border-radius: var(--r); font-size: .95rem; font-weight: 600; text-decoration: none; transition: background var(--t); }
.mobile-sticky__btn--call { background: var(--bg); color: var(--dark); border: 1px solid var(--border); }
.mobile-sticky__btn--call:hover { background: var(--border); color: var(--dark); }
.mobile-sticky__btn--write { background: var(--orange); color: var(--white); }
.mobile-sticky__btn--write:hover { background: var(--orange-dk); color: var(--white); }
@media (max-width: 768px) { .mobile-sticky { display: flex; } body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); } }

/* === COOKIE NOTICE === */
.cookie-notice { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 300; background: var(--dark); color: rgba(255,255,255,.85); border-radius: var(--r-lg); padding: 1rem 1.25rem; box-shadow: 0 4px 24px rgba(0,0,0,.25); display: flex; align-items: center; gap: 1.25rem; max-width: calc(100vw - 2rem); width: max-content; font-size: .875rem; line-height: 1.5; }
.cookie-notice p { margin: 0; }
.cookie-notice p a { color: rgba(255,255,255,.65); }
.cookie-notice__ok { background: var(--orange); color: var(--white); border: none; padding: .5rem 1rem; border-radius: var(--r); font-size: .875rem; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: var(--sans); }
.cookie-notice__ok:hover { background: var(--orange-dk); }
@media (max-width: 500px) { .cookie-notice { flex-direction: column; align-items: flex-start; width: calc(100vw - 2rem); } }

/* === PAGE BANNER === */
.page-banner { background: var(--dark); color: var(--white); padding: 3.5rem 0 3rem; }
.page-banner .section-label { color: var(--orange); }
.page-banner h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin-bottom: .875rem; }
.page-banner__sub { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }
.breadcrumb__sep { opacity: .4; }

/* === SERVICES PAGE === */
.services-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.svc-row { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; padding: 2.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); align-items: start; }
@media (max-width: 768px) { .svc-row { grid-template-columns: 1fr; gap: 1.5rem; } }
.svc-row__title { font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; }
.svc-row__price { color: var(--orange); font-weight: 600; font-size: .95rem; margin-bottom: 1.25rem; }
.svc-row__desc { color: var(--text-2); line-height: 1.8; margin-bottom: 1.25rem; font-size: .975rem; }
.svc-row__included { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.svc-row__included li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--text-2); }
.svc-row__included li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322C55E'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* === WORK PAGE === */
.work-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.work-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .work-page-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .work-page-grid { grid-template-columns: 1fr; } }

/* === CASE STUDY PAGE === */
.case-page { padding: clamp(3rem, 7vw, 5rem) 0; }
.case-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } }
.case-meta { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.case-meta__row { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.case-meta__row:first-child { padding-top: 0; }
.case-meta__row:last-child { border-bottom: none; padding-bottom: 0; }
.case-meta__label { color: var(--text-muted); font-weight: 500; }
.case-meta__val { font-weight: 600; text-align: right; }
.case-section { margin-bottom: 2.5rem; }
.case-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .875rem; padding-bottom: .75rem; border-bottom: 2px solid var(--orange); }
.case-section p { color: var(--text-2); line-height: 1.85; font-size: .975rem; }
.case-images { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.case-images img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--border); }

/* === PRICING PAGE === */
.pricing-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; margin-bottom: 3rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; } }
.price-card { background: var(--bg); border: 2px solid var(--border); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
.price-card--featured { border-color: var(--orange); background: var(--white); }
.price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 100px; white-space: nowrap; }
.price-card__title { font-size: 1.3rem; font-weight: 700; }
.price-card__price { font-size: 2.25rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.price-card__price span { font-size: .9rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-card__desc { color: var(--text-2); font-size: .9rem; line-height: 1.6; }
.price-card__features { list-style: none; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.price-card__features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--text-2); }
.price-card__features li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322C55E'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* === FAQ PAGE === */
.faq-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.faq-cats { display: flex; gap: .625rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.faq-cat-btn { padding: .375rem .875rem; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; font-size: .875rem; font-weight: 500; cursor: pointer; color: var(--text-2); font-family: var(--sans); transition: background var(--t), color var(--t), border-color var(--t); }
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.faq-page-list { max-width: 800px; }

/* === CONTACT PAGE === */
.contact-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1.25rem; }
.contact-detail__icon { width: 40px; height: 40px; background: var(--orange-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-detail__label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .1rem; }
.contact-detail__val { font-weight: 600; color: var(--text); text-decoration: none; }
.contact-detail__val:hover { color: var(--orange); }

/* === ABOUT PAGE === */
.about-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.about-lead { font-size: 1.2rem; color: var(--text-2); line-height: 1.85; max-width: 720px; margin-bottom: 3rem; }
.about-body { max-width: 800px; }
.about-body h2 { font-size: 1.45rem; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: -.02em; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { color: var(--text-2); line-height: 1.85; margin-bottom: 1.25rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 600px) { .about-values { grid-template-columns: 1fr; } }
.about-value { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.about-value__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.about-value__text { font-size: .9rem; color: var(--text-2); line-height: 1.65; }

/* === LEGAL PAGES === */
.legal-page { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 1.35rem; font-weight: 700; margin: 2.5rem 0 .875rem; }
.legal-body h3 { font-size: 1.05rem; font-weight: 600; margin: 1.75rem 0 .625rem; }
.legal-body p { color: var(--text-2); line-height: 1.85; margin-bottom: 1.1rem; }
.legal-body ul, .legal-body ol { color: var(--text-2); line-height: 1.85; padding-left: 1.5rem; margin-bottom: 1.1rem; }
.legal-body li { margin-bottom: .375rem; }
.legal-body a { color: var(--blue); }

/* === THANK YOU === */
.thanks-page { padding: 6rem 0; text-align: center; min-height: 60vh; display: flex; align-items: center; }
.thanks-page .container { width: 100%; }
.thanks-page__inner { max-width: 560px; margin-inline: auto; }
.thanks-icon { width: 80px; height: 80px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; color: #16A34A; }
.thanks-page h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.thanks-page p { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

/* === 404 === */
.not-found { padding: 6rem 0; text-align: center; min-height: 60vh; display: flex; align-items: center; }
.not-found .container { width: 100%; }
.not-found__inner { max-width: 500px; margin-inline: auto; }
.not-found__num { font-size: 6rem; font-weight: 700; color: var(--border-2); line-height: 1; margin-bottom: 1rem; }
.not-found h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: .875rem; }
.not-found p { color: var(--text-2); margin-bottom: 2rem; }

/* === CTA STRIP === */
.cta-strip { background: var(--orange-lt); border: 1px solid rgba(232,82,26,.2); border-radius: var(--r-lg); padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip__copy h3 { font-size: var(--fs-h3); font-weight: 700; }
.cta-strip__copy p { color: var(--text-2); font-size: .95rem; margin-top: .375rem; }

/* === SERVICE SINGLE === */
.svc-single { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.svc-single__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .svc-single__grid { grid-template-columns: 1fr; } }
.svc-single__body h2 { font-size: 1.35rem; font-weight: 700; margin: 2rem 0 .875rem; }
.svc-single__body h2:first-child { margin-top: 0; }
.svc-single__body p { color: var(--text-2); line-height: 1.85; margin-bottom: 1rem; }
.svc-single__sidebar { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.svc-single__sidebar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.svc-single__price { font-size: 2rem; font-weight: 700; letter-spacing: -.03em; color: var(--orange); margin-bottom: 1.25rem; line-height: 1; }

/* === COMPARE MOBILE CARDS (< 640px) === */
.compare-mobile { display: none; flex-direction: column; gap: var(--sp-3); }
.compare-mobile__card { border-radius: var(--r-lg); padding: var(--sp-3); }
.compare-mobile__card--wix  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.compare-mobile__card--wp   { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.compare-mobile__card--nuvren { background: rgba(232,82,26,.15); border: 1px solid rgba(232,82,26,.4); }
.compare-mobile__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: var(--sp-2); }
.compare-mobile__card--nuvren .compare-mobile__title { color: #F97343; }
.compare-mobile__rows { display: flex; flex-direction: column; gap: var(--sp-1); }
.compare-mobile__row { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-2); font-size: .875rem; padding: .375rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.compare-mobile__row:last-child { border-bottom: none; }
.compare-mobile__label { color: rgba(255,255,255,.65); flex: 1; line-height: 1.4; }
.compare-mobile__val { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.compare-mobile__val .icon { flex-shrink: 0; }
.compare-mobile__note { font-size: .75rem; color: rgba(255,255,255,.45); display: block; }

@media (max-width: 640px) {
  .compare-wrap { display: none; }
  .compare-mobile { display: flex; }
}
