@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg-base:      #F7F6F2;
  --bg-surface:   #FFFFFF;
  --bg-subtle:    #F0EEE9;
  --bg-dark:      #0F1521;
  --bg-dark-2:    #1A2235;
  --bg-dark-3:    #212d42;

  --text-primary:       #111827;
  --text-secondary:     #4B5563;
  --text-muted:         #9CA3AF;
  --text-inverse:       #F7F6F2;
  --text-inverse-muted: #8D9DB5;

  --amber:       #D4860A;
  --amber-light: #F0A623;
  --amber-dim:   #F5E6C8;
  --amber-dark:  #A3650A;

  --border-light:  rgba(0,0,0,0.08);
  --border-medium: rgba(0,0,0,0.14);
  --border-dark:   rgba(255,255,255,0.07);
  --border-dark-2: rgba(255,255,255,0.12);

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.13);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.16);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --nav-h: 68px;
  --section-pad: clamp(72px, 9vw, 112px);
  --container: 1200px;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-base); color: var(--text-primary); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s, opacity 0.2s; }
button, input, textarea, select { font-family: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ─── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--amber); flex-shrink: 0; }
.eyebrow.light { color: var(--amber-light); }
.eyebrow.light::before { background: var(--amber-light); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); background: rgba(247,246,242,0.96);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-medium);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px); height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--bg-dark); letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-dark); display: flex; align-items: center; justify-content: center;
  color: var(--amber-light); font-size: 1rem; flex-shrink: 0;
}
.nav-logo span { color: var(--amber-dark); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--bg-subtle); color: var(--text-primary); }
.nav-links a.active { color: var(--amber-dark); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.01em; cursor: pointer; border: none;
  transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.btn-dark { background: var(--bg-dark); color: var(--text-inverse); border: 1.5px solid var(--bg-dark); }
.btn-dark:hover { background: var(--bg-dark-2); border-color: var(--bg-dark-2); }
.btn-amber { background: var(--amber); color: #fff; border: 1.5px solid var(--amber); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-medium); }
.btn-outline:hover { border-color: var(--text-primary); }
.btn-outline-amber { background: transparent; color: var(--amber-dark); border: 1.5px solid var(--amber); }
.btn-outline-amber:hover { background: var(--amber-dim); }
.btn-outline-light { background: transparent; color: var(--text-inverse); border: 1.5px solid var(--border-dark-2); }
.btn-outline-light:hover { background: rgba(255,255,255,0.06); }
.btn-sm  { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg  { padding: 13px 30px; font-size: 0.96rem; }
.btn-xs  { padding: 5px 12px; font-size: 0.76rem; }
.btn-white { background: #fff; color: var(--amber-dark); border: 1.5px solid #fff; font-weight: 700; }
.btn-white:hover { background: var(--bg-base); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost-white:hover { border-color: #fff; }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero { min-height: 100vh; background: var(--bg-dark); display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 380px; height: 380px; background: var(--amber); opacity: 0.04;
  clip-path: polygon(100% 0, 100% 100%, 0 0); pointer-events: none;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,60px);
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--text-inverse); margin-bottom: 1.4rem;
}
.hero-content h1 em { color: var(--amber-light); font-style: italic; }
.hero-content .body-lg { color: var(--text-inverse-muted); margin-bottom: 2.5rem; max-width: 500px; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-ticker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 4px;
  border: 1px solid rgba(212,134,10,0.35); background: rgba(212,134,10,0.07);
}
.hero-ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-light); animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-ticker span { font-size: 0.78rem; font-weight: 500; color: var(--amber-light); font-family: var(--font-mono); letter-spacing: 0.04em; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-dark); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--amber-light); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-inverse-muted); letter-spacing: 0.03em; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-frame {
  width: 248px; height: 500px; background: #161f30;
  border-radius: 36px; border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 0 8px #0e1623, 0 0 0 9px rgba(255,255,255,0.06), var(--shadow-xl);
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 18px 22px; position: relative; overflow: hidden;
}
.phone-frame::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 5px; background: #0e1623; border-radius: 0 0 6px 6px;
}
.phone-status-bar { width: 100%; display: flex; justify-content: space-between; font-size: 0.68rem; color: rgba(255,255,255,0.45); font-family: var(--font-mono); margin-bottom: 22px; padding: 0 4px; }
.phone-call-indicator { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #4ADE80; margin-bottom: 18px; font-family: var(--font-body); display: flex; align-items: center; gap: 6px; }
.phone-call-indicator::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: blink 1.8s ease-in-out infinite; }
.phone-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--bg-dark-3); border: 2px solid rgba(212,134,10,0.4); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 12px; }
.phone-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.phone-role { font-size: 0.74rem; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.phone-timer { font-family: var(--font-mono); font-size: 1.6rem; color: var(--amber-light); margin-bottom: 16px; letter-spacing: 0.05em; }
.phone-waveform { display: flex; align-items: center; gap: 3px; height: 36px; margin-bottom: 20px; }
.phone-waveform span { display: block; width: 3px; background: var(--amber); border-radius: 2px; opacity: 0.7; animation: wave 1.2s ease-in-out infinite; }
.phone-waveform span:nth-child(1)  { height:12px; animation-delay:0s; }
.phone-waveform span:nth-child(2)  { height:22px; animation-delay:.1s; }
.phone-waveform span:nth-child(3)  { height:32px; animation-delay:.2s; }
.phone-waveform span:nth-child(4)  { height:18px; animation-delay:.3s; }
.phone-waveform span:nth-child(5)  { height:28px; animation-delay:.15s; }
.phone-waveform span:nth-child(6)  { height:14px; animation-delay:.25s; }
.phone-waveform span:nth-child(7)  { height:24px; animation-delay:.05s; }
.phone-waveform span:nth-child(8)  { height:30px; animation-delay:.35s; }
.phone-waveform span:nth-child(9)  { height:16px; animation-delay:.12s; }
.phone-waveform span:nth-child(10) { height:20px; animation-delay:.22s; }
@keyframes wave { 0%,100%{transform:scaleY(.5);opacity:.4} 50%{transform:scaleY(1.2);opacity:.9} }
.phone-transcript { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 10px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; width: 100%; font-style: italic; }
.phone-controls { display: flex; gap: 14px; }
.phone-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; }
.phone-btn.end-call { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); }

/* ─── SECTIONS ────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-light  { background: var(--bg-base); }
.section-white  { background: var(--bg-surface); }
.section-subtle { background: var(--bg-subtle); }
.section-dark   { background: var(--bg-dark); }
.section-dark-2 { background: var(--bg-dark-2); }

.section-header { max-width: 640px; margin-bottom: clamp(2.5rem,4vw,4rem); }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 700; margin-bottom: 0.9rem; }
.section-header p  { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; }
.section-header.on-dark h2 { color: var(--text-inverse); }
.section-header.on-dark p  { color: var(--text-inverse-muted); }

/* ─── FEATURES ────────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1px; border: 1px solid var(--border-medium); border-radius: 10px; overflow: hidden; }
.feature-item { background: var(--bg-surface); padding: 2.2rem 2rem; transition: background 0.2s; }
.feature-item:hover { background: var(--bg-subtle); }
.feature-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--amber-dim); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.1rem; }
.feature-item h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-item p  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── STEPS ───────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: steps; }
.step { padding: 2rem 1.8rem; border-right: 1px solid var(--border-dark); }
.step:last-child { border-right: none; }
.step-number { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; color: var(--amber); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.step h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text-inverse); margin-bottom: 0.5rem; }
.step p  { font-size: 0.85rem; color: var(--text-inverse-muted); line-height: 1.7; }

/* ─── SERVICES ────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 1.5rem; }
.service-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; padding: 2.2rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; border-radius: 10px 0 0 10px; background: var(--amber); transition: height 0.35s ease; }
.service-card:hover { border-color: var(--border-medium); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { height: 100%; }
.service-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-dark); background: var(--amber-dim); padding: 3px 10px; border-radius: 3px; margin-bottom: 1.1rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.7rem; }
.service-card p  { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.4rem; }
.service-list { list-style: none; }
.service-list li { font-size: 0.86rem; color: var(--text-secondary); padding: 5px 0; display: flex; align-items: flex-start; gap: 9px; border-bottom: 1px solid var(--border-light); }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; color: var(--amber); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; padding: 2.2rem; }
.pricing-card.featured { background: var(--bg-dark); border-color: var(--bg-dark); box-shadow: var(--shadow-xl); }
.pricing-plan { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.6rem; }
.pricing-card.featured .pricing-plan { color: var(--amber-light); }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.4rem; }
.pricing-card.featured h3 { color: var(--text-inverse); }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin: 1.2rem 0 0.3rem; }
.pricing-price .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--text-primary); }
.pricing-card.featured .pricing-price .amount { color: var(--text-inverse); }
.pricing-price .currency { font-size: 1.3rem; font-weight: 600; padding-bottom: 4px; color: var(--text-secondary); }
.pricing-card.featured .pricing-price .currency { color: var(--text-inverse-muted); }
.pricing-price .period { font-size: 0.85rem; color: var(--text-muted); padding-bottom: 6px; }
.pricing-card.featured .pricing-price .period { color: var(--text-inverse-muted); }
.pricing-minutes { font-size: 0.82rem; color: var(--text-muted); border-top: 1px solid var(--border-light); margin: 1.2rem 0; padding-top: 1.2rem; }
.pricing-card.featured .pricing-minutes { color: var(--text-inverse-muted); border-color: var(--border-dark); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.87rem; color: var(--text-secondary); padding: 7px 0; display: flex; align-items: flex-start; gap: 9px; border-bottom: 1px solid var(--border-light); }
.pricing-card.featured .pricing-features li { color: var(--text-inverse-muted); border-color: var(--border-dark); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: #4ADE80; flex-shrink: 0; margin-top: 2px; }
.pricing-features .cross { color: rgba(255,255,255,0.2); flex-shrink: 0; margin-top: 2px; }
.pricing-features .cross-dk { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.testimonial { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; padding: 2rem; transition: box-shadow 0.2s; }
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: 0.98rem; line-height: 1.75; color: var(--text-primary); margin-bottom: 1.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--amber-light); font-size: 0.95rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.88rem; font-weight: 600; }
.testimonial-role { font-size: 0.79rem; color: var(--text-muted); }

/* ─── BLOG ─────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; transition: box-shadow 0.22s, transform 0.22s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 1.6rem; }
.blog-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 0.65rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p  { font-size: 0.87rem; color: var(--text-secondary); margin-bottom: 1.2rem; line-height: 1.65; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-meta-author { font-size: 0.79rem; color: var(--text-muted); }
.blog-read-more { font-size: 0.8rem; font-weight: 600; color: var(--amber-dark); display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--amber); }

/* ─── CTA BAND ─────────────────────────────────────────────────── */
.cta-band { background: var(--amber); padding: 3.5rem 0; }
.cta-band-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,60px); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem,2.5vw,2rem); color: #fff; margin-bottom: 0.4rem; }
.cta-band p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.cta-band-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--amber-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-info-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.contact-info-item p  { font-size: 0.85rem; color: var(--text-secondary); }
.form-panel { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; padding: 2.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.79rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; background: var(--bg-base); border: 1px solid var(--border-medium); border-radius: 6px; color: var(--text-primary); font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,134,10,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: #fff; }

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero { background: var(--bg-dark); padding: calc(var(--nav-h) + 60px) 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 28px 28px; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border-dark-2); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 700; color: var(--text-inverse); }
.page-hero h1 em { color: var(--amber-light); font-style: italic; }
.page-hero .body-lg { color: var(--text-inverse-muted); max-width: 540px; margin-top: 1rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.79rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--amber-light); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { opacity: 0.4; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stat-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--border-medium); border-radius: 10px; overflow: hidden; }
.stat-quad-item { background: var(--bg-surface); padding: 2rem; transition: background 0.2s; }
.stat-quad-item:hover { background: var(--bg-subtle); }
.stat-quad-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--amber-dark); line-height: 1; margin-bottom: 6px; }
.stat-quad-label { font-size: 0.8rem; color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1.5rem; }
.team-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; padding: 2rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--amber-light); margin: 0 auto 1rem; }
.team-card h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.team-card p  { font-size: 0.82rem; color: var(--text-muted); }
.team-card .team-prev { font-size: 0.76rem; color: var(--amber-dark); margin-top: 4px; font-weight: 500; }

/* ─── BLOG SINGLE ────────────────────────────────────────────── */
.blog-single-wrap { max-width: 760px; margin: 0 auto; }
.blog-single-cover { width: 100%; height: 420px; object-fit: cover; border-radius: 10px; margin-bottom: 2.5rem; border: 1px solid var(--border-light); display: block; }
.blog-single-content { font-size: 0.97rem; line-height: 1.9; color: var(--text-secondary); }
.blog-single-content h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); margin: 2rem 0 0.8rem; }
.blog-single-content p  { margin-bottom: 1.2rem; }

/* ─── INTEGRATION TAGS ───────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.integration-tag { padding: 7px 14px; border-radius: 5px; border: 1px solid var(--border-dark-2); font-size: 0.82rem; color: var(--text-inverse-muted); background: rgba(255,255,255,0.03); transition: border-color 0.2s, color 0.2s; }
.integration-tag:hover { border-color: var(--amber); color: var(--amber-light); }

/* ─── POPUPS ─────────────────────────────────────────────────── */
.popup-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(10,16,28,0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box { background: var(--bg-surface); border: 1px solid var(--border-medium); border-radius: 12px; max-width: 460px; width: 100%; padding: 2.5rem; position: relative; transform: translateY(18px); transition: transform 0.35s; box-shadow: var(--shadow-xl); }
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-subtle); border: none; cursor: pointer; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.popup-close:hover { background: var(--border-medium); }
.popup-box h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.4rem; }
.popup-box > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.6rem; }

/* ─── ALERTS ─────────────────────────────────────────────────── */
.alert { padding: 10px 16px; border-radius: 6px; font-size: 0.87rem; margin-bottom: 1.2rem; border-left: 3px solid; }
.alert-success { background: rgba(74,222,128,0.07); border-color: #4ADE80; color: #166534; }
.alert-error   { background: rgba(239,68,68,0.07);  border-color: #EF4444; color: #991B1B; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border-dark); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-desc { font-size: 0.86rem; color: var(--text-inverse-muted); line-height: 1.75; margin: 1rem 0 1.4rem; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark-2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-inverse-muted); transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--amber); color: var(--amber-light); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.86rem; color: var(--text-inverse-muted); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--border-dark); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

/* ─── REVEAL ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .step:last-child, .step:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .about-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0.2rem; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg-surface); border-bottom: 1px solid var(--border-medium); padding: 1rem clamp(20px,5vw,60px); box-shadow: var(--shadow-md); }
  .nav-links.open a { font-size: 1rem; padding: 10px 0; border-bottom: 1px solid var(--border-light); border-radius: 0; }
  .hamburger { display: flex; }
  .nav-cta .btn:not(:last-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .step:last-child { border-bottom: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
