/* ─────────────────────────────────────────────
   HantverksPartner – VVS / HVAC Landing Page
   Design: Premium Swedish B2B, conversion-focused
   ───────────────────────────────────────────── */

:root {
  --orange:        #E05B22;
  --orange-dark:   #C84E18;
  --orange-light:  #FFF3EE;
  --dark:          #111111;
  --dark-surface:  #181818;
  --text:          #1A1A1A;
  --text-secondary:#4A4A4A;
  --text-muted:    #777777;
  --bg-light:      #F6F6F6;
  --bg-section:    #FAFAFA;
  --white:         #FFFFFF;
  --border:        #E2E2E2;
  --border-light:  #EBEBEB;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.12);
  --container:     1100px;
  --radius:        4px;
  --radius-lg:     8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ── */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

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

.section--dark {
  background: var(--dark);
  color: var(--white);
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-outline--white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline--white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  border-color: var(--white);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.nav-logo span {
  display: inline;
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  margin-left: 48px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s;
  position: relative;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
}

.nav-phone:hover { color: var(--orange); }

.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.nav-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.18s;
}

.nav-chat-btn:hover { background: var(--orange-dark); }

.nav-chat-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: 72px 0 80px;
  overflow: hidden;
}

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

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

.hero-content h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-helper {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
}

.hero-panel {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(224, 91, 34, 0.12);
  pointer-events: none;
}

.hero-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(224, 91, 34, 0.07);
  pointer-events: none;
}

.panel-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.panel-logo span {
  display: block;
  color: var(--orange);
}

.panel-body {
  position: relative;
  z-index: 1;
}

.panel-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--orange);
  opacity: 0.9;
}

.panel-tagline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.panel-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.panel-badge {
  display: inline-block;
  background: rgba(224, 91, 34, 0.15);
  border: 1px solid rgba(224, 91, 34, 0.35);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

/* ── PROBLEM CARDS (3 boxes) ── */
.cards-section {
  padding: 64px 0;
  background: var(--bg-light);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin: 0 auto 18px;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PAIN SECTION ── */
.pain-section {
  padding: 88px 0;
  background: var(--white);
}

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

.pain-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.pain-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.pain-content p:last-child {
  font-weight: 600;
  color: var(--text);
}

.pain-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-illustration {
  width: 100%;
  max-width: 320px;
  color: var(--orange);
  opacity: 0.85;
}

/* ── CALCULATION SECTION ── */
.calc-section {
  background: var(--dark);
  padding: 72px 0;
  color: var(--white);
}

.calc-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 52px;
  color: var(--white);
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.calc-item {
  text-align: center;
  padding: 0 36px;
}

.calc-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}

.calc-number {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.calc-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.calc-operator {
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  padding: 0 12px;
  align-self: flex-start;
  padding-top: 8px;
  flex-shrink: 0;
}

.calc-separator {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  margin: 0 28px;
  align-self: center;
  flex-shrink: 0;
}

.calc-support {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SOLUTION SECTION ── */
.solution-section {
  padding: 88px 0;
  background: var(--bg-section);
}

.solution-header {
  text-align: center;
  margin-bottom: 56px;
}

.solution-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.solution-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

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

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

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.benefit-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA + FORM SECTION ── */
.cta-section {
  padding: 88px 0;
  background: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-content h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ── FORM ── */
.form-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input::placeholder {
  color: #BBBBBB;
}

.form-group input:focus {
  border-color: var(--orange);
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--orange-dark); }
.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-notice {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* Form feedback states */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  color: #2E7D32;
}

.form-success h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-muted);
}

.form-error-msg {
  display: none;
  background: #FFF3F3;
  border: 1px solid #FFCDD2;
  color: #C62828;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-top: 10px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-surface);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo span {
  display: block;
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-links svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--orange);
}

.footer-legal {
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ALTERNATE HERO ── */
.hero--alt {
  padding: 88px 0 72px;
}

.hero-inner--single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-inner--single .hero-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.hero-inner--single h1 {
  font-size: clamp(36px, 5vw, 52px);
}

/* ── PROCESS / STEPS SECTION ── */
.process-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  text-align: center;
}

.step-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FIT SECTION ── */
.fit-section {
  padding: 80px 0;
  background: var(--white);
}

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

.fit-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.fit-card svg {
  width: 48px;
  height: 48px;
  color: var(--orange);
  margin: 0 auto 20px;
}

.fit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.fit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PAIN THEMES SECTION ── */
.pain-themes-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.theme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.theme-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.theme-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
  padding: 88px 0;
  background: var(--white);
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 52px;
}

.form-intro h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.form-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.large-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-grid.full-width-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
  font-family: 'Inter', system-ui, sans-serif;
  resize: vertical;
}

.form-group textarea::placeholder {
  color: #BBBBBB;
}

.form-group textarea:focus {
  border-color: var(--orange);
}

/* ── DIRECT CONTACT SECTION ── */
.direct-contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.contact-box svg {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin: 0 auto 20px;
}

.contact-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-box a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.contact-box a:hover {
  color: var(--orange-dark);
}

.contact-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BOTTOM CTA SECTION ── */
.bottom-cta-section {
  padding: 72px 0;
  background: var(--orange);
}

.cta-card {
  text-align: center;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto;
}

.bottom-cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bottom-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.75;
}

.cta-buttons-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.bottom-cta-section .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.bottom-cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

/* ── THANK YOU PAGE ── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bg-light);
}

.thankyou-card {
  background: var(--white);
  padding: 52px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.thankyou-icon {
  width: 60px;
  height: 60px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thankyou-icon svg { color: #2E7D32; }

.thankyou-card h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}

.thankyou-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.btn-back {
  display: inline-block;
  padding: 14px 34px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.18s;
}

.btn-back:hover { background: var(--orange-dark); }

/* ── SERVICES PAGE ── */
.services-main {
  padding: 80px 0;
  background: var(--white);
}

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

.service-tile {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-tile--featured {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  padding: 48px 36px 40px;
}

.service-tile--featured h2 {
  color: var(--white);
}

.service-tile--featured p {
  color: rgba(255,255,255,0.9);
}

.service-tile--featured .btn {
  margin-top: auto;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.service-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(224, 91, 34, 0.1);
  border-radius: var(--radius);
  margin: 0 auto 0 0;
}

.service-tile--featured .service-icon-large {
  background: rgba(255,255,255,0.15);
}

.service-icon-large svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.service-tile--featured .service-icon-large svg {
  color: var(--white);
}

.service-tile h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.service-tile p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-benefits li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.service-tile--featured .service-benefits li {
  color: rgba(255,255,255,0.85);
}

/* ── WHERE TO START SECTION ── */
.where-to-start-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.decision-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.decision-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.decision-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.decision-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.decision-card li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--orange);
  font-weight: 700;
}

/* ── WHAT WE DON'T SECTION ── */
.what-we-dont-section {
  padding: 80px 0;
  background: var(--white);
}

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

.dont-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

.dont-card svg {
  width: 44px;
  height: 44px;
  color: #E85D5D;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.dont-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.dont-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHAT WE IMPROVE SECTION ── */
.what-we-improve-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.improve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.improve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--orange);
}

.improve-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.improve-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING PAGE ── */
.pricing-main {
  padding: 80px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}

.pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.pricing-card--featured {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  padding: 48px 36px 40px;
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card--featured h2 {
  color: var(--white);
}

.pricing-card--featured p {
  color: rgba(255,255,255,0.9);
}

.pricing-card--featured .pricing-amount {
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.pricing-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.pricing-card--featured h2 {
  color: var(--white);
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-amount .from {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-amount .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.pricing-card--featured .pricing-amount .price {
  color: var(--white);
}

.pricing-amount .period {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-card--featured .pricing-amount .period {
  color: rgba(255,255,255,0.7);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-card--featured .pricing-features li {
  color: rgba(255,255,255,0.85);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-card--featured .pricing-features li::before {
  color: var(--white);
}

.pricing-note {
  text-align: center;
  background: #FFF9F3;
  border: 1px solid #FFEDDF;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pricing-note p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ── PRICING FRAMEWORKS SECTION ── */
.pricing-frameworks-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.framework-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.framework-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.framework-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}

.framework-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.framework-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.framework-card li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.framework-card li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--orange);
}

/* ── PRICE FACTORS SECTION ── */
.price-factors-section {
  padding: 80px 0;
  background: var(--white);
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.factor-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.factor-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.factor-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── REVIEW SECTION ── */
.review-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.review-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.review-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.review-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.review-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.cta-review {
  text-align: center;
}

/* ── QUOTE NEEDED SECTION ── */
.quote-needed-section {
  padding: 80px 0;
  background: var(--white);
}

.quote-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-case {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.quote-case h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.quote-case p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── NAV ACTIVE STATE ── */
.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  width: 100%;
  background: var(--orange);
}

/* ── FOOTER LINKS ── */
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-tile--featured {
    transform: scale(1);
  }

  .service-tile--featured:hover {
    transform: translateY(-4px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dont-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .improve-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .frameworks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .factors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-cases {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pain-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pain-visual {
    order: -1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-tile--featured {
    transform: scale(1);
  }

  .service-tile--featured:hover {
    transform: translateY(-4px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dont-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .improve-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .frameworks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .factors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-cases {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pain-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pain-visual {
    order: -1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  .hero { padding: 52px 0 60px; }

  .cards-section,
  .pain-section,
  .solution-section,
  .cta-section { padding: 60px 0; }

  .calc-section { padding: 56px 0; }

  .nav-menu { display: none; }
  
  .nav-phone { display: none; }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-panel {
    padding: 36px 28px;
    min-height: auto;
  }

  .calc-row {
    flex-direction: column;
    gap: 24px;
  }

  .calc-item { border-right: none !important; }

  .calc-operator {
    padding: 0;
    font-size: 22px;
  }

  .calc-separator { display: none; }

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

  .form-grid.full-width-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .process-section,
  .fit-section,
  .pain-themes-section,
  .contact-form-section,
  .direct-contact-section,
  .services-main,
  .where-to-start-section,
  .what-we-dont-section,
  .what-we-improve-section,
  .pricing-main,
  .pricing-frameworks-section,
  .price-factors-section,
  .review-section,
  .quote-needed-section {
    padding: 60px 0;
  }

  .large-form {
    padding: 32px 24px;
  }

  .cta-buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons-row .btn {
    width: 100%;
  }

  .form-intro h2 {
    font-size: 28px;
  }

  .service-icon-large {
    width: 52px;
    height: 52px;
  }

  .service-icon-large svg {
    width: 28px;
    height: 28px;
  }

  .step-num {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn { width: 100%; justify-content: center; }

  .cta-buttons .btn { width: auto; }

  .thankyou-card { padding: 36px 24px; }

  .form-card { padding: 28px 20px; }
}

/* ─────────────────────────────────────────────
   Additional Components – v8
   ───────────────────────────────────────────── */

/* ── HERO TRUST POINTS ── */
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  padding: 28px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.social-proof-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.proof-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.65;
  transition: opacity 0.15s;
}

.proof-item:hover { opacity: 1; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 88px 0;
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how-step {
  padding: 48px 36px;
  position: relative;
  text-align: center;
  border-right: 1px solid var(--border-light);
  background: var(--white);
  transition: background 0.2s;
}

.how-step:last-child { border-right: none; }

.how-step:hover { background: var(--bg-light); }

.how-step-number {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.how-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ── AI SERVICES GRID (2×2) ── */
.ai-services-section {
  padding: 88px 0;
  background: var(--bg-light);
}

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

.ai-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ai-service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.ai-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.ai-service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 88px 0;
  background: var(--bg-section);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 22px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
}

.faq-item.open .faq-answer { display: block; }

/* ── CTA TRUST CHECKLIST ── */
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: 80px 0;
  background: var(--dark);
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.testimonial-quote {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.testimonial-role {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── MOBILE NAV TOGGLE ── */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.nav-mobile-toggle:hover { background: var(--bg-light); }

.nav-mobile-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ── CONTACT PAGE HERO (dark tinted) ── */
.hero--dark {
  background: var(--dark);
  color: var(--white);
}

.hero--dark .hero-content .eyebrow {
  color: rgba(224,91,34,0.9);
}

.hero--dark h1 {
  color: var(--white);
}

.hero--dark .hero-content p {
  color: rgba(255,255,255,0.7);
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 960px) {
  .how-steps {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .how-step {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 36px 28px;
  }

  .how-step:last-child { border-bottom: none; }

  .ai-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-proof-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-mobile-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open { display: flex; }

  .hero-trust { gap: 20px; }

  .how-it-works,
  .ai-services-section,
  .faq-section,
  .testimonial-section { padding: 60px 0; }

  .how-step p { max-width: 100%; }

  .faq-question { font-size: 15px; }

  .testimonial-inner { padding: 0 8px; }

  .ai-service-card { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .social-proof-logos { gap: 16px; }

  .how-step-number { width: 44px; height: 44px; font-size: 16px; }
}
