*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --primary:#1a6fff;
  --primary-dark:#1457d4;
  --primary-light:#e8f0ff;
  --accent:#ff5c35;
  --green:#22c55e;
  --yellow:#f59e0b;
  --text:#1a2332;
  --muted:#64748b;
  --light:#f1f5f9;
  --border:#e2e8f0;
  --white:#ffffff;
  --font-head:'Playfair Display',serif;
  --font-body:'Plus Jakarta Sans',sans-serif;
  --r:12px;
  --shadow:0 4px 24px rgba(26,111,255,.10);
  --shadow-lg:0 12px 40px rgba(26,111,255,.18);
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text);background:#fff;font-size:15px;line-height:1.65;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ══════════════════ NAVBAR ══════════════════ */
nav{
  position:sticky;top:0;z-index:999;
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:0 5%;
  height:70px;
  display:flex;align-items:center;gap:2rem;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.nav-logo{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-head);font-size:1.5rem;font-weight:800;
  color:var(--primary);white-space:nowrap;
}
.nav-logo .dot{color:var(--accent)}
.nav-links{display:flex;align-items:center;gap:.25rem;margin-left:auto}
.nav-links a{
  padding:7px 14px;border-radius:8px;
  font-size:14px;font-weight:500;color:var(--muted);
  transition:all .2s;white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{color:var(--primary);background:var(--primary-light)}
.nav-actions{display:flex;gap:10px;margin-left:1.5rem;flex-shrink:0}
.btn{
  display:inline-flex;align-items:center;gap:7px;
  padding:10px 22px;border-radius:9px;font-family:var(--font-body);
  font-size:14px;font-weight:600;cursor:pointer;border:none;
  transition:all .22s;white-space:nowrap;
}
.btn-outline{background:#fff;color:var(--primary);border:1.5px solid var(--primary)}
.btn-outline:hover{background:var(--primary-light)}
.btn-primary{background:var(--primary);color:#fff;box-shadow:0 4px 14px rgba(26,111,255,.35)}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,111,255,.45)}
.btn-accent{background:var(--accent);color:#fff;box-shadow:0 4px 14px rgba(255,92,53,.35)}
.btn-accent:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,92,53,.45)}
.btn-white{background:#fff;color:var(--primary);font-weight:700}
.btn-white:hover{background:#f0f5ff}

/* ══════════════════ HERO ══════════════════ */
.hero{
  background: linear-gradient(135deg,#0c1d3d 0%,#1a3a6b 50%,#1a6fff 100%);
  padding:90px 5% 80px;
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;max-width:1200px;margin:0 auto;position:relative;z-index:1}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  color:#fff;font-size:13px;font-weight:600;
  padding:6px 14px;border-radius:50px;margin-bottom:1.5rem;
  backdrop-filter:blur(8px);
}
.hero-tag span{background:var(--accent);color:#fff;padding:2px 8px;border-radius:20px;font-size:11px}
.hero h1{
  font-family:var(--font-head);
  font-size:clamp(2.4rem,4vw,3.4rem);
  font-weight:800;color:#fff;
  line-height:1.18;letter-spacing:-.02em;
  margin-bottom:1.2rem;
}
.hero h1 em{color:#7dd3fc;font-style:normal}
.hero p{color:rgba(255,255,255,.75);font-size:16px;margin-bottom:2.5rem;max-width:480px;line-height:1.7}

.hero-search{
  background:#fff;border-radius:14px;
  padding:8px 8px 8px 20px;
  display:flex;align-items:center;gap:10px;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  margin-bottom:1.5rem;
}
.search-field{flex:1;display:flex;align-items:center;gap:10px}
.search-field .ico{color:var(--muted);font-size:18px;flex-shrink:0}
.search-field input{
  flex:1;border:none;outline:none;font-family:var(--font-body);
  font-size:15px;color:var(--text);background:transparent;
}
.search-field input::placeholder{color:#aab3c2}
.search-divider{width:1px;height:36px;background:var(--border);flex-shrink:0}
.hero-search .btn{padding:12px 26px;font-size:15px}

.hero-tags{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.hero-tags .label{color:rgba(255,255,255,.6);font-size:13px}
.hero-tags a{
  background:rgba(255,255,255,.1);color:rgba(255,255,255,.85);
  font-size:13px;padding:4px 12px;border-radius:20px;border:1px solid rgba(255,255,255,.15);
  transition:all .2s;
}
.hero-tags a:hover{background:rgba(255,255,255,.22);color:#fff}

/* Hero illustration side */
.hero-visual{position:relative;display:flex;justify-content:center}
.hero-card-main{
  background:#fff;border-radius:20px;padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  max-width:320px;width:100%;
}
.hc-company{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.hc-logo{
  width:50px;height:50px;border-radius:13px;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;background:var(--primary-light);
}
.hc-name{font-weight:700;font-size:15px;color:var(--text)}
.hc-loc{font-size:12px;color:var(--muted)}
.hc-role{font-family:var(--font-head);font-size:1.2rem;font-weight:700;margin-bottom:8px}
.hc-chips{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:18px}
.chip{font-size:11px;font-weight:600;padding:4px 10px;border-radius:20px}
.chip-blue{background:#dbeafe;color:#1d4ed8}
.chip-green{background:#dcfce7;color:#15803d}
.chip-org{background:#ffedd5;color:#c2410c}
.hc-sal{font-size:1.4rem;font-weight:800;color:var(--primary);margin-bottom:4px}
.hc-sal span{font-size:13px;font-weight:500;color:var(--muted)}
.hc-bar{height:5px;background:#f1f5f9;border-radius:5px;margin-bottom:6px;overflow:hidden}
.hc-bar-fill{height:100%;width:68%;background:linear-gradient(90deg,var(--primary),#38bdf8);border-radius:5px}
.hc-apps{font-size:12px;color:var(--muted)}
.hc-btn{width:100%;padding:12px;border-radius:10px;background:var(--primary);color:#fff;font-weight:700;font-size:15px;border:none;cursor:pointer;margin-top:14px;transition:background .2s}
.hc-btn:hover{background:var(--primary-dark)}

.hero-float{
  position:absolute;background:#fff;border-radius:14px;
  padding:12px 16px;box-shadow:0 8px 30px rgba(0,0,0,.18);
  display:flex;align-items:center;gap:10px;white-space:nowrap;
}
.hero-float.f1{top:-10px;right:-20px}
.hero-float.f2{bottom:40px;left:-30px}
.float-ico{
  width:38px;height:38px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.float-val{font-size:18px;font-weight:800;color:var(--text);line-height:1}
.float-sub{font-size:11px;color:var(--muted);margin-top:1px}

/* ══════════════════ STATS BAR ══════════════════ */
.stats-bar{background:var(--primary);padding:0 5%}
.stats-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
}
.stat-item{
  padding:28px 20px;text-align:center;
  border-right:1px solid rgba(255,255,255,.15);
  transition:background .2s;
}
.stat-item:last-child{border-right:none}
.stat-item:hover{background:rgba(255,255,255,.06)}
.stat-num{font-family:var(--font-head);font-size:2.2rem;font-weight:800;color:#fff}
.stat-lbl{font-size:13px;color:rgba(255,255,255,.7);margin-top:3px}

/* ══════════════════ SECTIONS ══════════════════ */
.section{padding:90px 5%}
.section-inner{max-width:1200px;margin:0 auto}
.section-tag{
  display:inline-block;
  background:var(--primary-light);color:var(--primary);
  font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:5px 14px;border-radius:20px;margin-bottom:14px;
}
.section-head{text-align:center;margin-bottom:3.5rem}
.section-head h2{
  font-family:var(--font-head);font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:800;color:var(--text);margin-bottom:.75rem;line-height:1.25;
}
.section-head p{color:var(--muted);max-width:520px;margin:0 auto;font-size:15.5px}
.alt-bg{background:var(--light)}

/* ══════════════════ HOW IT WORKS ══════════════════ */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.step-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:2.5rem 2rem;text-align:center;
  position:relative;transition:all .25s;
}
.step-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--primary)}
.step-num{
  position:absolute;top:-18px;left:50%;transform:translateX(-50%);
  width:36px;height:36px;border-radius:50%;
  background:var(--primary);color:#fff;
  font-weight:800;font-size:14px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(26,111,255,.4);
}
.step-icon{
  width:72px;height:72px;border-radius:18px;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
  font-size:32px;margin:0 auto 1.4rem;
}
.step-card h3{font-size:1.05rem;font-weight:700;margin-bottom:.6rem}
.step-card p{font-size:14px;color:var(--muted);line-height:1.65}

/* ══════════════════ CATEGORIES ══════════════════ */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.cat-card{
  background:#fff;border:1.5px solid var(--border);border-radius:14px;
  padding:1.75rem 1.5rem;cursor:pointer;
  transition:all .25s;display:flex;align-items:center;gap:14px;
}
.cat-card:hover{border-color:var(--primary);background:var(--primary-light);transform:translateY(-3px);box-shadow:var(--shadow)}
.cat-icon{
  width:52px;height:52px;border-radius:13px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:24px;
  transition:background .25s;
}
.cat-card:hover .cat-icon{background:#fff}
.cat-card h4{font-size:14.5px;font-weight:700;margin-bottom:3px}
.cat-card span{font-size:12.5px;color:var(--muted)}

/* ══════════════════ ABOUT / FEATURES ══════════════════ */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-imgs{position:relative;height:460px}
.about-img1{
  width:66%;border-radius:20px;
  overflow:hidden;position:absolute;bottom:0;left:0;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}
.about-img1 img,.about-img2 img{width:100%;height:100%;object-fit:cover}
.about-img2{
  width:58%;border-radius:20px;overflow:hidden;
  position:absolute;top:0;right:0;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}
.about-badge{
  position:absolute;bottom:40px;right:0;
  background:#fff;border-radius:14px;padding:14px 18px;
  box-shadow:0 8px 30px rgba(0,0,0,.14);
  display:flex;align-items:center;gap:12px;
  border:1px solid var(--border);
}
.about-badge .ico{font-size:28px}
.about-badge strong{display:block;font-size:18px;font-weight:800;color:var(--primary)}
.about-badge span{font-size:12px;color:var(--muted)}
.about-content h2{font-family:var(--font-head);font-size:2.2rem;font-weight:800;line-height:1.25;margin-bottom:1rem}
.about-content p{color:var(--muted);margin-bottom:1.75rem;font-size:15.5px;line-height:1.75}
.features-list{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem}
.feature-item{display:flex;gap:14px;align-items:flex-start}
.feature-check{
  width:36px;height:36px;border-radius:10px;background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  color:var(--primary);font-size:16px;margin-top:2px;
}
.feature-item h4{font-size:14.5px;font-weight:700;margin-bottom:2px}
.feature-item p{font-size:13px;color:var(--muted)}

/* ══════════════════ JOB CARDS ══════════════════ */
.jobs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.job-card{
  background:#fff;border:1.5px solid var(--border);border-radius:14px;
  padding:1.5rem;display:flex;gap:14px;
  transition:all .25s;cursor:pointer;
}
.job-card:hover{border-color:var(--primary);box-shadow:var(--shadow);transform:translateY(-2px)}
.jc-logo{
  width:56px;height:56px;border-radius:14px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:26px;
  border:1px solid var(--border);background:#fafafa;
}
.jc-body{flex:1;min-width:0}
.jc-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px;margin-bottom:6px}
.jc-title{font-size:15px;font-weight:700;color:var(--text)}
.jc-title:hover{color:var(--primary)}
.jc-type{font-size:11px;font-weight:700;padding:3px 10px;border-radius:20px;white-space:nowrap}
.type-full{background:#dcfce7;color:#15803d}
.type-part{background:#fef3c7;color:#b45309}
.type-intern{background:#dbeafe;color:#1d4ed8}
.type-remote{background:#f3e8ff;color:#7e22ce}
.jc-company{font-size:13px;color:var(--muted);margin-bottom:10px}
.jc-desc{font-size:13px;color:var(--muted);margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.jc-footer{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.jc-meta{display:flex;align-items:center;gap:4px;font-size:12.5px;color:var(--muted)}
.jc-sal{margin-left:auto;font-size:14px;font-weight:700;color:var(--primary)}
.jobs-bottom{text-align:center;margin-top:2.5rem}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:1.5rem;flex-wrap:wrap}
.page-btn{
  width:38px;height:38px;border-radius:9px;border:1.5px solid var(--border);
  background:#fff;color:var(--muted);font-size:14px;font-weight:600;
  cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:center;
}
.page-btn:hover,.page-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}

/* ══════════════════ FEATURED JOBS ══════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.feat-card{
  background:#fff;border:1.5px solid var(--border);border-radius:16px;
  overflow:hidden;transition:all .25s;
}
.feat-card:hover{border-color:var(--primary);box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.feat-img{height:180px;overflow:hidden;background:linear-gradient(135deg,var(--primary-light),#dbeafe);position:relative}
.feat-img .feat-banner{width:100%;height:100%;object-fit:cover}
.feat-img .feat-banner-placeholder{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  font-size:56px;
}
.feat-badge{
  position:absolute;top:12px;left:12px;
  background:var(--accent);color:#fff;font-size:11px;font-weight:700;
  padding:4px 10px;border-radius:6px;
}
.feat-body{padding:1.4rem}
.feat-logo{
  width:48px;height:48px;border-radius:12px;margin-top:-38px;margin-bottom:12px;
  background:#fff;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:22px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);position:relative;z-index:1;
}
.feat-title{font-size:16px;font-weight:700;margin-bottom:6px;color:var(--text)}
.feat-title:hover{color:var(--primary)}
.feat-meta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:10px}
.feat-meta span{display:flex;align-items:center;gap:4px;font-size:12.5px;color:var(--muted)}
.feat-desc{font-size:13px;color:var(--muted);margin-bottom:1.2rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.feat-actions{display:flex;gap:10px}
.feat-actions a{
  flex:1;text-align:center;padding:9px 14px;border-radius:9px;font-size:13px;font-weight:600;
  transition:all .2s;cursor:pointer;
}
.fa-apply{background:var(--primary);color:#fff}
.fa-apply:hover{background:var(--primary-dark)}
.fa-save{background:var(--light);color:var(--muted);border:1px solid var(--border)}
.fa-save:hover{color:var(--text);background:var(--border)}

/* ══════════════════ TESTIMONIALS ══════════════════ */
.testi-section{
  background:linear-gradient(135deg,#0c1d3d,#1a3a6b);
  padding:90px 5%;position:relative;overflow:hidden;
}
.testi-section::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.testi-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1}
.testi-head{text-align:center;margin-bottom:3.5rem}
.testi-head .section-tag{background:rgba(255,255,255,.12);color:#fff}
.testi-head h2{font-family:var(--font-head);font-size:2.4rem;font-weight:800;color:#fff;margin-bottom:.5rem}
.testi-head p{color:rgba(255,255,255,.65)}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testi-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;padding:2rem;
  transition:all .25s;backdrop-filter:blur(8px);
}
.testi-card:hover{background:rgba(255,255,255,.13);transform:translateY(-4px)}
.testi-stars{color:#fbbf24;font-size:15px;margin-bottom:1rem;letter-spacing:2px}
.testi-text{color:rgba(255,255,255,.85);font-size:14.5px;line-height:1.75;margin-bottom:1.5rem;font-style:italic}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-avatar{
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:16px;color:#fff;flex-shrink:0;
}
.testi-name{font-weight:700;font-size:14px;color:#fff}
.testi-role{font-size:12.5px;color:rgba(255,255,255,.55)}

/* ══════════════════ PRICING ══════════════════ */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.price-card{
  background:#fff;border:2px solid var(--border);border-radius:18px;
  padding:2.4rem 2rem;text-align:center;
  position:relative;transition:all .25s;
}
.price-card:hover{border-color:var(--primary);box-shadow:var(--shadow-lg);transform:translateY(-5px)}
.price-card.featured{
  border-color:var(--primary);
  background:linear-gradient(180deg,var(--primary-light) 0%,#fff 40%);
}
.price-popular{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--primary);color:#fff;font-size:11px;font-weight:700;
  padding:4px 16px;border-radius:20px;white-space:nowrap;
  box-shadow:0 4px 12px rgba(26,111,255,.4);
}
.price-tier{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:1rem}
.price-val{
  font-family:var(--font-head);font-size:3.2rem;font-weight:800;color:var(--text);
  line-height:1;margin-bottom:.3rem;
}
.price-val sup{font-size:1.4rem;font-weight:700;vertical-align:super;margin-right:2px}
.price-per{font-size:13px;color:var(--muted);margin-bottom:1.75rem}
.price-features{list-style:none;margin-bottom:2rem;text-align:left;display:flex;flex-direction:column;gap:10px}
.price-features li{
  display:flex;align-items:center;gap:10px;font-size:14px;color:var(--muted);
}
.price-features li::before{content:'✓';color:var(--green);font-weight:700;width:18px;flex-shrink:0}
.price-features li.no{color:#ccc}
.price-features li.no::before{content:'✗';color:#ddd}

/* ══════════════════ BLOG ══════════════════ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.blog-card{
  background:#fff;border:1.5px solid var(--border);border-radius:16px;
  overflow:hidden;transition:all .25s;
}
.blog-card:hover{border-color:var(--primary);box-shadow:var(--shadow);transform:translateY(-4px)}
.blog-img{height:200px;overflow:hidden;position:relative}
.blog-img-placeholder{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  font-size:60px;
}
.blog-cat{
  position:absolute;top:14px;left:14px;
  background:var(--primary);color:#fff;font-size:11px;font-weight:700;
  padding:4px 12px;border-radius:6px;
}
.blog-body{padding:1.5rem}
.blog-meta{display:flex;gap:14px;margin-bottom:10px;flex-wrap:wrap}
.blog-meta span{font-size:12px;color:var(--muted);display:flex;align-items:center;gap:4px}
.blog-title{font-size:15.5px;font-weight:700;margin-bottom:.75rem;line-height:1.45;color:var(--text)}
.blog-title:hover{color:var(--primary)}
.blog-excerpt{font-size:13.5px;color:var(--muted);margin-bottom:1.25rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.blog-read{font-size:13.5px;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:5px}
.blog-read:hover{gap:9px}

/* ══════════════════ CTA BANNER ══════════════════ */
.cta-section{
  background:linear-gradient(135deg,var(--accent) 0%,#ff8c42 100%);
  padding:70px 5%;text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;top:-50%;right:-10%;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.08);
}
.cta-section::after{
  content:'';position:absolute;bottom:-30%;left:5%;
  width:280px;height:280px;border-radius:50%;
  background:rgba(255,255,255,.06);
}
.cta-inner{max-width:650px;margin:0 auto;position:relative;z-index:1}
.cta-section h2{font-family:var(--font-head);font-size:2.3rem;font-weight:800;color:#fff;margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,.85);font-size:16px;margin-bottom:2rem}
.cta-btns{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

/* ══════════════════ CLIENTS ══════════════════ */
.clients-section{padding:50px 5%;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.clients-inner{max-width:1200px;margin:0 auto;text-align:center}
.clients-label{font-size:13px;font-weight:600;color:var(--muted);letter-spacing:.05em;text-transform:uppercase;margin-bottom:1.75rem}
.clients-row{display:flex;align-items:center;justify-content:center;gap:3rem;flex-wrap:wrap}
.client-logo{
  font-family:var(--font-head);font-size:1.1rem;font-weight:700;
  color:#c0cde0;transition:color .2s;cursor:pointer;letter-spacing:-.01em;
}
.client-logo:hover{color:var(--primary)}

/* ══════════════════ APP DOWNLOAD ══════════════════ */
.app-section{
  background:linear-gradient(135deg,#f0f7ff,#e8f0ff);
  padding:80px 5%;
}
.app-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.app-content h2{font-family:var(--font-head);font-size:2.2rem;font-weight:800;margin-bottom:1rem;line-height:1.25}
.app-content p{color:var(--muted);font-size:15.5px;margin-bottom:2rem}
.app-btns{display:flex;gap:12px;flex-wrap:wrap}
.store-btn{
  display:flex;align-items:center;gap:10px;
  background:#0f172a;color:#fff;
  padding:11px 20px;border-radius:11px;
  transition:all .2s;
}
.store-btn:hover{background:#1e293b;transform:translateY(-2px)}
.store-ico{font-size:26px}
.store-lbl{font-size:10px;color:rgba(255,255,255,.6);display:block}
.store-name{font-size:14px;font-weight:700;color:#fff;display:block}
.app-visual{
  background:#fff;border-radius:24px;padding:40px;
  box-shadow:var(--shadow-lg);text-align:center;
  font-size:80px;line-height:1;
}
.app-visual p{font-size:14px;color:var(--muted);margin-top:1rem;font-weight:600}

/* ══════════════════ FOOTER ══════════════════ */
footer{background:#0c1d3d;color:#fff;padding:0 5%}
.footer-main{max-width:1200px;margin:0 auto;padding:60px 0 50px;display:grid;grid-template-columns:1.8fr 1fr 1fr 1.2fr;gap:3rem}
.footer-brand p{font-size:13.5px;color:rgba(255,255,255,.55);line-height:1.75;max-width:270px;margin:1rem 0 1.5rem}
.footer-contact{display:flex;flex-direction:column;gap:8px}
.footer-contact-item{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.55)}
.footer-contact-item .ci{font-size:14px}
.footer-col h4{font-size:13px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;margin-bottom:1.2rem;color:#fff}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-col a{font-size:13.5px;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-newsletter p{font-size:13.5px;color:rgba(255,255,255,.55);margin-bottom:1rem;line-height:1.65}
.newsletter-form{display:flex;flex-direction:column;gap:10px}
.newsletter-form input{
  width:100%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  border-radius:9px;padding:11px 16px;color:#fff;font-family:var(--font-body);font-size:14px;outline:none;
  transition:border-color .2s;
}
.newsletter-form input::placeholder{color:rgba(255,255,255,.35)}
.newsletter-form input:focus{border-color:var(--primary)}
.newsletter-form .btn{width:100%;justify-content:center;padding:11px}
.footer-social{display:flex;gap:9px;margin-top:1.5rem}
.social-ico{
  width:36px;height:36px;border-radius:9px;background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.65);
  display:flex;align-items:center;justify-content:center;font-size:16px;
  transition:all .2s;cursor:pointer;
}
.social-ico:hover{background:var(--primary);border-color:var(--primary);color:#fff}
.footer-bottom{
  max-width:1200px;margin:0 auto;
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:13px;color:rgba(255,255,255,.4)}
.footer-bottom a{color:rgba(255,255,255,.55);font-size:13px;transition:color .2s}
.footer-bottom a:hover{color:#fff}
.footer-btm-links{display:flex;gap:1.5rem;flex-wrap:wrap}

/* ══════════════════ ANIMATIONS ══════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.anim{animation:fadeUp .6s ease both}
.anim-1{animation-delay:.1s}.anim-2{animation-delay:.2s}.anim-3{animation-delay:.3s}.anim-4{animation-delay:.4s}