/* ════════════════════════════════════════════════════════
   dofav-public.css — shared styles for landing + auth pages
   ════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #F6F1E9;
  color: #1A2535;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --cream:   #F6F1E9;
  --cream2:  #EDE7DC;
  --cream3:  #E4DCCF;
  --white:   #FFFCF7;
  --ink:     #0E1720;
  --ink2:    #1A2535;
  --text2:   #566070;
  --text3:   #8E9BAD;
  --blue:    #2563EB;
  --blue2:   #1D4ED8;
  --blue-d:  rgba(37,99,235,.09);
  --blue-g:  rgba(37,99,235,.22);
  --green:   #059669;
  --green-d: rgba(5,150,105,.09);
  --gold:    #D97706;
  --gold-d:  rgba(217,119,6,.09);
  --purple:  #7C3AED;
  --purple-d:rgba(124,58,237,.08);
  --coral:   #DC4B2F;
  --coral-d: rgba(220,75,47,.08);
  --border:  rgba(14,23,32,.07);
  --border2: rgba(14,23,32,.13);
  --sh:  0 1px 3px rgba(14,23,32,.05), 0 4px 16px rgba(14,23,32,.06);
  --shm: 0 4px 12px rgba(14,23,32,.07), 0 16px 40px rgba(14,23,32,.08);
  --shl: 0 8px 24px rgba(14,23,32,.09), 0 32px 64px rgba(14,23,32,.1);
  --r:   18px;
  --rsm: 12px;
  --rlg: 26px;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.df-container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .df-container { padding: 0 20px; } }

/* ── REVEAL ANIMATIONS ─────────────────────────────────── */
.df-reveal { opacity: 0; transform: translateY(26px); transition: all .65s cubic-bezier(.16,1,.3,1); }
.df-reveal.in { opacity: 1; transform: translateY(0); }
@keyframes dfFadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* ── NAV ───────────────────────────────────────────────── */
.df-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 52px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(246,241,233,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.df-nav__logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 24px;
  color: var(--ink); text-decoration: none; letter-spacing: -.5px;
}
.df-nav__logo span { color: var(--blue); }
.df-nav__links { display: flex; gap: 26px; align-items: center; }
.df-nav__links a { font-size: 14px; font-weight: 500; color: var(--text2); text-decoration: none; transition: color .2s; }
.df-nav__links a:hover { color: var(--ink); }
.df-nav__cta {
  background: var(--ink) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 100px; font-weight: 600 !important;
  transition: all .2s !important;
}
.df-nav__cta:hover { background: var(--ink2) !important; box-shadow: var(--shm); transform: translateY(-1px); }
.df-nav__mobile-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }
@media (max-width: 768px) {
  .df-nav { padding: 14px 20px; }
  .df-nav__links { display: none; }
  .df-nav__mobile-btn { display: block; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.df-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 100px; border: none;
  cursor: pointer; text-decoration: none;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.df-btn--blue { background: var(--blue); color: #fff; }
.df-btn--blue:hover { background: var(--blue2); transform: translateY(-3px); box-shadow: 0 16px 40px var(--blue-g); }
.df-btn--dark { background: var(--ink); color: #fff; }
.df-btn--dark:hover { background: var(--ink2); transform: translateY(-3px); box-shadow: var(--shl); }
.df-btn--outline { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); }
.df-btn--outline:hover { color: var(--ink); background: var(--white); box-shadow: var(--sh); }
.df-btn--ghost { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); }
.df-btn--ghost:hover { color: var(--ink); background: var(--white); box-shadow: var(--sh); }
.df-btn--white { background: var(--white); color: var(--ink); }
.df-btn--white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shl); }
.df-btn--wh-ghost { background: transparent; color: rgba(255,255,255,.6); border: 1.5px solid rgba(255,255,255,.2); }
.df-btn--wh-ghost:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }
.df-btn--sm { padding: 8px 16px; font-size: 13px; }
.df-btn--full { width: 100%; justify-content: center; }
.df-btn--danger { background: transparent; color: #DC2626; border: 1px solid rgba(220,38,38,.2); }
.df-btn--danger:hover { background: rgba(220,38,38,.07); }
.df-arr { transition: transform .2s; }
.df-btn:hover .df-arr { transform: translateX(4px); }

/* ── SECTION SHARED ────────────────────────────────────── */
.df-section { padding: 96px 0; position: relative; z-index: 1; }
.df-section--white  { background: var(--white); }
.df-section--cream2 { background: var(--cream2); }
.df-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.df-tag::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }
.df-section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.05; color: var(--ink); margin-bottom: 14px;
}
.df-section__sub { font-size: 17px; color: var(--text2); font-weight: 300; line-height: 1.7; max-width: 520px; }
.df-section__head { margin-bottom: 48px; }
.df-section__head--center { text-align: center; }
.df-section__head--center .df-tag { justify-content: center; }
.df-section__head--center .df-section__sub { margin: 0 auto; }
.df-section__head--split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }

/* ── HERO ──────────────────────────────────────────────── */
.df-hero {
  min-height: 100vh; padding: 120px 0 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37,99,235,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 85%, rgba(217,119,6,.06) 0%, transparent 60%),
    var(--cream);
}
.df-hero .df-container { display: flex; flex-direction: column; align-items: center; }
.df-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border2); box-shadow: var(--sh);
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--text2); margin-bottom: 30px;
  animation: dfFadeUp .6s ease both;
}
.df-live-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; animation: dfLivePulse 2s ease-in-out infinite; }
@keyframes dfLivePulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.df-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 88px); font-weight: 800;
  line-height: .96; letter-spacing: -3px; color: var(--ink);
  margin-bottom: 24px; animation: dfFadeUp .7s .1s ease both;
}
.df-hero__title em { font-style: normal; color: var(--blue); }
.df-hero__desc {
  font-size: clamp(15px, 2vw, 18px); color: var(--text2);
  max-width: 560px; line-height: 1.75; font-weight: 300;
  margin-bottom: 40px; animation: dfFadeUp .7s .2s ease both;
}
.df-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: dfFadeUp .7s .3s ease both; }
.df-hero__stats {
  display: flex; margin-top: 60px;
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  box-shadow: var(--sh); overflow: hidden; animation: dfFadeUp .7s .45s ease both;
}
.df-stat { padding: 22px 36px; text-align: center; flex: 1; }
.df-stat + .df-stat { border-left: 1px solid var(--border); }
.df-stat__num { display: block; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--ink); }
.df-stat__num em { font-style: normal; color: var(--blue); }
.df-stat__label { display: block; font-size: 11px; color: var(--text3); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }
.df-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text3); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; animation: dfFadeUp 1s .8s ease both; }
.df-scroll-line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--text3), transparent); animation: dfScrollAnim 2s ease-in-out infinite; }
@keyframes dfScrollAnim { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── HOW IT WORKS STEPS ────────────────────────────────── */
.df-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.df-step-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.df-step-card::before {
  content: attr(data-n); position: absolute; top: -8px; right: 14px;
  font-family: 'Syne', sans-serif; font-size: 76px; font-weight: 800;
  color: var(--border2); line-height: 1; pointer-events: none;
}
.df-step-card:hover { transform: translateY(-5px); box-shadow: var(--shl); background: var(--white); }
.df-step-card__icon { width: 50px; height: 50px; background: var(--white); border: 1px solid var(--border); border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; box-shadow: var(--sh); }
.df-step-card h3 { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.df-step-card p { font-size: 13px; color: var(--text2); line-height: 1.7; font-weight: 300; }
.df-step-badge { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--blue); background: var(--blue-d); padding: 5px 14px; border-radius: 100px; }

/* ── FEATURES GRID ─────────────────────────────────────── */
.df-feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; border-radius: var(--rlg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh); }
.df-feat-item { background: var(--white); padding: 30px 34px; display: flex; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--border); transition: background .22s; position: relative; overflow: hidden; }
.df-feat-item:nth-child(odd) { border-right: 1px solid var(--border); }
.df-feat-item:nth-last-child(-n+2) { border-bottom: none; }
.df-feat-item:hover { background: var(--cream); }
.df-feat-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--blue); transition: width .3s cubic-bezier(.16,1,.3,1); }
.df-feat-item:hover::after { width: 100%; }
.df-feat-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--rsm); display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: var(--sh); }
.df-feat-icon--b  { background: var(--blue-d);   border: 1px solid rgba(37,99,235,.13); }
.df-feat-icon--g  { background: var(--green-d);  border: 1px solid rgba(5,150,105,.13); }
.df-feat-icon--go { background: var(--gold-d);   border: 1px solid rgba(217,119,6,.13); }
.df-feat-icon--p  { background: var(--purple-d); border: 1px solid rgba(124,58,237,.13); }
.df-feat-icon--c  { background: var(--coral-d);  border: 1px solid rgba(220,75,47,.13); }
.df-feat-icon--n  { background: var(--cream2);   border: 1px solid var(--border); }
.df-feat-body h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.df-feat-body p  { font-size: 13px; color: var(--text2); line-height: 1.7; font-weight: 300; }
.df-feat-tag { display: inline-block; margin-top: 9px; font-size: 11px; font-weight: 500; color: var(--text3); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; }

/* ── SPLIT LAYOUT (website builder) ───────────────────── */
.df-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; margin-top: 56px; }
.df-split__copy h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px,3.5vw,40px); font-weight: 800; letter-spacing: -1.2px; color: var(--ink); margin-bottom: 14px; }
.df-split__copy p  { font-size: 15px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.df-check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.df-check-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text2); }
.df-check-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--green-d); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; font-weight: 700; }

/* ── THEME PICKER ──────────────────────────────────────── */
.df-theme-picker { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shm); }
.df-theme-picker__bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text3); letter-spacing: .5px; }
.df-dots { display: flex; gap: 4px; }
.df-dots .r { width:8px;height:8px;border-radius:50%;background:#FF5F57;display:inline-block; }
.df-dots .y { width:8px;height:8px;border-radius:50%;background:#FFBD2E;display:inline-block; }
.df-dots .g { width:8px;height:8px;border-radius:50%;background:#28C840;display:inline-block; }
.df-theme-picker__body { padding: 18px; }
.df-themes-row { display: flex; gap: 10px; margin-bottom: 14px; }
.df-theme-thumb { flex: 1; border-radius: 10px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: all .22s; }
.df-theme-thumb.active { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-d); }
.df-theme-thumb:hover { transform: translateY(-3px); box-shadow: var(--shm); }
.df-th-preview { height: 72px; display: flex; flex-direction: column; gap: 4px; padding: 10px; }
.df-th-preview.t1 { background: linear-gradient(135deg,#0E1720 60%,#2563EB 100%); }
.df-th-preview.t2 { background: linear-gradient(135deg,#FFFCF7 60%,#D97706 100%); }
.df-th-preview.t3 { background: linear-gradient(135deg,#0F2417 60%,#059669 100%); }
.df-th-preview.t4 { background: linear-gradient(135deg,#F8F4FF 60%,#7C3AED 100%); }
.df-th-preview.t5 { background: linear-gradient(135deg,#1A1A2E 60%,#DC4B2F 100%); }
.df-th-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.4); }
.df-th-bar--s { width: 55%; }
.df-th-bar--b { height: 8px; width: 35%; border-radius: 3px; background: rgba(255,255,255,.65); }
.df-th-label { padding: 6px 8px; text-align: center; font-size: 10px; font-weight: 600; color: var(--text2); background: var(--white); border-top: 1px solid var(--border); }
.df-theme-selected { display: flex; align-items: center; justify-content: space-between; background: var(--white); border-radius: var(--rsm); padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--ink); }
.df-theme-ai-note { font-size: 11px; color: var(--blue); background: var(--blue-d); padding: 3px 10px; border-radius: 100px; }

/* ── PRICING PLANS ─────────────────────────────────────── */
.df-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.df-plan { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rlg); padding: 34px 30px; position: relative; overflow: hidden; transition: all .3s cubic-bezier(.16,1,.3,1); }
.df-plan:hover { transform: translateY(-6px); box-shadow: var(--shl); }
.df-plan--featured { background: var(--ink); border-color: var(--ink); }
.df-plan--featured:hover { box-shadow: 0 32px 64px rgba(14,23,32,.3); }
.df-plan__badge { position: absolute; top: 20px; right: 20px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.df-plan__name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.df-plan--featured .df-plan__name { color: rgba(255,255,255,.45); }
.df-plan__price { font-family: 'Syne', sans-serif; font-size: 50px; font-weight: 800; letter-spacing: -2px; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.df-plan--featured .df-plan__price { color: #fff; }
.df-plan__price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.df-plan__per { font-size: 14px; font-weight: 400; color: var(--text2); letter-spacing: 0; }
.df-plan--featured .df-plan__per { color: rgba(255,255,255,.45); }
.df-plan__desc { font-size: 13px; color: var(--text2); line-height: 1.6; font-weight: 300; margin: 6px 0 22px; }
.df-plan--featured .df-plan__desc { color: rgba(255,255,255,.55); }
.df-plan__domain { display: flex; align-items: center; justify-content: space-between; background: var(--cream); border: 1px solid var(--border); border-radius: var(--rsm); padding: 12px 14px; margin-bottom: 18px; }
.df-plan--featured .df-plan__domain { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
.df-plan__domain strong { display: block; font-size: 13px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.df-plan--featured .df-plan__domain strong { color: #fff; }
.df-plan__domain small { font-size: 11px; color: var(--text3); }
.df-plan--featured .df-plan__domain small { color: rgba(255,255,255,.4); }
.df-plan__domain-note { font-size: 11px; color: rgba(255,255,255,.3); }
.df-plan__hr { height: 1px; background: var(--border); border: none; margin-bottom: 20px; }
.df-plan--featured .df-plan__hr { background: rgba(255,255,255,.1); }
.df-plan__feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.df-plan__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text2); font-weight: 300; }
.df-plan--featured .df-plan__feats li { color: rgba(255,255,255,.7); }
.df-plan__feats li::before { content: '–'; flex-shrink: 0; font-weight: 500; color: var(--border2); }
.df-plan__feats li.y::before { content: '✓'; color: var(--green); }
.df-plan--featured .df-plan__feats li.y::before { color: #34D399; }
.df-plan__btn { display: block; width: 100%; padding: 14px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; text-align: center; text-decoration: none; cursor: pointer; transition: all .25s; border: none; }
.df-plan__btn--dark    { background: var(--ink);   color: #fff; }
.df-plan__btn--dark:hover { background: var(--ink2); box-shadow: var(--shm); }
.df-plan__btn--white   { background: #fff; color: var(--ink); }
.df-plan__btn--white:hover { background: var(--cream); box-shadow: var(--shm); }
.df-plan__btn--outline { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); }
.df-plan__btn--outline:hover { color: var(--ink); border-color: var(--ink); }
.df-toggle { position: relative; display: inline-block; width: 38px; height: 22px; }
.df-toggle input { opacity: 0; width: 0; height: 0; }
.df-toggle__track { position: absolute; inset: 0; background: var(--blue); border-radius: 11px; cursor: pointer; }
.df-toggle__track::before { content: ''; position: absolute; width: 16px; height: 16px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transform: translateX(16px); box-shadow: 0 1px 3px rgba(0,0,0,.2); }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.df-testi-wrap { overflow: hidden; }
.df-testi-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.df-testi-card { min-width: calc(33.333% - 14px); max-width: calc(33.333% - 14px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; box-shadow: var(--sh); flex-shrink: 0; transition: all .3s; }
.df-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shm); }
.df-testi-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.df-testi-quote { font-size: 14px; font-style: italic; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 22px; }
.df-testi-author { display: flex; align-items: center; gap: 12px; }
.df-testi-av { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-d); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.df-testi-av--g  { background: var(--green-d);  color: var(--green); }
.df-testi-av--go { background: var(--gold-d);   color: var(--gold); }
.df-testi-av--p  { background: var(--purple-d); color: var(--purple); }
.df-testi-av--c  { background: var(--coral-d);  color: var(--coral); }
.df-testi-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.df-testi-role { font-size: 12px; color: var(--text3); }
.df-testi-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.df-testi-arrow { width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: all .2s; color: var(--text2); }
.df-testi-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.df-testi-dots { display: flex; gap: 7px; }
.df-testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); cursor: pointer; transition: all .25s; }
.df-testi-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ── CTA BOX ───────────────────────────────────────────── */
.df-cta-box { background: var(--ink); border-radius: 30px; padding: 80px 52px; text-align: center; position: relative; overflow: hidden; }
.df-cta-box::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%); }
.df-cta-box h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px,5vw,50px); font-weight: 800; letter-spacing: -1.5px; color: #fff; margin-bottom: 16px; position: relative; }
.df-cta-box p { font-size: 17px; color: rgba(255,255,255,.55); font-weight: 300; max-width: 460px; margin: 0 auto 38px; position: relative; }
.df-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ────────────────────────────────────────────── */
.df-footer { padding: 48px 0; border-top: 1px solid var(--border); background: var(--white); }
.df-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.df-footer__logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); }
.df-footer__logo span { color: var(--blue); }
.df-footer__tagline { font-size: 14px; color: var(--text2); }
.df-footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.df-footer__links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color .2s; }
.df-footer__links a:hover { color: var(--blue); }
.df-footer__copy { font-size: 12px; color: var(--text3); }

/* ── SHARED FORM ELEMENTS ──────────────────────────────── */
.df-input {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid var(--border2);
  border-radius: var(--rsm); font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--ink); transition: all .2s; outline: none; appearance: none;
}
.df-input::placeholder { color: var(--text3); }
.df-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px var(--blue-d); }
.df-input--error   { border-color: #DC2626 !important; background: rgba(220,38,38,.06) !important; }
.df-input--success { border-color: var(--green) !important; }
.df-input--icon { padding-left: 44px; }
.df-input--sm { padding: 8px 12px; font-size: 13px; }
.df-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink2); margin-bottom: 7px; }
.df-req { color: var(--blue); margin-left: 2px; }
.df-hint { font-size: 12px; color: var(--text3); margin-top: 5px; font-weight: 300; }
.df-err { font-size: 12px; color: #DC2626; margin-top: 5px; display: none; align-items: center; gap: 5px; }
.df-err.show, .df-err[style*="flex"] { display: flex; }
.df-form-group { margin-bottom: 20px; }
.df-textarea { resize: vertical; min-height: 90px; }
.df-input-wrap { position: relative; }
.df-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 17px; pointer-events: none; }
.df-input-check { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.df-input-check.show { display: flex; }
.df-input-check.ok  { background: var(--green-d); color: var(--green); }
.df-input-check.bad { background: rgba(220,38,38,.08); color: #DC2626; }
.df-select { width: 100%; padding: 13px 40px 13px 16px; background: var(--cream); border: 1.5px solid var(--border2); border-radius: var(--rsm); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--ink); transition: all .2s; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238E9BAD' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }

/* ── NOTICE ────────────────────────────────────────────── */
.df-notice { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; border-radius: var(--rsm); margin-bottom: 24px; font-size: 14px; }
.df-notice--info { background: var(--blue-d); border: 1px solid rgba(37,99,235,.15); color: var(--blue); }
.df-notice strong { display: block; font-weight: 600; margin-bottom: 3px; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .df-steps, .df-plans { grid-template-columns: 1fr; }
  .df-feat-grid { grid-template-columns: 1fr; }
  .df-feat-item:nth-child(odd) { border-right: none; }
  .df-feat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .df-feat-item:last-child { border-bottom: none; }
  .df-split { grid-template-columns: 1fr; gap: 32px; }
  .df-hero__stats { flex-direction: column; }
  .df-stat + .df-stat { border-left: none; border-top: 1px solid var(--border); }
  .df-testi-card { min-width: 85%; max-width: 85%; }
  .df-cta-box { padding: 52px 24px; }
}
