/* =====================================================
   OraqoSoft — home.css
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ===================================================== */

:root {
  --cream:         #FDFCF8;
  --cream2:        #F7F5EF;
  --cream3:        #EFECe3;
  --white:         #FFFFFF;
  --forest:        #1C3D2E;
  --forest2:       #2A5A42;
  --forest3:       #3D7A5A;
  --forest-lt:     #E8F2EC;
  --forest-border: #B8D8C5;
  --sand:          #C9A96E;
  --charcoal:      #1A1814;
  --ink:           #2C2A26;
  --ink2:          #5C5A54;
  --ink3:          #9C9A94;
  --line:          rgba(0,0,0,.08);
  --line2:         rgba(0,0,0,.12);
  --r:    6px;
  --rl:   12px;
  --rxl:  20px;
  --sh:   0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --sh-lg:0 8px 40px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
a    { text-decoration: none; color: inherit; }
address { font-style: normal; }

.page        { display: none; }
.page.active { display: block; }

/* ════ NAV ════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  background: rgba(253,252,248,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; font-weight: 400;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; letter-spacing: -.01em;
}
.logo-mark {
  width: 28px; height: 28px; background: var(--forest);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-center { display: flex; gap: 2px; }
.nl {
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .83rem; font-weight: 500; color: var(--ink2);
  padding: 7px 16px; border-radius: var(--r);
  cursor: pointer; transition: .18s; letter-spacing: .01em;
}
.nl:hover  { color: var(--charcoal); background: var(--cream2); }
.nl.active { color: var(--forest); font-weight: 600; }

.nav-right-rel { position: relative; display: flex; align-items: center; gap: 8px; }

.btn-ghost {
  padding: 8px 18px;
  border: 1px solid var(--line2); background: transparent;
  color: var(--ink); border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: .18s; letter-spacing: .01em;
}
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); background: var(--forest-lt); }

.btn-primary {
  padding: 8px 20px; background: var(--forest); color: #fff; border: none;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: .18s; letter-spacing: .01em;
}
.btn-primary:hover { background: var(--forest2); }
.btn-xl { padding: 15px 32px !important; font-size: .92rem !important; border-radius: 8px !important; }

.btn-ghost-dark {
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,.25); background: transparent; color: rgba(255,255,255,.85);
  border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: .18s;
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost-dark.btn-xl { padding: 15px 32px !important; font-size: .92rem !important; border-radius: 8px !important; }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.1rem; color: var(--ink); cursor: pointer; padding: 6px;
}

/* ════ NAV USER CHIP ════ */
.nav-user-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--forest-lt); border: 1px solid var(--forest-border);
  padding: 5px 12px 5px 5px; border-radius: 100px;
  cursor: pointer; transition: .18s;
}
.nav-user-chip:hover { background: var(--cream2); }
.nav-user-av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--forest); color: #fff;
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
}
.nav-user-name { font-size: .78rem; font-weight: 600; color: var(--forest); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--rl); box-shadow: var(--sh-lg);
  min-width: 188px; z-index: 300; display: none; overflow: hidden;
}
.nav-user-menu.open { display: block; }
.num-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: .82rem; color: var(--ink);
  cursor: pointer; transition: .15s; background: none; border: none;
  width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.num-item:hover { background: var(--cream); color: var(--charcoal); }
.num-item.danger { color: #DC2626; }
.num-item.danger:hover { background: #FEF2F2; }
.num-item i { width: 16px; text-align: center; font-size: .8rem; color: var(--ink3); }
.num-item.danger i { color: #DC2626; }
.num-divider { height: 1px; background: var(--line); margin: 4px 0; }

/* ════ MOBILE MENU ════ */
.mobile-menu {
  position: fixed; top: 0; right: -100%; z-index: 300;
  width: 280px; height: 100vh; background: var(--white);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 12px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,.4);
}
.mobile-overlay.open { display: block; }
.mm-close {
  align-self: flex-end; background: var(--cream2); border: none; border-radius: 6px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .9rem; color: var(--ink2); margin-bottom: .5rem;
}
.mm-link {
  background: none; border: none; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line); cursor: pointer;
}
.mm-btn-ghost, .mm-btn-primary {
  margin-top: 4px; padding: 12px 0;
  border-radius: var(--r); font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 600; cursor: pointer; transition: .18s; text-align: center;
}
.mm-btn-ghost  { border: 1px solid var(--line2); background: transparent; color: var(--ink); }
.mm-btn-ghost:hover  { border-color: var(--forest); color: var(--forest); background: var(--forest-lt); }
.mm-btn-primary { background: var(--forest); color: #fff; border: none; }
.mm-btn-primary:hover { background: var(--forest2); }

/* ════ HERO ════ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: 64px; background: var(--cream);
}
.hero-left { padding: 80px 5vw 80px 6vw; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 2rem;
  padding: 5px 12px 5px 5px;
  background: var(--forest-lt); border: 1px solid var(--forest-border); border-radius: 100px;
}
.hero-tag-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.hero-tag-dot i { font-size: .55rem; color: #fff; }
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  line-height: 1.03; letter-spacing: -.03em;
  color: var(--charcoal); margin-bottom: 1.6rem; font-weight: 400;
}
h1 em { font-style: italic; color: var(--forest); }
.hero-desc { font-size: .98rem; color: var(--ink2); line-height: 1.8; max-width: 440px; margin-bottom: 2.8rem; min-height: 3rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-proof { display: flex; align-items: center; gap: 16px; }
.proof-faces { display: flex; }
.face {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--cream);
  font-size: .65rem; font-weight: 600; display: flex; align-items: center; justify-content: center;
  margin-left: -10px; color: #fff; font-family: 'DM Serif Display', serif;
}
.face:first-child { margin-left: 0; }
.f1{background:var(--forest)} .f2{background:#7C3AED} .f3{background:#B45309} .f4{background:#9F1239}
.proof-text { font-size: .78rem; color: var(--ink2); }
.proof-text strong { color: var(--charcoal); font-weight: 600; display: block; }
.hero-right {
  height: 100vh; position: relative; background: var(--forest); overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; padding: 80px 5vw 80px 4vw;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-right-label { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2rem; position: relative; }
.profile-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2.5rem; position: relative; }
.pcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rl); padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1rem; transition: .2s;
}
.pcard:hover { background: rgba(255,255,255,.09); }
.pcard.featured { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.pc-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1rem; flex-shrink: 0; color: #fff; }
.pc-info { flex: 1; min-width: 0; }
.pc-name { font-size: .88rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-role { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.pc-badge { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.avail { background: rgba(74,222,128,.15); color: #4ADE80; border: 1px solid rgba(74,222,128,.2); }
.hero-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: var(--rl); overflow: hidden; border: 1px solid rgba(255,255,255,.08); position: relative;
}
.hm { background: rgba(255,255,255,.04); padding: 1.3rem 1rem; text-align: center; }
.hm-v { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: #fff; line-height: 1; }
.hm-l { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ════ TICKER ════ */
.ticker-band {
  background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; overflow: hidden; display: flex; align-items: center;
}
.ticker-label { font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--ink3); padding: 0 3vw; flex-shrink: 0; white-space: nowrap; }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track { display: flex; gap: 32px; white-space: nowrap; animation: tickerScroll 22s linear infinite; }
.ticker-track span { font-size: .72rem; font-weight: 500; color: var(--ink2); letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.ticker-track span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--forest3); flex-shrink: 0; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════ ABOUT STRIP ════ */
.about-strip {
  background: var(--forest); padding: 60px 6vw;
  display: flex; align-items: center; gap: 6rem; overflow: hidden; position: relative;
}
.about-strip::after {
  content: '"'; font-family: 'DM Serif Display', serif; font-size: 18rem;
  color: rgba(255,255,255,.04); position: absolute; right: 6vw; top: -3rem; line-height: 1; pointer-events: none;
}
.as-quote { font-family: 'DM Serif Display', serif; font-size: clamp(1.1rem,1.8vw,1.6rem); color: #fff; line-height: 1.5; letter-spacing: -.02em; font-style: italic; max-width: 520px; flex: 1; }
.as-stats { display: flex; gap: 4rem; flex-shrink: 0; }
.as-stat span { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: #fff; display: block; line-height: 1; letter-spacing: -.03em; }
.as-stat p { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }
.as-stat span sup { font-size: 1.4rem; vertical-align: super; }

/* ════ SECTIONS ════ */
section { padding: 96px 6vw; }
.section-label {
  font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--forest);
  display: flex; align-items: center; gap: 10px; margin-bottom: .8rem;
}
.section-label::after { content: ''; width: 32px; height: 1px; background: var(--forest3); }
.section-label.center { justify-content: center; }
h2.sh { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem,2.8vw,2.8rem); line-height: 1.1; color: var(--charcoal); margin-bottom: 1rem; letter-spacing: -.025em; font-weight: 400; }
h2.sh em { font-style: italic; color: var(--forest); }
h2.sh.center { text-align: center; }
.sh-sub { font-size: .92rem; color: var(--ink2); line-height: 1.8; max-width: 480px; }
.sh-sub.ctr { text-align: center; margin: 0 auto 3.5rem; max-width: 520px; }

/* ════ PROCESS ════ */
.process-sec { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 4rem; border: 1px solid var(--line); border-radius: var(--rxl); overflow: hidden; }
.proc-step { padding: 3rem 2.5rem; position: relative; border-right: 1px solid var(--line); transition: .25s; }
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--cream); }
.proc-n { font-family: 'DM Serif Display', serif; font-size: 4rem; line-height: 1; position: absolute; top: 1.5rem; right: 2rem; }
.proc-ico { width: 48px; height: 48px; border-radius: 10px; background: var(--forest-lt); border: 1px solid var(--forest-border); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1.1rem; margin-bottom: 1.5rem; }
.proc-step h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: .6rem; letter-spacing: -.02em; font-weight: 400; }
.proc-step p { font-size: .82rem; color: var(--ink2); line-height: 1.65; }

/* ════ FEATURES ════ */
.feat-sec { background: var(--cream2); }
.feat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.feat-list { display: flex; flex-direction: column; margin-top: 2.5rem; border: 1px solid var(--line); border-radius: var(--rl); overflow: hidden; background: var(--white); }
.fi { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem 2rem; border-bottom: 1px solid var(--line); transition: .2s; }
.fi:last-child { border-bottom: none; }
.fi:hover { background: var(--cream); }
.fi-ico { width: 38px; height: 38px; border-radius: 8px; background: var(--forest-lt); border: 1px solid var(--forest-border); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.fi h4 { font-family: 'DM Serif Display', serif; font-size: .95rem; color: var(--charcoal); margin-bottom: .3rem; letter-spacing: -.01em; font-weight: 400; }
.fi p  { font-size: .8rem; color: var(--ink2); line-height: 1.6; }
.feat-vis { position: relative; width: 100%; height: 420px; }
.fv-card { position: absolute; background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); box-shadow: 0 4px 24px rgba(0,0,0,.07); padding: 1.6rem; }
.fv-main { width: 300px; top: 30px; left: 10px; }
.fv-side { width: 200px; bottom: 30px; right: 0; background: var(--forest); border-color: transparent; }
.fv-label { font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); margin-bottom: .6rem; }
.fv-label.fv-wt { color: rgba(255,255,255,.45); }
.fv-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 1rem; letter-spacing: -.01em; font-weight: 400; }
.fv-big { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.fv-wt { color: rgba(255,255,255,.9) !important; }
.fv-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1rem; }
.fv-tag { font-size: .65rem; font-weight: 500; padding: 3px 9px; border-radius: 4px; background: var(--forest-lt); color: var(--forest); border: 1px solid var(--forest-border); }
.fv-meta { display: flex; align-items: center; gap: 12px; font-size: .75rem; color: var(--ink2); }
.fv-meta i { font-size: .7rem; color: var(--sand); }
.avail-text { color: var(--forest); font-weight: 600; }
.avail-text i { font-size: .45rem !important; color: var(--forest) !important; }
.fv-bars { display: flex; flex-direction: column; gap: 10px; }
.fv-bar-row { display: flex; align-items: center; gap: 8px; }
.fv-bl { font-size: .62rem; color: rgba(255,255,255,.55); width: 55px; flex-shrink: 0; }
.fv-bg { flex: 1; height: 4px; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.fv-fill { height: 100%; background: rgba(255,255,255,.55); border-radius: 2px; }
.fv-bn { font-size: .7rem; color: rgba(255,255,255,.6); }

/* ════ STATS BAND ════ */
.stats-band { background: var(--charcoal); padding: 80px 6vw; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.07); border-radius: var(--rl); overflow: hidden; border: 1px solid rgba(255,255,255,.07); max-width: 960px; margin: 0 auto; }
.stat { background: var(--charcoal); padding: 2.5rem 1.5rem; text-align: center; transition: .2s; }
.stat:hover { background: #232119; }
.stat-n { font-family: 'DM Serif Display', serif; font-size: 3.2rem; color: #fff; line-height: 1; letter-spacing: -.04em; }
.stat-n sup { font-size: 1.5rem; vertical-align: super; }
.stat-l { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: .5rem; }

/* ════ PRICING ════ */
.price-sec { background: var(--cream); text-align: center; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 780px; margin: 0 auto; text-align: left; }
.pc2 { background: var(--white); border: 1px solid var(--line); border-radius: var(--rxl); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; transition: .25s; }
.pc2:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.pc2.feat { border-color: var(--forest); background: var(--forest); }
.pc2-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); width: fit-content; margin-bottom: -.5rem; }
.pc2-badge i { font-size: .55rem; }
.pc2-tier { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); }
.pc2.feat .pc2-tier { color: rgba(255,255,255,.5); }
.pc2-name { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--charcoal); letter-spacing: -.04em; font-weight: 400; line-height: 1.1; }
.pc2.feat .pc2-name { color: #fff; }
.pc2-desc { font-size: .82rem; color: var(--ink2); line-height: 1.65; }
.pc2.feat .pc2-desc { color: rgba(255,255,255,.6); }
.pc2-feats { list-style: none; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.pc2-feats li { display: flex; align-items: center; gap: .75rem; font-size: .82rem; color: var(--ink2); }
.pc2.feat .pc2-feats li { color: rgba(255,255,255,.75); }
.pc2-feats li i { font-size: .75rem; color: var(--forest); flex-shrink: 0; }
.pc2.feat .pc2-feats li i { color: rgba(255,255,255,.65); }
.pc2-btn { padding: 13px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; cursor: pointer; transition: .18s; border: 1.5px solid var(--forest); background: transparent; color: var(--forest); width: 100%; letter-spacing: .01em; }
.pc2-btn:hover { background: var(--forest-lt); }
.pc2.feat .pc2-btn { background: #fff; color: var(--forest); border-color: #fff; }
.pc2.feat .pc2-btn:hover { background: var(--forest-lt); }

/* ════ TALENT CAROUSEL ════ */
.talent-sec { background: var(--cream2); overflow: hidden; }
.talent-outer { overflow: hidden; margin: 0 -6vw; padding: 3rem 6vw 0; }
.talent-row { display: flex; gap: 1.2rem; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc { flex: 0 0 230px; background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 1.8rem; transition: .25s; }
.tc:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.tc-av { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: #fff; margin-bottom: 1rem; }
.tc h3 { font-family: 'DM Serif Display', serif; font-size: .95rem; color: var(--charcoal); margin-bottom: .15rem; letter-spacing: -.01em; font-weight: 400; }
.tc-role { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); margin-bottom: .7rem; }
.tc-skills { font-size: .73rem; color: var(--ink2); line-height: 1.55; }
.tc-stars { display: flex; gap: 2px; margin-top: .9rem; }
.tc-stars span { font-size: .75rem; color: var(--sand); }
.car-nav { display: flex; gap: 8px; margin-top: 2rem; }
.cnav { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line2); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink2); font-size: .82rem; transition: .2s; }
.cnav:hover { border-color: var(--forest); background: var(--forest-lt); color: var(--forest); }

/* ════ TESTIMONIALS ════ */
.test-sec { background: var(--white); }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3.5rem; }
.tcard { background: var(--cream); border: 1px solid var(--line); border-radius: var(--rl); padding: 2.2rem; transition: .25s; cursor: pointer; }
.tcard:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.tcard.on { border-color: var(--forest); background: var(--white); box-shadow: 0 4px 24px rgba(28,61,46,.08); }
.tq { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--forest); opacity: .15; line-height: 1; margin-bottom: .6rem; }
.tcard p { font-size: .85rem; color: var(--ink2); line-height: 1.78; font-style: italic; margin-bottom: 1.2rem; }
.tcard-author { display: flex; align-items: center; gap: .6rem; }
.ta-line { width: 20px; height: 1px; background: var(--forest3); }
.tcard-auth { font-size: .75rem; font-weight: 600; color: var(--forest); }
.tdots { display: flex; gap: 5px; justify-content: center; margin-top: 2rem; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--line2); cursor: pointer; transition: .3s; }
.tdot.on { background: var(--forest); width: 22px; border-radius: 3px; }

/* ════ CTA ════ */
.cta-sec { position: relative; background: var(--cream2); padding: 100px 6vw; overflow: hidden; text-align: center; }
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%231C3D2E' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.5vw,3.4rem); color: var(--charcoal); margin-bottom: 1rem; letter-spacing: -.035em; font-weight: 400; line-height: 1.1; }
.cta-inner h2 em { font-style: italic; color: var(--forest); }
.cta-inner p { font-size: .95rem; color: var(--ink2); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════ ABOUT PAGE ════ */
.about-page { padding: 96px 6vw; background: var(--cream); }
.ab-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 6rem; }
.ab-split .sh-sub { margin-bottom: 2rem; }
.ab-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.ab-numbers { background: var(--forest); border-radius: var(--rxl); padding: 2.8rem; color: #fff; }
.ab-num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.ab-n span { font-family: 'DM Serif Display', serif; font-size: 3rem; color: #fff; display: block; line-height: 1; letter-spacing: -.04em; }
.ab-n p { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }
.ab-divider { height: 1px; background: rgba(255,255,255,.12); margin-bottom: 2rem; }
.ab-qtext { font-family: 'DM Serif Display', serif; font-size: 1rem; color: rgba(255,255,255,.7); font-style: italic; line-height: 1.65; letter-spacing: -.01em; }
.values-section { margin-bottom: 5rem; }
.values-section .sh { margin-top: .8rem; margin-bottom: 0; }
.val-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.val-c { background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 2rem; transition: .25s; }
.val-c:hover { border-color: var(--forest-border); box-shadow: var(--sh); transform: translateY(-3px); }
.val-ico { width: 44px; height: 44px; border-radius: 10px; background: var(--forest-lt); border: 1px solid var(--forest-border); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1rem; margin-bottom: 1.2rem; }
.val-c h3 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: .4rem; letter-spacing: -.01em; font-weight: 400; }
.val-c p { font-size: .78rem; color: var(--ink2); line-height: 1.6; }
.con-section .sh { margin-top: .8rem; margin-bottom: 0; }
.con-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.con-c { background: var(--white); border: 1px solid var(--line); border-radius: var(--rl); padding: 2rem; display: flex; flex-direction: column; gap: .8rem; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.con-ico { width: 44px; height: 44px; border-radius: 10px; background: var(--forest-lt); border: 1px solid var(--forest-border); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1rem; }
.con-c h4 { font-family: 'DM Serif Display', serif; font-size: .95rem; color: var(--charcoal); font-weight: 400; }
.con-c p  { font-size: .82rem; color: var(--ink2); line-height: 1.65; }
.con-c a  { font-size: .82rem; color: var(--forest); font-weight: 600; }

/* ════ FOOTER ════ */
footer { background: var(--charcoal); }
.ftop { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 4rem; padding: 70px 6vw 55px; }
.flogo { font-family: 'DM Serif Display', serif; font-size: 1.45rem; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 1.1rem; letter-spacing: -.01em; font-weight: 400; }
.fbrand p { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 220px; margin-bottom: 1rem; }
.fbrand address { font-size: .75rem; color: rgba(255,255,255,.28); line-height: 1.9; margin-bottom: .6rem; }
.femail { font-size: .76rem; color: var(--forest-border); font-weight: 500; }
.socials { display: flex; gap: 6px; margin-top: 1rem; }
.socials a { width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); font-size: .75rem; transition: .2s; }
.socials a:hover { border-color: var(--forest-border); color: var(--forest-border); }
.fcol h4 { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.1rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.fcol ul li a { font-size: .79rem; color: rgba(255,255,255,.4); transition: .18s; }
.fcol ul li a:hover { color: rgba(255,255,255,.85); }
.fbot { border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 6vw; display: flex; justify-content: space-between; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ════ MODALS ════ */
.backdrop { position: fixed; inset: 0; z-index: 400; background: rgba(26,24,20,.55); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.backdrop.open { display: flex; }
.modal-box { background: var(--white); width: 100%; max-width: 510px; max-height: 92vh; overflow-y: auto; border-radius: var(--rxl); box-shadow: 0 30px 90px rgba(0,0,0,.22); animation: modalIn .4s cubic-bezier(.16,1,.3,1); }
.modal-box::-webkit-scrollbar { width: 3px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 2px; }
@keyframes modalIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.modal-hdr { display: flex; align-items: flex-start; justify-content: space-between; padding: 2rem 2.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.modal-tag { font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); margin-bottom: .3rem; }
.modal-hdr h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--charcoal); letter-spacing: -.03em; font-weight: 400; }
.modal-hdr-sub { font-size: .8rem; color: var(--ink2); margin-top: .25rem; line-height: 1.5; }
.modal-close { background: var(--cream2); border: none; border-radius: 6px; width: 32px; height: 32px; cursor: pointer; color: var(--ink2); font-size: .8rem; display: flex; align-items: center; justify-content: center; transition: .18s; }
.modal-close:hover { background: var(--cream3); color: var(--charcoal); }
.modal-body { padding: 2rem 2.4rem 2.4rem; }

/* Auth tabs */
.auth-tabs { display: flex; border-bottom: 1px solid var(--line); padding: 0 2.4rem; }
.auth-tab { background: none; border: none; border-bottom: 2.5px solid transparent; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; color: var(--ink3); padding: 1rem 0; margin-right: 2rem; cursor: pointer; transition: .18s; letter-spacing: .01em; }
.auth-tab.active { color: var(--forest); border-bottom-color: var(--forest); }
.auth-panel { display: none; }
.auth-panel.active { display: flex; flex-direction: column; gap: 1rem; }
.auth-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; border-radius: 6px; padding: 10px 14px; font-size: .8rem; font-weight: 500; display: none; align-items: center; gap: 8px; }
.auth-error.show { display: flex; }
.auth-error i { flex-shrink: 0; }
.auth-success { background: var(--forest-lt); border: 1px solid var(--forest-border); color: var(--forest); border-radius: 6px; padding: 10px 14px; font-size: .8rem; font-weight: 500; display: none; align-items: center; gap: 8px; }
.auth-success.show { display: flex; }
.pw-wrap { position: relative; }
.pw-wrap input { width: 100%; padding-right: 40px !important; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--ink3); cursor: pointer; font-size: .8rem; padding: 4px; }
.pw-toggle:hover { color: var(--charcoal); }
.auth-divider { display: flex; align-items: center; gap: .8rem; font-size: .72rem; color: var(--ink3); font-weight: 500; margin: .2rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.forgot-link { font-size: .75rem; color: var(--forest); font-weight: 600; background: none; border: none; cursor: pointer; text-align: right; display: block; margin-top: -.4rem; padding: 0; }
.forgot-link:hover { text-decoration: underline; }

/* Forms */
form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.fg { display: flex; flex-direction: column; gap: .3rem; }
.fg label { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.fg input, .fg select, .fg textarea { padding: 10px 14px; background: var(--cream); border: 1px solid var(--line2); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--charcoal); outline: none; transition: .18s; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(28,61,46,.08); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink3); }
.fg textarea { resize: vertical; min-height: 90px; }
.btn-submit { padding: 13px; background: var(--forest); border: none; border-radius: 8px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600; cursor: pointer; transition: .18s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; letter-spacing: .01em; }
.btn-submit:hover:not(:disabled) { background: var(--forest2); box-shadow: 0 4px 16px rgba(28,61,46,.25); }
.btn-submit:disabled { cursor: not-allowed; }

/* Toast */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; display: none; align-items: center; gap: 12px; padding: 14px 18px; background: var(--white); border: 1px solid var(--forest-border); border-radius: var(--r); box-shadow: var(--sh-lg); font-size: .82rem; color: var(--charcoal); max-width: 340px; animation: toastIn .35s ease; }
.toast.show { display: flex; }
@keyframes toastIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.toast-ico { color: var(--forest); font-size: 1rem; }
.toast button { background: none; border: none; color: var(--ink3); cursor: pointer; margin-left: auto; padding: 2px 4px; font-size: .8rem; }

/* ════ RESPONSIVE ════ */
@media (max-width:1024px) {
  .ftop { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .ftop .fbrand { grid-column: 1/-1; }
}
@media (max-width:960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 100px 5vw 60px; }
  .feat-inner { grid-template-columns: 1fr; }
  .feat-vis { display: none; }
  .ab-split { grid-template-columns: 1fr; gap: 3rem; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .con-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid var(--line); }
  .proc-step:last-child { border-bottom: none; }
  .about-strip { flex-direction: column; gap: 3rem; }
  .ftop { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ftop .fbrand { grid-column: 1/-1; }
}
@media (max-width:640px) {
  section { padding: 65px 5vw; }
  nav { padding: 0 5vw; }
  .hero-left { padding: 80px 5vw 50px; }
  .nav-center { display: none; }
  .nav-right-rel .btn-ghost,
  .nav-right-rel .btn-primary { display: none; }
  .nav-user-chip { display: flex !important; }
  .hamburger { display: flex; }
  .fbot { flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .con-grid { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr; }
  .about-strip { padding: 50px 5vw; }
  h1 { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-xl { width: 100%; text-align: center; }
}
@media (min-width:641px) {
  .hamburger { display: none; }
  .nav-right-rel .btn-ghost,
  .nav-right-rel .btn-primary { display: inline-flex; }
}
