/* ============================================================
   SAFE BAIT — Stylesheet
   Primary: #063f93  |  Accent: #0ebcb0
   Fonts: Manrope (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:        #063f93;
  --primary-dark:   #042d6b;
  --primary-light:  #1254b5;
  --secondary:      #0ebcb0;
  --secondary-dark: #0a9990;
  --secondary-light:#1fd6c9;

  --text-dark:   #0d1b2a;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;

  --bg-white:  #ffffff;
  --bg-light:  #f7f9fc;
  --bg-subtle: #eef2f7;
  --bg-dark:   #04213d;
  --bg-darker: #021629;

  --border-light: #e2e8f0;
  --border:       #cbd5e1;

  --shadow-sm: 0 1px 3px rgba(6,63,147,.07);
  --shadow-md: 0 4px 16px rgba(6,63,147,.11);
  --shadow-lg: 0 10px 36px rgba(6,63,147,.14);
  --shadow-xl: 0 24px 64px rgba(6,63,147,.18);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --font-display: 'Manrope', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h:   72px;
  --cmax:    1220px;
  --cpad:    24px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ── 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); color:var(--text-body); background:var(--bg-white); line-height:1.6; overflow-x:hidden; }
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button { cursor:pointer; font-family:var(--font-body); border:none; background:none; }
input,textarea,select { font-family:var(--font-body); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width:var(--cmax); margin:0 auto; padding:0 var(--cpad); }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-display); color:var(--text-dark); line-height:1.2; font-weight:700; }

.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--secondary); margin-bottom:16px;
}
.section-label::before {
  content:''; display:block; width:22px; height:2px;
  background:var(--secondary); border-radius:var(--r-full);
}
.section-title {
  font-size:clamp(1.8rem,3.5vw,2.65rem); font-weight:700;
  color:var(--text-dark); line-height:1.2; margin-bottom:20px;
}
.section-title .accent { color:var(--primary); }
.section-subtitle {
  font-size:1.05rem; color:var(--text-muted);
  line-height:1.75; max-width:600px;
}
.section-centered { text-align:center; }
.section-centered .section-subtitle { margin:0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:var(--r-full);
  font-size:.92rem; font-weight:600; line-height:1;
  transition:all .25s var(--ease); white-space:nowrap;
  font-family:var(--font-body);
}
.btn svg { width:17px; height:17px; flex-shrink:0; transition:transform .2s var(--ease); }
.btn:hover svg { transform:translateX(3px); }

.btn-primary {
  background:var(--primary); color:#fff;
  box-shadow:0 4px 16px rgba(6,63,147,.28);
}
.btn-primary:hover { background:var(--primary-dark); box-shadow:0 6px 24px rgba(6,63,147,.38); transform:translateY(-1px); }

.btn-secondary { background:var(--secondary); color:#fff; box-shadow:0 4px 16px rgba(14,188,176,.28); }
.btn-secondary:hover { background:var(--secondary-dark); transform:translateY(-1px); }

.btn-outline { background:transparent; color:var(--primary); border:2px solid var(--primary); }
.btn-outline:hover { background:var(--primary); color:#fff; }

.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background:#fff; color:var(--primary); border-color:#fff; }

.btn-lg { padding:17px 36px; font-size:.98rem; }
.btn-sm { padding:10px 20px; font-size:.82rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  transition:background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.scrolled {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom-color:var(--border-light);
  box-shadow:0 1px 20px rgba(6,63,147,.08);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:100%; max-width:var(--cmax); margin:0 auto; padding:0 var(--cpad);
}
.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo-icon { width:36px; height:36px; flex-shrink:0; }
.nav-logo-text {
  font-family:var(--font-display); font-size:1.15rem; font-weight:700;
  color:#fff; transition:color .3s;
}
.nav.scrolled .nav-logo-text { color:var(--primary); }

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link {
  padding:8px 13px; border-radius:var(--r-sm);
  font-size:.88rem; font-weight:500; color:rgba(255,255,255,.82);
  transition:all .2s var(--ease);
}
.nav-link:hover { color:#fff; background:rgba(255,255,255,.12); }
.nav.scrolled .nav-link { color:var(--text-body); }
.nav.scrolled .nav-link:hover { color:var(--primary); background:var(--bg-subtle); }
.nav-link.active { color:#fff; }
.nav.scrolled .nav-link.active { color:var(--primary); font-weight:600; }

.nav-cta .btn {
  font-size:.86rem; padding:10px 20px;
  background:#fff; color:var(--primary); box-shadow:none;
}
.nav-cta .btn:hover { background:var(--bg-light); box-shadow:0 4px 12px rgba(0,0,0,.12); transform:translateY(-1px); }
.nav.scrolled .nav-cta .btn { background:var(--primary); color:#fff; }
.nav.scrolled .nav-cta .btn:hover { background:var(--primary-dark); }

.nav-toggle { display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all .3s var(--ease); }
.nav.scrolled .nav-toggle span { background:var(--text-dark); }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0;
  background:#fff; border-bottom:1px solid var(--border-light);
  box-shadow:0 8px 30px rgba(0,0,0,.1); z-index:999;
  flex-direction:column; padding-bottom:16px;
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:all .3s var(--ease);
}
.nav-mobile.open { display:flex; transform:translateY(0); opacity:1; pointer-events:auto; }
.nav-mobile-link {
  padding:14px 24px; font-size:.95rem; font-weight:500;
  color:var(--text-body); border-bottom:1px solid var(--border-light);
  transition:all .2s;
}
.nav-mobile-link:last-of-type { border-bottom:none; }
.nav-mobile-link:hover { color:var(--primary); background:var(--bg-light); }
.nav-mobile .btn { margin:14px 24px 0; justify-content:center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  background:var(--bg-dark); overflow:hidden;
  padding-top:var(--nav-h);
}
.hero-bg { position:absolute; inset:0; overflow:hidden; }
.hero-gradient {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%,rgba(14,188,176,.14) 0%,transparent 60%),
    radial-gradient(ellipse 55% 50% at 15% 75%,rgba(6,63,147,.45) 0%,transparent 60%),
    linear-gradient(150deg,#04213d 0%,#021629 100%);
}
.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(14,188,176,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(14,188,176,.05) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-orb {
  position:absolute; border-radius:50%;
  animation:orb-float 12s ease-in-out infinite;
}
.hero-orb-1 {
  width:640px; height:640px; top:-100px; right:-80px;
  background:radial-gradient(circle,rgba(14,188,176,.1) 0%,transparent 70%);
}
.hero-orb-2 {
  width:440px; height:440px; bottom:-80px; left:-60px;
  background:radial-gradient(circle,rgba(6,63,147,.35) 0%,transparent 70%);
  animation-direction:reverse; animation-duration:10s;
}
@keyframes orb-float {
  0%,100% { transform:translateY(0) scale(1); }
  50%      { transform:translateY(-30px) scale(1.04); }
}

.hero-content {
  position:relative; z-index:10;
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; padding:80px 0;
}
.hero-text { max-width:600px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(14,188,176,.14); border:1px solid rgba(14,188,176,.3);
  color:var(--secondary); padding:6px 14px; border-radius:var(--r-full);
  font-size:.76rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:28px;
}
.hero-badge-dot {
  width:6px; height:6px; border-radius:50%; background:var(--secondary);
  animation:badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

.hero-title {
  font-size:clamp(2.2rem,5vw,3.8rem); font-weight:700; color:#fff;
  line-height:1.15; margin-bottom:24px;
}
.hero-title .hl { color:var(--secondary); }
.hero-subtitle { font-size:1.05rem; color:rgba(255,255,255,.68); line-height:1.75; margin-bottom:40px; max-width:520px; }
.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

.hero-stats {
  display:flex; align-items:center; gap:36px;
  margin-top:52px; padding-top:40px;
  border-top:1px solid rgba(255,255,255,.1);
}
.hero-stat-val { font-family:var(--font-display); font-size:1.8rem; font-weight:800; color:#fff; line-height:1; }
.hero-stat-lbl { font-size:.78rem; color:rgba(255,255,255,.45); line-height:1.35; margin-top:4px; max-width:80px; }

/* Hero card mockup */
.hero-visual { display:flex; align-items:center; justify-content:center; }
.hero-card {
  background:rgba(255,255,255,.05); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.1); border-radius:var(--r-xl);
  padding:28px; width:100%; max-width:400px;
}
.hero-card-hd { display:flex; align-items:center; gap:12px; margin-bottom:26px; }
.hero-card-hd-icon {
  width:42px; height:42px; border-radius:var(--r-md); flex-shrink:0;
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  display:flex; align-items:center; justify-content:center;
}
.hero-card-hd-icon svg { width:20px; height:20px; color:#fff; }
.hero-card-hd-title { font-family:var(--font-display); font-size:.88rem; font-weight:700; color:#fff; }
.hero-card-hd-sub   { font-size:.75rem; color:rgba(255,255,255,.45); margin-top:2px; }

.hero-metric { margin-bottom:18px; }
.hero-metric-row { display:flex; justify-content:space-between; font-size:.78rem; color:rgba(255,255,255,.55); margin-bottom:7px; }
.hero-metric-val { color:#fff; font-weight:600; }
.hero-bar { height:5px; background:rgba(255,255,255,.1); border-radius:var(--r-full); overflow:hidden; }
.hero-bar-fill {
  height:100%; border-radius:var(--r-full);
  background:linear-gradient(90deg,var(--primary-light),var(--secondary));
  animation:bar-grow 1.8s var(--ease-out) forwards; width:0;
}
.hero-bar-fill-1 { animation-delay:.4s; }
.hero-bar-fill-2 { animation-delay:.7s; }
.hero-bar-fill-3 { animation-delay:1s; }
@keyframes bar-grow { to { width:var(--w); } }

.hero-alert {
  display:flex; align-items:flex-start; gap:12px;
  background:rgba(14,188,176,.1); border:1px solid rgba(14,188,176,.22);
  border-radius:var(--r-md); padding:14px; margin-top:20px;
}
.hero-alert-icon {
  width:30px; height:30px; border-radius:var(--r-sm); background:var(--secondary);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-alert-icon svg { width:15px; height:15px; color:#fff; }
.hero-alert strong { display:block; font-size:.78rem; font-weight:600; color:var(--secondary-light); }
.hero-alert span   { font-size:.74rem; color:rgba(255,255,255,.45); }

/* ── Sections base ───────────────────────────────────────────── */
.section    { padding:96px 0; }
.section-sm { padding:64px 0; }
.section-lg { padding:120px 0; }

.section-dark { background:var(--bg-dark); color:#fff; }
.section-dark .section-title,
.section-dark h2, .section-dark h3 { color:#fff; }
.section-dark .section-subtitle { color:rgba(255,255,255,.62); }

.section-light { background:var(--bg-light); }

/* ── Problem ─────────────────────────────────────────────────── */
.problem-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.problem-points { display:flex; flex-direction:column; gap:16px; margin-top:32px; }
.problem-point {
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 20px; background:var(--bg-light); border-radius:var(--r-md);
  border:1px solid var(--border-light); transition:all .3s var(--ease);
}
.problem-point:hover { border-color:rgba(14,188,176,.4); transform:translateX(4px); box-shadow:var(--shadow-md); }
.problem-point-icon {
  width:38px; height:38px; border-radius:var(--r-sm);
  background:rgba(14,188,176,.1); color:var(--secondary);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.problem-point-icon svg { width:18px; height:18px; }
.problem-point h4 { font-size:.92rem; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
.problem-point p  { font-size:.83rem; color:var(--text-muted); line-height:1.5; }

.problem-card {
  background:var(--bg-dark); border-radius:var(--r-xl); padding:36px;
  position:relative; overflow:hidden;
}
.problem-card::after {
  content:''; position:absolute; top:0; right:0; width:220px; height:220px;
  background:radial-gradient(circle,rgba(14,188,176,.12),transparent 70%); border-radius:50%;
}
.problem-card-lbl { font-size:.74rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--secondary); margin-bottom:20px; }
.problem-big-num  { font-family:var(--font-display); font-size:4.5rem; font-weight:800; color:#fff; line-height:1; }
.problem-big-desc { font-size:.88rem; color:rgba(255,255,255,.55); line-height:1.6; margin:10px 0 32px; }
.problem-bars { display:flex; flex-direction:column; gap:12px; }
.problem-bar-row { display:flex; align-items:center; gap:12px; }
.problem-bar-lbl { font-size:.78rem; color:rgba(255,255,255,.55); min-width:110px; }
.problem-bar-track { flex:1; height:4px; background:rgba(255,255,255,.08); border-radius:var(--r-full); overflow:hidden; }
.problem-bar-fill  { height:100%; background:linear-gradient(90deg,var(--primary-light),var(--secondary)); border-radius:var(--r-full); }
.problem-bar-pct   { font-size:.78rem; font-weight:600; color:#fff; min-width:30px; text-align:right; }

/* ── Solution steps ──────────────────────────────────────────── */
.solution-steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px; margin-top:60px; position:relative;
}
.solution-steps::before {
  content:''; position:absolute; top:44px;
  left:calc(12.5% + 24px); right:calc(12.5% + 24px);
  height:1px; background:linear-gradient(90deg,transparent,var(--secondary),transparent);
}
.sol-step { display:flex; flex-direction:column; align-items:center; text-align:center; }
.sol-step-num {
  width:48px; height:48px; border-radius:50%;
  background:var(--bg-white); border:2px solid var(--border-light);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:.95rem; font-weight:800;
  color:var(--primary); margin-bottom:18px; position:relative; z-index:1;
  transition:all .3s var(--ease);
}
.sol-step:hover .sol-step-num {
  background:var(--primary); color:#fff; border-color:var(--primary);
  box-shadow:0 0 0 6px rgba(6,63,147,.1);
}
.sol-step h4 { font-size:.95rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.sol-step p  { font-size:.83rem; color:var(--text-muted); line-height:1.6; }

/* ── Service cards ───────────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.service-card {
  background:var(--bg-white); border:1px solid var(--border-light);
  border-radius:var(--r-lg); padding:30px; position:relative; overflow:hidden;
  transition:all .3s var(--ease);
}
.service-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  opacity:0; transition:opacity .3s;
}
.service-card:hover { border-color:rgba(6,63,147,.15); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.service-card:hover::after { opacity:1; }
.service-card-ico {
  width:50px; height:50px; border-radius:var(--r-md);
  background:linear-gradient(135deg,rgba(6,63,147,.08),rgba(14,188,176,.08));
  color:var(--primary); display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; transition:all .3s var(--ease);
}
.service-card-ico svg { width:22px; height:22px; }
.service-card:hover .service-card-ico { background:linear-gradient(135deg,var(--primary),var(--secondary)); color:#fff; }
.service-card h3 { font-size:1rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.service-card p  { font-size:.84rem; color:var(--text-muted); line-height:1.65; }

/* ── Comparison ──────────────────────────────────────────────── */
.comparison { background:var(--bg-dark); padding:96px 0; }
.comparison-table { margin-top:60px; border-radius:var(--r-xl); overflow:hidden; border:1px solid rgba(255,255,255,.07); }
.comp-head { display:grid; grid-template-columns:1.4fr 1fr 1fr; background:rgba(255,255,255,.04); }
.comp-head-cell { padding:18px 28px; font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.comp-head-cell:first-child  { color:rgba(255,255,255,.35); }
.comp-head-cell:nth-child(2) { color:rgba(255,255,255,.35); }
.comp-head-cell.hl           { background:rgba(14,188,176,.14); color:var(--secondary); }
.comp-row { display:grid; grid-template-columns:1.4fr 1fr 1fr; border-top:1px solid rgba(255,255,255,.06); transition:background .2s; }
.comp-row:hover { background:rgba(255,255,255,.02); }
.comp-cell { padding:16px 28px; font-size:.88rem; color:rgba(255,255,255,.65); display:flex; align-items:center; gap:10px; }
.comp-cell.hl { color:#fff; font-weight:500; }

.icon-check { width:20px; height:20px; border-radius:50%; background:rgba(14,188,176,.18); color:var(--secondary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-x     { width:20px; height:20px; border-radius:50%; background:rgba(255,255,255,.06); color:rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-check svg, .icon-x svg { width:11px; height:11px; }

/* ── Industries ──────────────────────────────────────────────── */
.industries-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:56px; }
.industry-card {
  background:var(--bg-white); border:1px solid var(--border-light);
  border-radius:var(--r-md); padding:24px 16px; text-align:center;
  transition:all .3s var(--ease);
}
.industry-card:hover { border-color:var(--secondary); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.industry-ico {
  width:46px; height:46px; border-radius:var(--r-md);
  background:linear-gradient(135deg,rgba(6,63,147,.08),rgba(14,188,176,.08));
  color:var(--primary); display:flex; align-items:center; justify-content:center; margin:0 auto 12px;
}
.industry-ico svg { width:20px; height:20px; }
.industry-card span { font-family:var(--font-display); font-size:.85rem; font-weight:700; color:var(--text-dark); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top:60px; max-width:780px; margin-left:auto; margin-right:auto; }
.faq-item { border-bottom:1px solid var(--border-light); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  width:100%; padding:20px 0; text-align:left;
  font-family:var(--font-display); font-size:.98rem; font-weight:600;
  color:var(--text-dark); cursor:pointer; transition:color .2s;
}
.faq-q:hover { color:var(--primary); }
.faq-icon {
  width:28px; height:28px; border-radius:50%; background:var(--bg-subtle);
  color:var(--primary); display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:all .3s var(--ease);
}
.faq-icon svg { width:14px; height:14px; transition:transform .3s var(--ease); }
.faq-item.open .faq-icon { background:var(--primary); color:#fff; }
.faq-item.open .faq-icon svg { transform:rotate(45deg); }
.faq-body { overflow:hidden; max-height:0; transition:max-height .4s var(--ease-out); }
.faq-item.open .faq-body { max-height:260px; }
.faq-body-inner { padding-bottom:22px; font-size:.92rem; color:var(--text-muted); line-height:1.75; }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band {
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  padding:96px 0; position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; top:-50%; right:-10%;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(14,188,176,.18),transparent 70%);
}
.cta-inner { position:relative; z-index:1; text-align:center; max-width:660px; margin:0 auto; }
.cta-inner h2 { font-size:clamp(1.8rem,3vw,2.6rem); font-weight:700; color:#fff; margin-bottom:18px; line-height:1.2; }
.cta-inner p  { font-size:1.05rem; color:rgba(255,255,255,.72); line-height:1.7; margin-bottom:40px; }
.cta-actions  { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background:var(--bg-darker); padding:72px 0 36px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-desc { font-size:.85rem; color:rgba(255,255,255,.4); line-height:1.75; margin:18px 0 26px; max-width:280px; }
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:34px; height:34px; border-radius:var(--r-sm);
  background:rgba(255,255,255,.06); color:rgba(255,255,255,.45);
  display:flex; align-items:center; justify-content:center; transition:all .2s;
}
.footer-social a:hover { background:var(--secondary); color:#fff; }
.footer-social a svg { width:15px; height:15px; }
.footer-col-title { font-size:.74rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.8); margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.85rem; color:rgba(255,255,255,.42); transition:color .2s; }
.footer-links a:hover { color:var(--secondary); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:32px; border-top:1px solid rgba(255,255,255,.06); gap:16px; flex-wrap:wrap;
}
.footer-copy { font-size:.78rem; color:rgba(255,255,255,.22); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:.78rem; color:rgba(255,255,255,.22); transition:color .2s; }
.footer-legal a:hover { color:rgba(255,255,255,.5); }

/* ── Page header ─────────────────────────────────────────────── */
.page-header {
  background:linear-gradient(135deg,var(--bg-dark),var(--primary-dark));
  padding:calc(var(--nav-h) + 56px) 0 80px; position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 50%,rgba(14,188,176,.11),transparent 60%),
    linear-gradient(rgba(14,188,176,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(14,188,176,.03) 1px,transparent 1px);
  background-size:auto,60px 60px,60px 60px;
}
.page-header-inner { position:relative; z-index:1; max-width:720px; }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:18px; font-size:.78rem; color:rgba(255,255,255,.38); }
.breadcrumb a { color:rgba(255,255,255,.48); transition:color .2s; }
.breadcrumb a:hover { color:var(--secondary); }
.bc-sep { color:rgba(255,255,255,.2); }
.page-header h1 { font-size:clamp(2rem,4vw,3.2rem); font-weight:700; color:#fff; line-height:1.2; margin-bottom:18px; }
.page-header p  { font-size:1.02rem; color:rgba(255,255,255,.62); line-height:1.75; max-width:560px; }

/* ── Process steps (cómo funciona) ───────────────────────────── */
.process-steps { display:flex; flex-direction:column; margin-top:60px; }
.process-step {
  display:grid; grid-template-columns:80px 1fr; gap:28px;
  align-items:flex-start; padding:48px 0; border-bottom:1px solid var(--border-light);
}
.process-step:last-child { border-bottom:none; }
.process-num-wrap { display:flex; flex-direction:column; align-items:center; }
.process-num {
  width:50px; height:50px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.05rem; font-weight:800; color:#fff;
}
.process-line { width:2px; min-height:40px; flex:1; background:linear-gradient(180deg,var(--secondary),transparent); margin-top:8px; }
.process-step:last-child .process-line { display:none; }
.process-content h3 { font-size:1.3rem; margin-bottom:10px; }
.process-content p  { font-size:.92rem; color:var(--text-muted); line-height:1.75; margin-bottom:18px; }
.process-tags { display:flex; flex-wrap:wrap; gap:8px; }
.process-tag {
  padding:5px 12px; border-radius:var(--r-full); font-size:.75rem; font-weight:600;
  background:rgba(14,188,176,.08); color:var(--secondary-dark); border:1px solid rgba(14,188,176,.2);
}

/* ── Services detail page ────────────────────────────────────── */
.svc-detail { padding:72px 0; border-bottom:1px solid var(--border-light); }
.svc-detail:last-child { border-bottom:none; }
.svc-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.svc-detail-grid.rev { direction:rtl; }
.svc-detail-grid.rev > * { direction:ltr; }
.svc-detail h2 { font-size:clamp(1.6rem,2.5vw,2.1rem); margin-bottom:14px; }
.svc-detail p  { font-size:.92rem; color:var(--text-muted); line-height:1.75; margin-bottom:20px; }
.svc-list { display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.svc-list li { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:var(--text-body); }
.svc-list li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--secondary); flex-shrink:0; margin-top:7px; }
.svc-visual-box {
  background:var(--bg-dark); border-radius:var(--r-xl); padding:40px;
  position:relative; overflow:hidden;
}
.svc-visual-box::before {
  content:''; position:absolute; top:0; right:0; width:200px; height:200px;
  background:radial-gradient(circle,rgba(14,188,176,.14),transparent 70%); border-radius:50%;
}

/* ── Plans ───────────────────────────────────────────────────── */
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:60px; align-items:start; }
.plan-card {
  background:var(--bg-white); border:2px solid var(--border-light);
  border-radius:var(--r-xl); padding:34px; position:relative; transition:all .3s var(--ease);
}
.plan-card.featured { border-color:var(--primary); box-shadow:0 0 0 1px var(--primary),var(--shadow-xl); }
.plan-featured-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--primary); color:#fff; padding:4px 16px;
  border-radius:var(--r-full); font-size:.72rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; white-space:nowrap;
}
.plan-card:hover:not(.featured) { border-color:var(--secondary); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.plan-name { font-family:var(--font-display); font-size:1.4rem; font-weight:800; color:var(--text-dark); margin-bottom:6px; }
.plan-desc { font-size:.86rem; color:var(--text-muted); line-height:1.6; margin-bottom:26px; padding-bottom:26px; border-bottom:1px solid var(--border-light); }
.plan-features { display:flex; flex-direction:column; gap:11px; margin-bottom:30px; }
.plan-feat { display:flex; align-items:flex-start; gap:10px; font-size:.86rem; color:var(--text-body); }
.plan-feat-ico {
  width:17px; height:17px; border-radius:50%;
  background:rgba(14,188,176,.14); color:var(--secondary);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;
}
.plan-feat-ico svg { width:9px; height:9px; }

/* ── Resources ───────────────────────────────────────────────── */
.cat-filter { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
.cat-tag {
  padding:7px 16px; border-radius:var(--r-full); font-size:.82rem; font-weight:500;
  background:var(--bg-light); color:var(--text-muted); border:1px solid var(--border-light);
  cursor:pointer; transition:all .2s;
}
.cat-tag:hover, .cat-tag.active { background:var(--primary); color:#fff; border-color:var(--primary); }

.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.article-card {
  background:var(--bg-white); border:1px solid var(--border-light);
  border-radius:var(--r-lg); overflow:hidden; transition:all .3s var(--ease);
}
.article-card:hover { border-color:rgba(6,63,147,.15); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.article-img {
  height:176px; background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  position:relative; overflow:hidden;
}
.article-img::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 20%,rgba(14,188,176,.28),transparent 60%),
    linear-gradient(rgba(14,188,176,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(14,188,176,.06) 1px,transparent 1px);
  background-size:auto,30px 30px,30px 30px;
}
.article-cat {
  position:absolute; top:14px; left:14px;
  background:rgba(14,188,176,.88); color:#fff; padding:3px 11px;
  border-radius:var(--r-full); font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
}
.article-content { padding:22px; }
.article-meta { display:flex; align-items:center; gap:12px; font-size:.74rem; color:var(--text-muted); margin-bottom:10px; }
.article-title { font-family:var(--font-display); font-size:.95rem; font-weight:700; color:var(--text-dark); line-height:1.4; margin-bottom:8px; transition:color .2s; }
.article-card:hover .article-title { color:var(--primary); }
.article-excerpt { font-size:.82rem; color:var(--text-muted); line-height:1.6; }

/* ── About ───────────────────────────────────────────────────── */
.about-story { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; padding:96px 0; }
.about-values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.value-card {
  background:var(--bg-white); border:1px solid var(--border-light);
  border-radius:var(--r-lg); padding:30px; text-align:center; transition:all .3s var(--ease);
}
.value-card:hover { border-color:var(--secondary); box-shadow:var(--shadow-md); }
.value-ico {
  width:52px; height:52px; border-radius:var(--r-md);
  background:linear-gradient(135deg,rgba(6,63,147,.09),rgba(14,188,176,.09));
  color:var(--primary); display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.value-ico svg { width:24px; height:24px; }
.value-card h3 { font-size:.98rem; font-weight:700; margin-bottom:8px; }
.value-card p  { font-size:.84rem; color:var(--text-muted); line-height:1.65; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; }
.contact-info-item { display:flex; align-items:flex-start; gap:16px; margin-bottom:28px; }
.contact-info-ico {
  width:42px; height:42px; border-radius:var(--r-md);
  background:rgba(14,188,176,.1); color:var(--secondary);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-ico svg { width:18px; height:18px; }
.contact-info-item strong { display:block; font-weight:600; color:var(--text-dark); margin-bottom:2px; }
.contact-info-item span  { font-size:.88rem; color:var(--text-muted); }

.contact-form {
  background:var(--bg-white); border:1px solid var(--border-light);
  border-radius:var(--r-xl); padding:40px; box-shadow:var(--shadow-lg);
}
.form-group { margin-bottom:18px; }
.form-row  { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-label { display:block; font-size:.82rem; font-weight:600; color:var(--text-dark); margin-bottom:6px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border-light);
  border-radius:var(--r-sm); font-size:.88rem; color:var(--text-dark);
  background:var(--bg-white); transition:all .2s; outline:none; line-height:1.5;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(6,63,147,.1); }
.form-input::placeholder, .form-textarea::placeholder { color:var(--text-light); }
.form-textarea { resize:vertical; min-height:100px; }
.form-submit {
  width:100%; padding:15px; background:var(--primary); color:#fff;
  border:none; border-radius:var(--r-full); font-family:var(--font-body);
  font-size:.95rem; font-weight:600; cursor:pointer; transition:all .25s var(--ease); margin-top:8px;
}
.form-submit:hover { background:var(--primary-dark); box-shadow:0 6px 20px rgba(6,63,147,.3); transform:translateY(-1px); }

/* ── Animations ──────────────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.fade-up.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }
.delay-4 { transition-delay:.4s; }
.delay-5 { transition-delay:.5s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width:1024px) {
  .hero-content { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-actions, .hero-stats { justify-content:center; }
  .hero-subtitle { margin:0 auto 40px; }
  .problem-grid { grid-template-columns:1fr; }
  .solution-steps { grid-template-columns:repeat(2,1fr); }
  .solution-steps::before { display:none; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .industries-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .svc-detail-grid { grid-template-columns:1fr; gap:40px; }
  .svc-detail-grid.rev { direction:ltr; }
  .plans-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .resources-grid { grid-template-columns:repeat(2,1fr); }
  .about-story { grid-template-columns:1fr; gap:40px; }
  .about-values-grid { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
}
@media (max-width:768px) {
  :root { --nav-h:62px; --cpad:18px; }
  .section { padding:72px 0; }
  .nav-links, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .solution-steps { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .comp-head, .comp-row { grid-template-columns:1.2fr 1fr; }
  .comp-head-cell:last-child, .comp-cell:last-child { display:none; }
  .industries-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .about-values-grid { grid-template-columns:1fr; }
  .resources-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
}
