/* ============================================================
   ANDOMIR — Components & Sections
   ============================================================ */

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav.solid {
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(27,58,45,.12);
  box-shadow: 0 2px 20px rgba(27,58,45,.05);
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo .mark { width: 30px; height: 30px; flex: none; }
.logo .mark svg { width: 100%; height: 100%; }
.logo .word { font-family: var(--serif); font-weight: 700; font-size: 27px; line-height: 1; color: var(--cream); letter-spacing: .01em; transition: color .4s; }
.logo .sub { display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--terra); margin-top: 2px; }
.nav.solid .logo .word { color: var(--forest); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--cream);
  position: relative; padding: 4px 0; transition: color .4s;
}
.nav.solid .nav-links a { color: var(--forest); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1.5px solid rgba(245,240,232,.35); border-radius: var(--r-pill);
  padding: 4px; transition: border-color .4s;
}
.nav.solid .lang-toggle { border-color: rgba(27,58,45,.22); }
.lang-toggle button {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--cream);
  padding: 5px 11px; border-radius: var(--r-pill); transition: all .25s;
}
.nav.solid .lang-toggle button { color: var(--forest); }
.lang-toggle button.active { background: var(--terra); color: var(--white); }
.nav.solid .lang-toggle button.active { color: var(--white); }

.hamburger { display: none; width: 34px; height: 34px; color: var(--cream); }
.nav.solid .hamburger { color: var(--forest); }

/* ============ HERO ============ */
.hero {
  background: var(--forest-dk); color: var(--cream);
  min-height: 100vh; padding: 132px 0 60px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero .sun-wm {
  position: absolute; top: 50%; right: -120px; transform: translateY(-50%);
  width: 620px; opacity: .07; pointer-events: none; z-index: 0;
}
.hero .grain { position: absolute; inset: 0; opacity: .03; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: graindrift 8s steps(6) infinite;
}
@keyframes graindrift { 0%{transform:translate(0,0)} 100%{transform:translate(-30px,20px)} }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero-badge .dia { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.hero h1 {
  font-size: clamp(44px, 6vw, 80px); font-weight: 700; line-height: 1.0; color: var(--cream);
  letter-spacing: -.015em; margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede { font-size: 18px; color: rgba(245,240,232,.80); max-width: 520px; line-height: 1.6; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }

.hero-ie { margin: 40px 0 30px; max-width: 460px; }
.trust-bar { display: flex; align-items: center; gap: 26px; }
.trust-item { flex: none; }
.trust-item .num { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 38px; line-height: 1; color: var(--gold); white-space: nowrap; }
.trust-item .lab { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: rgba(245,240,232,.62); margin-top: 6px; max-width: 130px; }
.trust-sep { width: 9px; height: 9px; background: var(--terra); transform: rotate(45deg); flex: none; }

.scroll-ind { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index:2;
  display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(245,240,232,.5); }
.scroll-ind span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-ind .arr { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============ WHATSAPP PHONE ============ */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-wrap::after {
  content: ""; position: absolute; width: 80%; height: 80%; left: 18%; top: 14%;
  background: radial-gradient(circle, rgba(196,98,45,.45), transparent 65%);
  filter: blur(50px); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: 318px; background: #0b141a; border-radius: 38px; padding: 11px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.04);
}
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: #0b141a; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen { background: #0b141a; border-radius: 28px; overflow: hidden; }
.wa-top { background: #1f2c34; padding: 30px 14px 12px; display: flex; align-items: center; gap: 11px; }
.wa-av { width: 38px; height: 38px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; color: #fff; flex: none; }
.wa-av svg { width: 20px; height: 20px; }
.wa-name { color: #e9edef; font-size: 14.5px; font-weight: 600; line-height: 1.1; }
.wa-status { color: #8696a0; font-size: 11.5px; }
.wa-call { margin-left: auto; display: flex; gap: 18px; color: #aebac1; }
.wa-call svg { width: 19px; height: 19px; }
.wa-body {
  background: #0b141a;
  background-image:
    linear-gradient(rgba(11,20,26,.94), rgba(11,20,26,.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='%23ffffff' fill-opacity='.03'%3E%3Cpath d='M30 18l3 3-3 3-3-3z'/%3E%3Ccircle cx='12' cy='48' r='2'/%3E%3Ccircle cx='48' cy='10' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  padding: 16px 12px; height: 372px; overflow: hidden; display: flex; flex-direction: column; gap: 9px; justify-content: flex-end;
}
.wa-msg {
  max-width: 80%; padding: 8px 11px 7px; border-radius: 9px; font-size: 13.5px; line-height: 1.38;
  position: relative; opacity: 1; transform-origin: bottom;
  animation: msgpop .32s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes msgpop { from { opacity: .2; transform: translateY(8px) scale(.96); } to { opacity: 1; transform: none; } }
.wa-msg .t { display: block; }
.wa-msg .meta { display: block; font-size: 10px; text-align: right; margin-top: 2px; opacity: .6; }
.wa-in  { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.wa-out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }
.wa-out .meta { color: #aadfc4; }
.wa-quick { display: flex; flex-direction: column; gap: 5px; margin-top: 3px; }
.wa-quick button { background: #1c2b25; color: #6fd0a8; border: 1px solid rgba(111,208,168,.25); border-radius: 7px; padding: 7px; font-size: 12.5px; font-weight: 600; }
.wa-typing { align-self: flex-start; background: #202c33; border-radius: 9px; padding: 11px 13px; display: inline-flex; gap: 4px; }
.wa-typing i { width: 7px; height: 7px; border-radius: 50%; background: #8696a0; animation: tdot 1.2s infinite; }
.wa-typing i:nth-child(2){ animation-delay: .2s; } .wa-typing i:nth-child(3){ animation-delay: .4s; }
@keyframes tdot { 0%,60%,100%{opacity:.3; transform:translateY(0)} 30%{opacity:1; transform:translateY(-3px)} }

/* ============ DIFFERENTIATORS ============ */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.diff-card {
  background: var(--white); border-radius: var(--r-card); padding: 36px 34px;
  border-top: 3px solid var(--forest); box-shadow: var(--sh-rest);
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.diff-card .corner { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; opacity: .9; }
.diff-card .ico { width: 52px; height: 52px; border-radius: 12px; background: var(--peach); color: var(--terra); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.diff-card .ico svg { width: 26px; height: 26px; }
.diff-card h3 { font-size: 25px; margin-bottom: 12px; color: var(--forest); }
.diff-card p { color: #50524f; font-size: 15.5px; }

/* ============ SECTORS ============ */
.sector-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 54px; }
.sector-card {
  background: var(--forest-lt); border-radius: var(--r-card); padding: 30px 26px;
  border-top: 3px solid var(--gold); position: relative;
  display: flex; flex-direction: column; min-height: 290px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.sector-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.sector-card .s-ico { width: 50px; height: 50px; color: var(--gold); margin-bottom: 20px; }
.sector-card .s-ico svg { width: 100%; height: 100%; }
.sector-card h3 { font-size: 26px; color: var(--cream); margin-bottom: 14px; }
.sector-card .pain { font-size: 14px; color: rgba(245,240,232,.66); line-height: 1.5; margin-bottom: 10px; }
.sector-card .val { font-size: 14px; color: var(--terra); font-weight: 600; line-height: 1.5; margin-bottom: 18px; }
.sector-card .more { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; position: relative; width: fit-content; }
.sector-card .more::after { content:""; position:absolute; left:0; bottom:-3px; height:1.5px; width:100%; background: var(--terra); transform: scaleX(.0); transform-origin:left; transition: transform .3s; }
.sector-card:hover .more::after { transform: scaleX(1); }
.sector-card .more svg { width: 15px; height: 15px; transition: transform .3s; }
.sector-card:hover .more svg { transform: translateX(4px); }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; align-items: start; }
.step { text-align: left; position: relative; }
.step .illus { width: 76px; height: 76px; color: var(--terra); margin-bottom: 22px; }
.step .illus svg { width: 100%; height: 100%; }
.step .n { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--terra); font-weight: 600; }
.step h3 { font-size: 27px; color: var(--forest); margin: 4px 0 12px; }
.step p { color: #4d4f4b; font-size: 15.5px; }
.step .connector { position: absolute; top: 34px; right: -28px; width: 56px; height: 16px; color: var(--terra); opacity: .55; }
.step:last-child .connector { display: none; }

.timeline { margin-top: 60px; background: var(--white); border-radius: var(--r-feature); padding: 38px 40px 34px; box-shadow: var(--sh-rest); }
.tl-row { display: flex; position: relative; }
.tl-row::before { content: ""; position: absolute; top: 8px; left: 12.5%; right: 12.5%; height: 2px; background: repeating-linear-gradient(90deg, var(--terra) 0 6px, transparent 6px 12px); opacity: .45; z-index: 0; }
.tl-step { flex: 1; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.tl-step .dot { width: 16px; height: 16px; background: var(--terra); transform: rotate(45deg); box-shadow: 0 0 0 5px var(--white); }
.tl-step.done .dot { background: var(--forest); }
.tl-step .day { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--forest); line-height: 1; }
.tl-step .lab2 { font-size: 13px; color: #6a6c68; }

/* ============ TESTIMONIALS ============ */
.tcols { columns: 3; column-gap: 24px; margin-top: 54px; }
.tcard {
  background: var(--white); border-radius: var(--r-card); padding: 30px 30px 26px;
  box-shadow: var(--sh-rest); border: 1px solid var(--line-cream);
  break-inside: avoid; margin-bottom: 24px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh-hover); }
.tcard .corner { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; opacity: .2; }
.tcard .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tcard .quote { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.4; color: var(--charcoal); margin-bottom: 22px; }
.tcard .who { display: flex; flex-direction: column; gap: 1px; }
.tcard .who .nm { font-weight: 600; font-size: 14px; color: var(--forest); }
.tcard .who .bz { font-size: 13px; color: #74766f; }
.tcard .tag { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; width: fit-content;
  background: var(--peach); color: var(--terra-dk); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); }

/* ============ PRICING ============ */
.pricing { background: var(--white); }
.wave-top, .wave-bottom { position: absolute; left: 0; right: 0; height: 14px; background-repeat: repeat-x; background-position: center; opacity: .65; }
.wave-top { top: 0; }
.wave-bottom { bottom: 0; transform: scaleY(-1); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 44px 0 40px; }
.tab {
  font-size: 15px; font-weight: 600; color: var(--forest);
  padding: 11px 24px; border-radius: var(--r-pill); border: 1.5px solid var(--line-cream);
  transition: all .25s; position: relative; display: inline-flex; align-items: center; gap: 8px;
}
.tab .em { font-size: 16px; }
.tab:hover { border-color: var(--terra); }
.tab.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; max-width: 1080px; margin: 0 auto; }
.tier {
  background: var(--white); border: 1.5px solid var(--line-cream); border-radius: var(--r-feature);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-terra); border-color: var(--terra); }
.tier.featured {
  background: var(--forest); color: var(--cream); border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(27,58,45,.28); transform: translateY(-10px);
}
.tier.featured:hover { transform: translateY(-14px); }
.tier.featured .corner { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; }
.tier .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--forest-dk);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 6px 16px; border-radius: var(--r-pill); white-space: nowrap; }
.tier .t-name { font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.tier.featured .t-name { color: var(--gold); }
.tier .t-sub { font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--forest); margin-bottom: 20px; }
.tier.featured .t-sub { color: var(--cream); }
.tier .price { display: block; margin-bottom: 2px; }
.tier .price .amt { font-family: var(--serif); font-size: 46px; font-weight: 700; line-height: 1; color: var(--forest); }
.tier.featured .price .amt { color: var(--cream); }
.tier .price .per { display: block; font-size: 14px; color: #74766f; white-space: nowrap; margin-top: 5px; letter-spacing: .02em; }
.tier.featured .price .per { color: rgba(245,240,232,.7); }
.tier .setup { font-size: 13.5px; color: #74766f; margin-bottom: 22px; white-space: nowrap; }
.tier.featured .setup { color: rgba(245,240,232,.65); }
.tier .feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.tier .feat { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.4; align-items: flex-start; }
.tier .feat svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.tier .feat.yes { color: #3a3c39; } .tier .feat.yes svg { color: var(--sage); }
.tier .feat.no  { color: #b1ada4; } .tier .feat.no svg { color: #cfcabf; }
.tier.featured .feat.yes { color: rgba(245,240,232,.92); } .tier.featured .feat.yes svg { color: var(--gold); }
.tier.featured .feat.no { color: rgba(245,240,232,.4); } .tier.featured .feat.no svg { color: rgba(245,240,232,.3); }
.tier .best { font-size: 13px; font-style: italic; color: #74766f; margin-bottom: 18px; min-height: 36px; }
.tier.featured .best { color: rgba(245,240,232,.7); }
.tier .btn { width: 100%; justify-content: center; }
.price-note { max-width: 720px; margin: 36px auto 0; text-align: center; font-size: 13px; font-style: italic; color: #74766f; line-height: 1.6; }

/* ============ ABOUT ============ */
.about { background: var(--forest-dk); color: var(--cream); }
.about .sun-wm { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); width: 560px; opacity: .07; z-index: 0; pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-copy h2 { font-size: clamp(30px,4vw,46px); color: var(--cream); margin-bottom: 30px; max-width: 15ch; line-height: 1.08; }
.about-copy p { color: rgba(245,240,232,.78); font-size: 16.5px; line-height: 1.7; margin: 0 0 18px; max-width: 540px; }
.founders { display: flex; flex-direction: column; gap: 22px; }
.founder { background: var(--forest-lt); border-radius: var(--r-card); padding: 24px; display: flex; gap: 20px; align-items: flex-start; border-left: 3px solid var(--gold); }
.founder .photo { width: 96px; height: 116px; border-radius: 8px; flex: none; }
.founder .f-role { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.founder h3 { font-size: 25px; color: var(--cream); margin: 3px 0 8px; }
.founder .f-bio { font-size: 14px; color: rgba(245,240,232,.74); line-height: 1.55; margin-bottom: 10px; }
.founder .f-detail { font-size: 13.5px; font-style: italic; color: var(--sage); }
.guarantee { margin-top: 24px; background: var(--forest-lt); border-radius: var(--r-card); padding: 22px 26px; display: flex; gap: 16px; align-items: center; border: 1px solid rgba(212,168,75,.3); }
.guarantee .shield { width: 38px; height: 38px; color: var(--gold); flex: none; }
.guarantee p { margin: 0; font-size: 15px; color: var(--cream); line-height: 1.5; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line-cream); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; font-size: 18px; font-weight: 600; color: var(--forest); font-family: var(--sans); transition: padding .3s, color .25s; }
.faq-q:hover { color: var(--terra); }
.faq-item.open .faq-q { color: var(--terra); }
.faq-q .pm { width: 22px; height: 22px; flex: none; position: relative; transition: transform .3s; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: currentColor; border-radius: 2px; }
.faq-q .pm::before { width: 100%; height: 2px; top: 10px; left: 0; }
.faq-q .pm::after { width: 2px; height: 100%; left: 10px; top: 0; transition: transform .3s; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-item.open { border-left: 3px solid var(--terra); padding-left: 18px; margin-left: -21px; }
.faq-a-inner { padding: 0 4px 26px; font-size: 16px; color: #4d4f4b; line-height: 1.7; max-width: 700px; }

/* ============ FINAL CTA ============ */
.cta-final { background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%); color: var(--white); overflow: hidden; }
.cta-final .sun-wm { position: absolute; bottom: -160px; right: -120px; width: 560px; opacity: .10; z-index: 0; pointer-events: none; }
.cta-ie-top, .cta-ie-bottom { position: absolute; left: 0; right: 0; height: 26px; background-repeat: repeat-x; background-position: center; opacity: .35; z-index: 1; }
.cta-ie-top { top: 26px; } .cta-ie-bottom { bottom: 26px; }
.cta-head { text-align: center; max-width: 640px; margin: 0 auto 50px; position: relative; z-index: 2; }
.cta-head h2 { font-size: clamp(34px,5vw,56px); color: var(--white); margin-bottom: 18px; }
.cta-head p { font-size: 18px; color: rgba(255,255,255,.86); line-height: 1.6; }
.cta-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: stretch; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.cta-card { background: var(--cream); border-radius: var(--r-feature); padding: 36px; color: var(--charcoal); }
.cta-card h3 { font-size: 26px; color: var(--forest); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--charcoal);
  padding: 12px 14px; border: 1.5px solid var(--line-cream); border-radius: var(--r-input);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(196,98,45,.12); }
.field textarea { resize: vertical; min-height: 80px; }
.cta-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.cta-divider { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-divider .ln { width: 1.5px; flex: 1; background: rgba(255,255,255,.3); }
.cta-divider .or { font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(255,255,255,.9); }
.cta-wa { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; }
.cta-wa h3 { font-size: 26px; color: var(--forest); margin-bottom: 10px; }
.cta-wa .wa-sub { color: #4d4f4b; font-size: 15px; margin-bottom: 22px; }
.cta-wa .num { font-family: var(--serif); font-size: 26px; color: var(--forest); margin-bottom: 22px; }
.form-ok { display: none; text-align: center; padding: 30px 0; }
.form-ok.show { display: block; }
.form-ok .ok-ico { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--sage); }
.form-ok h3 { margin-bottom: 8px; }

/* ============ FOOTER ============ */
.footer { background: var(--charcoal); color: var(--cream); padding: 0 0 36px; position: relative; }
.footer-ie { height: 24px; background-repeat: repeat-x; background-position: center; opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; }
.footer .logo .word { color: var(--cream); }
.footer .f-tag { margin-top: 18px; color: rgba(245,240,232,.6); font-size: 14.5px; max-width: 280px; line-height: 1.6; }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; font-weight: 600; }
.footer .f-links { display: flex; flex-direction: column; gap: 11px; }
.footer .f-links a { font-size: 14.5px; color: rgba(245,240,232,.72); transition: color .2s; width: fit-content; }
.footer .f-links a:hover { color: var(--terra); }
.footer .f-contact { font-size: 14.5px; color: rgba(245,240,232,.72); line-height: 1.9; }
.footer .f-contact .hi { color: var(--cream); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(245,240,232,.12); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom .copy { font-size: 13.5px; color: rgba(245,240,232,.55); }
.footer-bottom .right { display: flex; align-items: center; gap: 16px; }
.footer-bottom .ros { width: 24px; height: 24px; opacity: .8; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .phone-wrap { transform: scale(.92); }
  .diff-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step .connector { display: none; }
  .tcols { columns: 2; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; }
  .tier.featured { transform: none; } .tier.featured:hover { transform: translateY(-4px); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-divider { flex-direction: row; }
  .cta-divider .ln { width: auto; height: 1.5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-right .btn-primary { display: none; }
  .tcols { columns: 1; }
  .sector-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-wrap: wrap; gap: 16px; }
  .timeline { padding: 24px 18px; }
  .tl-step .day { font-size: 16px; }
  .tl-step .lab2 { font-size: 11px; }
}

/* ============ TWEAKS: folk-motif intensity ============ */
html.folk-subtle .ie-divider { opacity: .5; }
html.folk-subtle .weave { opacity: .025; }
html.folk-subtle .sun-wm { opacity: .035; }
html.folk-subtle .cta-ie-top, html.folk-subtle .cta-ie-bottom { opacity: .2; }
html.folk-subtle .footer-ie { opacity: .35; }
html.folk-rich .weave { opacity: .1; }
html.folk-rich .sun-wm { opacity: .13; }
html.folk-rich .cta-ie-top, html.folk-rich .cta-ie-bottom { opacity: .5; }
html.folk-rich .footer-ie { opacity: .85; }
