/* =============================================================
   WHAMPLY MEDIA — MAIN STYLESHEET
   style.css
   Sections:
     1.  CSS Variables (edit colours/fonts here)
     2.  Reset & Base
     3.  Navbar
     4.  Hero Section
     5.  Hero Form Card
     6.  Hero Country Code Dropdown
     7.  Marquee / Ticker
     8.  Services Section (Tabs)
     9.  Why Choose Us
    10.  Process / Timeline
    11.  Footer
   ============================================================= */

/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Brand colours */
  --brand:          #F97316;
  --brand-dark:     #ea6500;
  --brand-darker:   #EA580C;
  --brand-light:    #fff4ed;
  --brand-faint:    rgba(249,115,22,0.09);

  /* Text */
  --text-primary:   #0f0f0f;
  --text-secondary: #374151;
  --text-muted:     #6B7280;
  --text-faint:     #9ca3af;

  /* Backgrounds */
  --bg-white:       #fff;
  --bg-cream:       #fffaf6;
  --bg-warm:        #FFF8F3;

  /* Borders */
  --border:         #e5e7eb;
  --border-brand:   rgba(249,115,22,0.2);

  /* Fonts */
  --font-body:      'Plus Jakarta Sans', sans-serif;
  --font-display:   'Clash Display', sans-serif;
  --font-heading:   'Manrope', sans-serif;

  /* Radii */
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      18px;

  /* Shadows */
  --shadow-brand:   0 8px 24px rgba(249,115,22,0.32);
  --shadow-card:    0 4px 32px rgba(249,115,22,0.09);

  /* Transitions */
  --transition:     0.2s ease;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }


/* ── 3. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.navbar-nav { flex: 1; }
.navbar-nav ul { display: flex; align-items: center; gap: 4px; }
.navbar-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar-link:hover,
.navbar-link--active {
  color: var(--brand);
  background: var(--brand-light);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.navbar-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.navbar-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
  padding: 12px 24px 20px;
}
.navbar-mobile.open { display: block; }
.navbar-mobile ul { display: flex; flex-direction: column; gap: 2px; }
.navbar-mobile-link {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar-mobile-link:hover,
.navbar-mobile-link--active { color: var(--brand); background: var(--brand-light); }
.navbar-mobile-cta {
  display: block;
  margin-top: 12px;
  text-align: center;
  background: var(--brand);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
}


/* ── 4. HERO SECTION ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 480px;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; right: 300px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}

/* LEFT */
.hero-left {
  padding: 56px 52px 56px 7%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-left-inner { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.1);
  border: 1.5px solid rgba(249,115,22,0.28);
  border-radius: 100px;
  padding: 5px 14px 5px 7px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  letter-spacing: .3px; margin-bottom: 22px;
  animation: fadeUp .5s ease .1s both;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--brand); border-radius: 50%; flex-shrink: 0;
  animation: blink 1.8s infinite;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 700; line-height: 1.05; letter-spacing: -1.5px;
  color: var(--text-primary); margin-bottom: 0;
  animation: fadeUp .55s ease .15s both;
}
.hl { color: var(--brand); position: relative; display: inline-block; }
.hl::after {
  content: '';
  position: absolute; bottom: 1px; left: 0; right: 0; height: 4px;
  background: var(--brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: lineIn .7s ease 1.1s forwards;
}

.type-wrap {
  display: flex; align-items: flex-end;
  margin-top: 0; line-height: 1.15;
  animation: fadeUp .55s ease .2s both;
}
.type-static,
.type-rotating {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.15;
  white-space: nowrap;
}
.type-static  { color: var(--text-primary); }
.type-rotating { color: var(--brand); display: inline-block; vertical-align: bottom; padding-bottom: 0.08em; }

.hero-sub {
  font-size: 15.5px; color: var(--text-muted);
  max-width: 500px; line-height: 1.72;
  margin-top: 18px;
  animation: fadeUp .55s ease .25s both;
}
.hero-sub strong { color: var(--text-primary); font-weight: 600; }

.cta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeUp .55s ease .3s both;
}
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 13px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  border: none;
}
.btn-main:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-alt {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text-secondary);
  padding: 12px 22px; border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  background: rgba(255,255,255,0.7);
}
.btn-alt:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1.5px solid rgba(0,0,0,.07);
  animation: fadeUp .55s ease .38s both;
}
.stat-item { background: var(--brand-faint); border-radius: 10px; padding: 13px 15px; }
.stat-val {
  font-family: var(--font-display);
  font-size: 27px; font-weight: 700;
  color: var(--text-primary); line-height: 1;
}
.stat-val em { color: var(--brand); font-style: normal; }
.stat-lbl {
  font-size: 11px; color: var(--text-faint); font-weight: 600;
  margin-top: 4px; text-transform: uppercase; letter-spacing: .3px;
}

/* RIGHT */
.hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 32px;
  position: relative; z-index: 2;
}


/* ── 5. HERO FORM CARD ──────────────────────────────────────── */
.form-card {
  background: var(--bg-white);
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  color: var(--text-primary); letter-spacing: -.3px; margin-bottom: 16px;
}

.frow {
  margin-bottom: 10px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .4s ease forwards;
}
.frow:nth-child(1) { animation-delay: .07s; }
.frow:nth-child(2) { animation-delay: .13s; }
.frow:nth-child(3) { animation-delay: .19s; }
.frow:nth-child(4) { animation-delay: .25s; }
.frow:nth-child(5) { animation-delay: .31s; }
.frow:nth-child(6) { animation-delay: .37s; }
.frow:nth-child(7) { animation-delay: .43s; }
.frow:nth-child(8) { animation-delay: .49s; }

.frow input,
.frow select,
.frow textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 13.5px; color: var(--text-primary);
  background: var(--bg-white);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.frow input:focus,
.frow select:focus,
.frow textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.frow input::placeholder,
.frow textarea::placeholder { color: #bbb; }
.frow select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23F97316' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer; color: #555;
}
.frow select.ph { color: #bbb; }
.frow select option { color: var(--text-primary); }

.f2col { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.email-wrap { position: relative; }
.email-wrap input { padding-left: 15px; }
.email-icon {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: #bbb; font-size: 14px; pointer-events: none; line-height: 1;
}

/* Phone field */
.phone-field {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: visible; position: relative; width: 100%;
}
.phone-field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.cc-trigger {
  display: flex; align-items: center; gap: 5px;
  padding: 11px 10px 11px 11px;
  border: none; border-right: 1.5px solid var(--border);
  background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--text-secondary); white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.cc-trigger:hover { background: #fff8f3; }
.cc-flag { font-size: 17px; line-height: 1; }
.cc-code { font-size: 12.5px; color: #444; font-weight: 700; }
.cc-arrow { font-size: 8px; color: var(--brand); margin-left: 1px; transition: transform var(--transition); }
.cc-trigger.open .cc-arrow { transform: rotate(180deg); }
.cc-input {
  border: none !important; box-shadow: none !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  flex: 1; min-width: 0; padding: 11px 12px;
  font-size: 13.5px; color: var(--text-primary);
  font-family: var(--font-body); outline: none; background: transparent;
}
.cc-input::placeholder { color: #bbb; }

/* Country code dropdown */
#cc-dropdown {
  position: fixed; width: 272px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  z-index: 2147483647;
  display: none; flex-direction: column;
  overflow: hidden; max-height: 290px;
}
#cc-dropdown.open { display: flex; }
.cc-search-wrap { padding: 10px; border-bottom: 1.5px solid #f0f0f0; flex-shrink: 0; }
.cc-search {
  width: 100%; padding: 7px 12px 7px 34px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: var(--font-body); outline: none;
  background: var(--bg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 10px center;
  transition: border-color var(--transition);
}
.cc-search:focus { border-color: var(--brand); }
.cc-list { overflow-y: auto; flex: 1; }
.cc-list::-webkit-scrollbar { width: 4px; }
.cc-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.cc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; cursor: pointer;
  font-size: 13px; color: var(--text-secondary);
  transition: background .1s;
}
.cc-item:hover,
.cc-item.active { background: var(--brand-light); }
.cc-item-flag { font-size: 17px; flex-shrink: 0; }
.cc-item-name { flex: 1; font-weight: 500; font-size: 13px; }
.cc-item-dial { color: var(--text-faint); font-weight: 700; font-size: 12px; }

/* Submit button */
.btn-submit-wrap {
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .4s ease .55s forwards; margin-top: 4px;
}
.btn-submit {
  width: 100%; padding: 14px 20px;
  background: var(--brand); color: #fff; border: none;
  border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  display: flex; align-items: center; justify-content: space-between;
}
.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.35);
}
.btn-submit:active { transform: scale(.98); }
.btn-label { flex: 1; text-align: center; }
.arrow-circle {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: transform var(--transition); flex-shrink: 0;
}
.btn-submit:hover .arrow-circle { transform: translateX(3px); }

.recaptcha-wrap {
  margin-bottom: 10px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .4s ease .5s forwards; overflow: hidden;
}

.field-error { border-color: #ef4444 !important; }

.form-success { display: none; text-align: center; padding: 40px 16px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; margin-bottom: 14px; }
.form-success h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }


/* ── 7. MARQUEE / TICKER ────────────────────────────────────── */
.mq-section {
  position: relative; padding: 48px 0 44px;
  background: var(--bg-white); overflow: hidden;
}
.mq-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 15% 50%,rgba(249,115,22,.07) 0%,transparent 60%),
              radial-gradient(ellipse 45% 90% at 85% 50%,rgba(249,115,22,.05) 0%,transparent 60%);
  pointer-events: none;
}
.mq-wrap {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  transform: rotate(-2deg); width: 114%; left: -7%;
}
.mq-track {
  display: flex; width: max-content; will-change: transform; gap: 0;
}
.mq-track:hover { animation-play-state: paused !important; }
.mq-track.r1 { animation: goLeft 52s linear infinite; }
.mq-track.r2 { animation: goRight 44s linear infinite; }
.mq-track.r3 { animation: goLeft 60s linear infinite; }

.m-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; margin: 0 6px; border-radius: 100px;
  white-space: nowrap; font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600; letter-spacing: -.1px;
  cursor: default;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  user-select: none;
}
.m-item i { font-size: 15px; flex-shrink: 0; }
.m-item:hover { transform: scale(1.07) rotate(.5deg); z-index: 10; position: relative; }

.sa { background: var(--bg-white); border: 1.5px solid var(--border); color: var(--text-primary); }
.sa:hover { background: var(--text-primary); color: var(--bg-white); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.sb { background: var(--brand); border: 1.5px solid var(--brand); color: #fff; box-shadow: 0 3px 12px rgba(249,115,22,.22); }
.sb:hover { background: #e06510; box-shadow: 0 8px 24px rgba(249,115,22,.4); }
.sc { background: var(--brand-light); border: 1.5px solid rgba(249,115,22,.38); color: #c45d0a; }
.sc:hover { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 20px rgba(249,115,22,.3); }
.sd { background: #0f0f0f; border: 1.5px solid #0f0f0f; color: #fff; }
.sd:hover { background: var(--brand); border-color: var(--brand); box-shadow: 0 6px 20px rgba(249,115,22,.3); }

.m-sep { display: inline-flex; align-items: center; font-size: 11px; color: rgba(249,115,22,.3); margin: 0 2px; flex-shrink: 0; align-self: center; }

.fade-l, .fade-r {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 5; pointer-events: none;
}
.fade-l { left: 0; background: linear-gradient(90deg, var(--bg-white) 35%, transparent); }
.fade-r { right: 0; background: linear-gradient(270deg, var(--bg-white) 35%, transparent); }

.mq-footer { text-align: center; margin-top: 28px; position: relative; z-index: 2; }
.mq-footer p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mq-footer strong { color: var(--brand); }

.mq-section .fade-l,
.mq-section .fade-r {
    display: none !important;
}
/* ── 8. SERVICES SECTION ────────────────────────────────────── */
.st {
  position: relative; background: var(--bg-white);
  padding: 72px 0 64px; overflow: hidden; width: 100%;
}
.st::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 65%);
  pointer-events: none;
}
.st-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.st-head { text-align: center; margin-bottom: 44px; }
.st-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--brand); margin-bottom: 14px;
}
.st-eyebrow::before, .st-eyebrow::after { content: ''; width: 24px; height: 2px; background: var(--brand); border-radius: 2px; }
.st-h2 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(24px, 3.5vw, 44px); line-height: 1.1; letter-spacing: -.03em;
  color: #111; margin-bottom: 10px;
}
.st-h2 span { color: var(--brand); }
.st-sub { font-size: 15px; color: var(--text-faint); }

.st-tabs {
  display: flex; gap: 0; overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; border-bottom: 2px solid #F3F4F6; padding: 0 4px;
}
.st-tabs::-webkit-scrollbar { display: none; }
.st-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; font-size: 12.5px; font-weight: 600;
  color: var(--text-muted); white-space: nowrap; cursor: pointer;
  border-bottom: 2.5px solid transparent; margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0; background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body); border-radius: 8px 8px 0 0;
  position: relative; z-index: 1;
}
.st-tab:hover { color: #fff; background: var(--brand); }
.st-tab:hover .st-tab-ico { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.st-tab:hover .st-tab-ico svg { stroke: #fff; }
.st-tab.on { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; background: #FFF5EE; }
.st-tab.on .st-tab-ico { background: var(--brand); border-color: var(--brand); }
.st-tab.on .st-tab-ico svg { stroke: #fff; }
.st-tab-ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: #FFF5EE; border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--transition);
}
.st-tab-ico svg { width: 12px; height: 12px; stroke: var(--brand); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.st-panel { display: none; padding: 28px 0 0; animation: stFade .3s ease; }
.st-panel.on { display: block; }

.st-panel-head {
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  align-items: center; padding: 22px;
  background: linear-gradient(135deg, #FFF8F3 0%, #fff 100%);
  border: 1.5px solid var(--border-brand); border-radius: 16px; margin-bottom: 22px;
}
.st-panel-title { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: #111; margin-bottom: 5px; letter-spacing: -.02em; }
.st-panel-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 640px; }
.st-panel-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff; font-family: var(--font-heading);
  font-weight: 800; font-size: 12px; padding: 10px 18px;
  border-radius: 100px; white-space: nowrap;
  transition: all var(--transition); flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(249,115,22,.28);
}
.st-panel-btn:hover { background: var(--brand-darker); transform: translateY(-1px); }

.st-sub-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 14px; }

.st-sub-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.st-sub-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px; background: #FAFAFA;
  border: 1.5px solid #F0F0F0; border-radius: 12px;
  transition: all .22s; cursor: pointer; text-decoration: none;
}
.st-sub-card:hover {
  background: var(--brand); border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.25);
}
.st-sub-ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: #FFF5EE; border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .22s;
}
.st-sub-ico svg { width: 14px; height: 14px; stroke: var(--brand); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.st-sub-card:hover .st-sub-ico { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.st-sub-card:hover .st-sub-ico svg { stroke: #fff; }
.st-sub-name { font-size: 12px; font-weight: 600; color: #111; line-height: 1.35; transition: color var(--transition); flex: 1; }
.st-sub-card:hover .st-sub-name { color: #fff; }
.st-sub-arr { font-size: 11px; color: #D1D5DB; padding-left: 4px; transition: all var(--transition); flex-shrink: 0; align-self: center; }
.st-sub-card:hover .st-sub-arr { color: rgba(255,255,255,.7); transform: translateX(2px); }


/* ── 9. WHY CHOOSE US ───────────────────────────────────────── */
.wcu {
  position: relative;
  background: linear-gradient(135deg, var(--bg-white) 0%, #FFF8F3 100%);
  padding: 80px 0; font-family: var(--font-body);
  overflow: hidden; width: 100%;
}
.wcu::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
.wcu-inner { max-width: 100%; padding: 0 60px; position: relative; z-index: 1; }
.wcu-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.wcu-left { display: flex; flex-direction: column; }

.wcu-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--brand); margin-bottom: 18px;
}
.wcu-tag::before { content: ''; width: 28px; height: 2px; background: var(--brand); border-radius: 2px; flex-shrink: 0; }

.wcu-h2 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(30px, 3vw, 48px); line-height: 1.1;
  letter-spacing: -.03em; color: #111; margin-bottom: 20px;
}
.wcu-h2 span { color: var(--brand); display: block; }
.wcu-p { font-size: 15px; color: var(--text-muted); line-height: 1.78; margin-bottom: 36px; max-width: 480px; }

.wcu-stats {
  border: 1.5px solid #F0E4D8; border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 36px;
  flex: 1; max-height: 260px;
}
.wcu-stat { padding: 28px 26px; border-right: 1.5px solid #F0E4D8; border-bottom: 1.5px solid #F0E4D8; background: var(--bg-white); transition: background var(--transition); }
.wcu-stat:hover { background: #FFF8F3; }
.wcu-stat:nth-child(2n) { border-right: none; }
.wcu-stat:nth-child(3), .wcu-stat:nth-child(4) { border-bottom: none; }
.wcu-stat-num { font-family: var(--font-heading); font-weight: 900; font-size: 38px; color: var(--brand); line-height: 1; margin-bottom: 8px; display: flex; align-items: baseline; gap: 2px; }
.wcu-stat-num sup { font-size: 22px; font-weight: 800; }
.wcu-stat-lbl { font-size: 12.5px; color: var(--text-faint); line-height: 1.5; font-weight: 500; }

.wcu-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  padding: 14px 32px; border-radius: 100px; text-decoration: none;
  transition: all .22s;
  box-shadow: 0 6px 24px rgba(249,115,22,.32); width: fit-content;
}
.wcu-btn:hover { background: var(--brand-darker); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(249,115,22,.42); }

.wcu-right { position: relative; display: flex; flex-direction: column; }
.wcu-scroll {
  overflow-y: auto; overflow-x: hidden; flex: 1;
  scrollbar-width: thin; scrollbar-color: rgba(249,115,22,.3) transparent;
  -webkit-mask-image: linear-gradient(180deg, black 85%, transparent 100%);
  mask-image: linear-gradient(180deg, black 85%, transparent 100%);
  padding-right: 8px;
}
.wcu-scroll::-webkit-scrollbar { width: 3px; }
.wcu-scroll::-webkit-scrollbar-thumb { background: rgba(249,115,22,.3); border-radius: 2px; }
.wcu-scroll.at-bottom { -webkit-mask-image: none; mask-image: none; }

.wcu-scroll-hint {
  position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  pointer-events: none; transition: opacity .3s; z-index: 5;
}
.wcu-scroll-hint span { font-size: 10px; font-weight: 700; color: rgba(249,115,22,.6); text-transform: uppercase; letter-spacing: .08em; }
.wcu-scroll-hint svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; }

.wcu-items { display: flex; flex-direction: column; gap: 0; position: relative; padding-bottom: 24px; }
.wcu-items::before {
  content: ''; position: absolute; left: 28px; top: 28px; bottom: 40px; width: 1.5px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(249,115,22,.15) 100%); z-index: 0;
}
.wcu-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  align-items: flex-start; padding: 24px 0;
  border-bottom: 1px solid rgba(249,115,22,.1);
  position: relative; z-index: 1; transition: background var(--transition);
  cursor: default; border-radius: 0;
}
.wcu-item:first-child { padding-top: 4px; }
.wcu-item:last-child { border-bottom: none; }

.wcu-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: #FFF5EE; border: 1.5px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 2;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.wcu-ico svg { width: 24px; height: 24px; stroke: var(--brand); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.wcu-item:hover .wcu-ico { background: var(--brand); border-color: var(--brand); transform: scale(1.08); box-shadow: 0 6px 18px rgba(249,115,22,.28); }
.wcu-item:hover .wcu-ico svg { stroke: #fff; }

.wcu-item-top { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.wcu-item-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 10.5px;
  letter-spacing: .1em; color: rgba(249,115,22,.6);
  background: #FFF5EE; border: 1px solid var(--border-brand);
  padding: 2px 9px; border-radius: 100px; flex-shrink: 0;
}
.wcu-item-title { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: #111; letter-spacing: -.02em; line-height: 1.25; }
.wcu-item-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }


/* ── 10. PROCESS / TIMELINE ─────────────────────────────────── */
.pr {
  position: relative;
  background: linear-gradient(135deg, var(--bg-white) 0%, #FFF8F3 100%);
  padding: 90px 0 80px; font-family: var(--font-body);
  overflow: hidden; width: 100%;
}
.pr-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(249,115,22,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.pr-orb1 { position: absolute; width: 500px; height: 500px; top: -150px; left: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 65%); filter: blur(60px); pointer-events: none; }
.pr-orb2 { position: absolute; width: 400px; height: 400px; bottom: -100px; right: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.05) 0%, transparent 65%); filter: blur(60px); pointer-events: none; }

.pr-inner { max-width: 100%; padding: 0 60px; position: relative; z-index: 2; }

.pr-head { text-align: center; margin-bottom: 64px; }
.pr-ey {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--brand);
  background: rgba(249,115,22,.08); border: 1px solid var(--border-brand);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 18px;
}
.pr-ey::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: prBl 2s infinite; }
.pr-h2 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(26px, 3.5vw, 50px); line-height: 1.1;
  letter-spacing: -.03em; color: #111; margin-bottom: 12px;
}
.pr-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand), #FACC15);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pr-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.pr-timeline { position: relative; max-width: 960px; margin: 0 auto; }
.pr-line {
  position: absolute; left: 50%; top: 36px; bottom: 0; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(249,115,22,0) 0%, rgba(249,115,22,.4) 5%, rgba(249,115,22,.4) 95%, rgba(249,115,22,0) 100%);
  z-index: 0;
}

.pr-row { display: flex; align-items: center; gap: 0; position: relative; z-index: 1; min-height: 180px; }
.pr-left { flex: 1; padding-right: 48px; display: flex; justify-content: flex-end; }
.pr-right { flex: 1; padding-left: 48px; display: flex; justify-content: flex-start; }
.pr-node { flex-shrink: 0; width: 80px; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; }
.pr-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #FACC15);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(249,115,22,.14), 0 0 0 12px rgba(249,115,22,.06);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; flex-shrink: 0;
}
.pr-row:hover .pr-circle {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(249,115,22,.2), 0 0 0 16px rgba(249,115,22,.08), 0 0 32px rgba(249,115,22,.25);
}
.pr-circle svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pr-num { font-family: var(--font-heading); font-weight: 900; font-size: 11px; letter-spacing: .1em; color: var(--brand); opacity: .7; }

.pr-card {
  background: var(--bg-white); border: 1.5px solid #F0E4D8; border-radius: 18px;
  padding: 26px 28px; max-width: 400px; width: 100%;
  position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.pr-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--brand), #FACC15);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease; border-radius: 18px 18px 0 0; opacity: .9;
}
.pr-row:hover .pr-card {
  border-color: var(--brand); background: #FFF8F3;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249,115,22,.12), 0 4px 16px rgba(0,0,0,.06);
}
.pr-row:hover .pr-card::after { transform: scaleX(1); }

.pr-left .pr-card::before {
  content: ''; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
  border-left: 10px solid #F0E4D8; transition: border-left-color .3s;
}
.pr-row:hover .pr-left .pr-card::before { border-left-color: var(--brand); }
.pr-right .pr-card::before {
  content: ''; position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
  border-right: 10px solid #F0E4D8; transition: border-right-color .3s;
}
.pr-row:hover .pr-right .pr-card::before { border-right-color: var(--brand); }

.pr-tag { display: inline-flex; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); background: #FFF5EE; border: 1px solid rgba(249,115,22,.25); border-radius: 100px; padding: 3px 10px; margin-bottom: 10px; }
.pr-title { font-family: var(--font-heading); font-weight: 800; font-size: 17px; color: #111; margin-bottom: 8px; letter-spacing: -.02em; line-height: 1.25; }
.pr-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.pr-spacer { height: 32px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.pr-spacer::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(249,115,22,.15); }

.pr-row.r .pr-left { visibility: hidden; }
.pr-row.l .pr-right { visibility: hidden; }

.pr-cta { text-align: center; padding-top: 56px; position: relative; }
.pr-cta::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 56px;
  background: linear-gradient(180deg, var(--brand), rgba(249,115,22,.05));
}
.pr-cta-ico {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #FACC15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 30px;
  box-shadow: 0 0 0 8px rgba(249,115,22,.12), 0 0 0 16px rgba(249,115,22,.06);
  animation: prPulse 3s ease-in-out infinite;
}
.pr-cta-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(20px, 2.5vw, 30px); color: #111; margin-bottom: 8px; letter-spacing: -.02em; }
.pr-cta-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pr-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pr-b1 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; font-family: var(--font-heading);
  font-weight: 800; font-size: 14px; padding: 13px 28px; border-radius: 100px;
  text-decoration: none; transition: all .22s; box-shadow: 0 6px 24px rgba(249,115,22,.32);
}
.pr-b1:hover { background: var(--brand-darker); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(249,115,22,.42); }
.pr-b2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-white); color: var(--text-secondary);
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 100px;
  border: 1.5px solid var(--border); text-decoration: none; transition: all .22s;
}
.pr-b2:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }


/* ── 11. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  padding: 64px 0 0;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: #fff; letter-spacing: -0.5px;
  display: block; margin-bottom: 14px;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 24px; max-width: 240px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand); }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact-list .ti {
  color: var(--brand); font-size: 15px; flex-shrink: 0; margin-top: 1px;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: var(--brand); }
