:root {
  --brand: #e02b20;
  --brand-dark: #b01c13;
  --brand-soft: #fff0ee;
  --navy: #131a2b;
  --navy-2: #1e2834;
  --text: #3a444f;
  --text-dark: #1e2329;
  --muted: #7b8794;
  --line: #e7ebef;
  --bg-soft: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(19, 26, 43, 0.10);
  --shadow-lg: 0 30px 80px rgba(224, 43, 32, 0.18);
  --radius: 16px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.25; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.center { text-align: center; margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: .3s; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 40px 90px rgba(224,43,32,.3); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Section scaffolding ---------- */
.section { padding: 90px 0; }
.section-tag { display: inline-block; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 2px; padding: 8px 18px; border-radius: 50px; margin-bottom: 16px; text-transform: uppercase; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 55px; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-head h2 span, .about-copy h2 span, .contact-form-col h2 span, .section-head span { color: var(--brand); }
.section-head p { color: var(--muted); }
.section-head.light { color: #fff; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #c8cede; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #d7dce6; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a { display: inline-flex; align-items: center; gap: 8px; transition: .3s; }
.topbar-left a:hover { color: var(--brand); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a:not(.topbar-cta) { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 12px; transition: .3s; }
.topbar-right a:not(.topbar-cta):hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.topbar-cta { background: var(--brand); color: #fff !important; padding: 6px 16px; border-radius: 50px; font-weight: 600; }
.topbar-cta:hover { background: var(--brand-dark); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 46px; height: 46px; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 15px; border-radius: 12px; letter-spacing: .5px; box-shadow: var(--shadow-lg); }
.logo-text { font-weight: 800; font-size: 22px; color: var(--text-dark); line-height: 1.1; }
.logo-text small { display: block; font-size: 9px; letter-spacing: 3px; color: var(--brand); font-weight: 600; }

.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--navy); cursor: pointer; }

.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav > ul > li { position: relative; }
.nav > ul > li > a { display: flex; align-items: center; gap: 6px; padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--text-dark); border-radius: 8px; transition: .3s; }
.nav > ul > li > a:hover { color: var(--brand); }
.nav > ul > li > a .fa-chevron-down { font-size: 10px; transition: .3s; }
.nav > ul > li:hover > a .fa-chevron-down { transform: rotate(180deg); }
.nav > ul > li:hover > a { color: var(--brand); }

.dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 0 0 12px 12px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; z-index: 50; }
.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 14px; font-size: 13px; border-radius: 8px; transition: .25s; }
.dropdown li a:hover { background: var(--brand-soft); color: var(--brand); padding-left: 20px; }

.nav-cta { background: var(--brand); color: #fff !important; margin-left: 8px; padding: 12px 22px !important; border-radius: 50px !important; }
.nav-cta:hover { background: var(--brand-dark) !important; color: #fff !important; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(140deg, #fff5f3 0%, #ffffff 45%, #fdece9 100%); overflow: hidden; padding: 80px 0 0; }
.hero::before { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(224,43,32,.12), transparent 65%); top: -160px; right: -120px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-copy h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.hero-copy h1 span { color: var(--brand); }
.hero-copy p { color: var(--muted); font-size: 16px; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.hero-badges i { color: var(--brand); font-size: 16px; }

.hero-visual { position: relative; height: 480px; }
.hero-ring { position: absolute; border-radius: 50%; border: 2px dashed rgba(224,43,32,.35); }
.hero-ring-1 { width: 420px; height: 420px; top: 30px; left: 30px; animation: spin 40s linear infinite; }
.hero-ring-2 { width: 300px; height: 300px; top: 90px; left: 90px; border-color: rgba(224,43,32,.2); animation: spin 26s linear infinite reverse; }
.hero-card { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; width: 270px; z-index: 2; }
.hero-card-front { top: 130px; left: 40px; border-top: 6px solid var(--brand); }
.hero-card-back { bottom: 30px; right: 20px; border-top: 6px solid var(--navy-2); }
.hc-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); border-radius: 14px; font-size: 22px; margin-bottom: 14px; }
.hero-card-back .hc-icon { background: var(--navy); color: #fff; }
.hero-card h3 { font-size: 17px; margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-strip { margin-top: 70px; background: var(--navy); color: #d7dce6; }
.hero-strip-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 20px 0; font-size: 14px; font-weight: 500; }
.hero-strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip-inner i { color: var(--brand); }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img { position: relative; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: 24px; height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; overflow: hidden; }
.about-img .fa-chart-line { font-size: 90px; color: var(--brand); margin-bottom: 20px; }
.about-img h3 { color: #fff; font-size: 26px; line-height: 1.3; }
.about-img-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(224,43,32,.5), transparent 70%); top: -80px; right: -60px; }
.about-float-card { position: absolute; bottom: -20px; left: -30px; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 18px 26px; border-left: 5px solid var(--brand); z-index: 3; }
.about-float-card h4 { font-size: 26px; color: var(--brand); }
.about-float-card p { font-size: 13px; color: var(--muted); }
.about-float-card-2 { left: auto; right: -20px; bottom: 60px; border-left: none; border-right: 5px solid var(--navy); }
.about-float-card-2 h4 { color: var(--navy); }
.about-copy h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 18px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-copy .lead { color: var(--text); font-size: 16px; }
.about-list { margin: 24px 0 30px; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-dark); }
.about-list i { color: var(--brand); }

/* ---------- Services / Tabs ---------- */
.services { background: var(--bg-soft); }
.tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 45px; }
.tab-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 50px; border: 2px solid var(--line); background: #fff; font-family: var(--font); font-weight: 600; font-size: 15px; color: var(--text-dark); cursor: pointer; transition: .3s; }
.tab-btn i { color: var(--brand); }
.tab-btn:hover { border-color: var(--brand); }
.tab-btn.active { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); border-color: transparent; color: #fff; box-shadow: var(--shadow-lg); }
.tab-btn.active i { color: #fff; }
.tab-panel { display: none; animation: fadeUp .5s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.tab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tab-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 30px rgba(19,26,43,.06); border: 1px solid var(--line); transition: .35s; position: relative; overflow: hidden; }
.tab-card::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 0; height: 4px; background: var(--brand); transition: .35s; }
.tab-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.tab-card:hover::before { width: 100%; }
.tab-card > i { font-size: 34px; color: var(--brand); margin-bottom: 16px; display: inline-block; transition: .3s; }
.tab-card:hover > i { transform: rotate(-8deg) scale(1.1); }
.tab-card h3 { font-size: 17px; margin-bottom: 8px; }
.tab-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- How ---------- */
.how { background: linear-gradient(135deg, var(--navy), var(--navy-2)); position: relative; overflow: hidden; }
.how::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(224,43,32,.25), transparent 65%); bottom: -200px; left: -120px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px; transition: .35s; }
.how-card:hover { background: rgba(224,43,32,.15); transform: translateY(-6px); }
.how-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--brand); color: #fff; border-radius: 14px; font-size: 22px; margin-bottom: 18px; }
.how-card h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.how-card p { color: #c8cede; font-size: 14px; }
.how-note { text-align: center; color: #fff; margin: 60px 0 24px; font-size: 18px; font-weight: 600; position: relative; }

/* ---------- Clients ---------- */
.clients { background: var(--white); }
.client-marquee { overflow: hidden; position: relative; padding: 10px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.client-track { display: flex; gap: 20px; width: max-content; animation: marquee 30s linear infinite; }
.client-track:hover { animation-play-state: paused; }
.client-track span { display: inline-flex; align-items: center; gap: 12px; background: var(--bg-soft); border: 1px solid var(--line); padding: 18px 34px; border-radius: 14px; font-weight: 700; font-size: 16px; color: var(--text-dark); white-space: nowrap; }
.client-track span i { color: var(--brand); font-size: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-soft); position: relative; }
.t-slider { position: relative; max-width: 820px; margin: 0 auto; min-height: 320px; }
.t-slide { position: absolute; inset: 0; background: #fff; border-radius: 20px; box-shadow: var(--shadow); padding: 48px; text-align: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: .5s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.t-slide.active { position: relative; opacity: 1; visibility: visible; transform: none; }
.t-stars { color: #ffb900; font-size: 18px; margin-bottom: 18px; letter-spacing: 3px; }
.t-quote { font-size: 17px; color: var(--text); font-style: italic; max-width: 640px; margin-bottom: 26px; }
.t-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; display: grid; place-items: center; font-size: 24px; margin-bottom: 12px; }
.t-slide h4 { font-size: 17px; }
.t-slide > span { font-size: 13px; color: var(--muted); }
.t-nav { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.t-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--line); background: #fff; color: var(--text-dark); cursor: pointer; transition: .3s; font-size: 15px; }
.t-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Blog ---------- */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 10px; }
.blog-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; transition: .35s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-img { height: 200px; background: var(--img), #eee; display: grid; place-items: center; color: #fff; position: relative; }
.blog-img i { font-size: 60px; opacity: .85; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.blog-meta i { color: var(--brand); }
.blog-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.45; }
.blog-body p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.blog-link { color: var(--brand); font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; gap: 8px; }
.blog-link:hover { gap: 12px; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: start; }
.contact-form-col { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.contact-form-col h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.quote-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.field label span { color: var(--brand); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--font); font-size: 14px; color: var(--text-dark); background: var(--bg-soft); transition: .3s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(224,43,32,.08); }
.form-msg { font-size: 14px; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: #16a34a; }
.form-msg.err { color: var(--brand); }

.contact-info-col { display: grid; gap: 20px; }
.contact-info-col h3 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.ci-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: 16px; padding: 22px; box-shadow: 0 10px 30px rgba(19,26,43,.06); border: 1px solid var(--line); }
.ci-icon { width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); border-radius: 12px; font-size: 19px; }
.ci-card h4 { font-size: 16px; margin-bottom: 4px; }
.ci-card a { color: var(--text); }
.ci-card a:hover { color: var(--brand); }
.ci-card p { font-size: 14px; color: var(--muted); }
.ci-partner { display: flex; gap: 14px; flex-wrap: wrap; }
.ci-partner span { flex: 1; min-width: 140px; display: flex; align-items: center; justify-content: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; font-weight: 700; font-size: 14px; color: var(--text-dark); }
.ci-partner i { font-size: 22px; color: var(--brand); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c2d0; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding-bottom: 50px; }
.logo-light .logo-text { color: #fff; }
.footer-about { grid-column: 1 / -1; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 10px; }
.footer-about p { font-size: 14px; margin: 18px 0; color: #9aa4b5; max-width: 640px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 14px; color: #cbd3de; transition: .3s; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: #9aa4b5; transition: .3s; }
.footer-col a:hover { color: var(--brand); padding-left: 6px; }
.footer-col.collapsible h4 { display: flex; justify-content: space-between; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.footer-col.collapsible h4::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 12px; color: #8d97a8; transition: transform .3s ease; transform: rotate(-90deg); }
.footer-col.collapsible.open h4::after { transform: rotate(0); }
.footer-col.collapsible ul { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.footer-col.collapsible.open ul { max-height: 400px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13.5px; color: #8d97a8; flex-wrap: wrap; gap: 10px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 28px; box-shadow: 0 14px 40px rgba(37,211,102,.45); z-index: 90; transition: .3s; }
.wa-float:hover { transform: scale(1.12) rotate(8deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tab-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .about-float-card { left: 10px; }
  .about-float-card-2 { right: 10px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-right a:not(.topbar-cta) { display: none; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: #fff; box-shadow: -20px 0 60px rgba(0,0,0,.15); transform: translateX(100%); transition: .4s; z-index: 200; padding: 90px 20px 30px; overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav > ul > li > a { justify-content: space-between; padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding: 0 0 0 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { margin: 16px 0 0; text-align: center; border-radius: 50px !important; }
  .tab-grid, .blog-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .t-slide { padding: 34px 22px; }
  .hero { padding: 50px 0 0; }
  .hero-badges { gap: 14px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===================== INNER / SERVICE PAGES ===================== */

/* ---------- Page hero ---------- */
.page-hero { background: var(--ph), linear-gradient(135deg, #131a2b, #1e2834); color: #fff; padding: 70px 0 80px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%); top: -160px; right: -100px; }
.breadcrumb { font-size: 13px; color: #c0c8d4; margin-bottom: 26px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: #ffb3ad; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: #fff; font-weight: 600; }
.ph-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.ph-grid h1 { color: #fff; font-size: clamp(30px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.ph-sub { color: #d4dae4; font-size: 17px; max-width: 640px; margin-bottom: 28px; }
.ph-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--brand); color: #fff; }
.ph-icon { width: 170px; height: 170px; border-radius: 42px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; font-size: 66px; justify-self: center; box-shadow: inset 0 0 60px rgba(255,255,255,.06); }
.ph-placeholder { border: 1.5px dashed rgba(255,255,255,.32); border-radius: 26px; padding: 46px 44px; background: rgba(255,255,255,.05); text-align: left; position: relative; z-index: 2; max-width: 900px; }
.ph-placeholder::before { content: ''; position: absolute; inset: 0; border-radius: 26px; background: radial-gradient(circle at 15% 0%, rgba(224,43,32,.16), transparent 55%); pointer-events: none; }
.ph-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(224,43,32,.18); color: #ffb3ad; border: 1px solid rgba(224,43,32,.45); padding: 7px 14px; border-radius: 50px; margin-bottom: 18px; }
.ph-badge i { font-size: 13px; }
.ph-placeholder h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; margin-bottom: 14px; }
.ph-placeholder .ph-sub { margin-bottom: 26px; }
.ph-strip-intro { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.14); position: relative; z-index: 2; }
.ph-strip-inner { display: flex; gap: 26px; flex-wrap: wrap; padding: 22px 0 0; font-size: 14px; font-weight: 500; }
.ph-strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.ph-strip-inner i { color: #ffb3ad; }

/* ---------- Service intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: center; }
.intro-copy h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 18px; }
.intro-copy > p { color: var(--muted); margin-bottom: 24px; font-size: 15.5px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 500; color: var(--text-dark); }
.feature-list i { color: var(--brand); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.intro-visual { position: relative; }
.iv-card { background: var(--navy); border-radius: 24px; padding: 40px 34px; color: #fff; position: relative; overflow: hidden; }
.iv-card::after { content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(224,43,32,.5), transparent 70%); bottom: -90px; right: -60px; }
.iv-icon { width: 62px; height: 62px; border-radius: 16px; background: var(--brand); display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; }
.iv-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.iv-card > p { color: #c8cede; font-size: 14.5px; margin-bottom: 26px; position: relative; z-index: 2; }
.iv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; position: relative; z-index: 2; }
.iv-stats strong { display: block; color: var(--brand); font-size: 24px; }
.iv-stats span { font-size: 12px; color: #b6c0cf; }

/* ---------- Related services ---------- */
.related { background: var(--white); }
.related .section-head { margin-bottom: 50px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.group-grid { grid-template-columns: repeat(3, 1fr); }
.related-card { display: block; }
.related-card h3 { font-size: 16px; margin-bottom: 8px; }
.related-desc { font-size: 13px; }
.related-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 600; font-size: 13.5px; margin-top: 14px; transition: gap .3s; }
.related-card:hover .related-link { gap: 13px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 52px 0; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 8px; }
.cta-inner p { color: #ffe3e0; font-size: 15px; }
.cta-inner .btn-primary { background: #fff; color: var(--brand); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.cta-inner .btn-primary:hover { transform: translateY(-3px); background: #fff; }

/* ---------- Values (about) ---------- */
.values { background: var(--bg-soft); }

/* ---------- Careers ---------- */
.careers { background: var(--bg-soft); }
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: .3s; display: flex; flex-direction: column; gap: 10px; }
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.job-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.job-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 50px; }
.job-loc { font-size: 12.5px; color: var(--muted); }
.job-loc i { color: var(--brand); }
.job-card h3 { font-size: 18px; }
.job-card p { font-size: 13.5px; color: var(--muted); }
.career-note { text-align: center; margin-top: 44px; background: #fff; border: 1px dashed var(--line); border-radius: 14px; padding: 22px; font-size: 14.5px; color: var(--muted); }
.career-note a { color: var(--brand); font-weight: 600; }

/* ---------- FAQ ---------- */
.faqs { background: var(--bg-soft); }
.faq-wrap { max-width: 860px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: var(--font); font-size: 15.5px; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q i { color: var(--brand); transition: .3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open { border-color: var(--brand); box-shadow: 0 10px 30px rgba(224,43,32,.08); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 14.5px; color: var(--muted); }

/* ---------- Nav active state ---------- */
.nav > ul > li > a.active { color: var(--brand); }

@media (max-width: 1024px) {
  .ph-grid, .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .ph-icon { display: none; }
  .related-grid, .group-grid, .job-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .related-grid, .group-grid, .job-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .ph-strip-inner { gap: 14px; }
  .cta-inner { justify-content: center; text-align: center; }
  .page-hero { padding: 50px 0 55px; }
}

/* ===================== VAN ADS (van-ads.html) ===================== */

/* ---------- Stat strip ---------- */
.va-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.va-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: 0 10px 30px rgba(19,26,43,.06); transition: .3s; }
.va-stat:hover { transform: translateY(-5px); border-color: var(--brand); }
.va-stat strong { display: block; font-size: 26px; font-weight: 800; color: var(--brand); margin-bottom: 4px; }
.va-stat span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- Data / comparison tables ---------- */
.va-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(19,26,43,.06); }
.va-table { width: 100%; border-collapse: collapse; background: #fff; }
.va-table th { background: var(--navy); color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; padding: 15px 18px; text-align: left; white-space: nowrap; }
.va-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.va-table tbody tr:last-child td { border-bottom: none; }
.va-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.va-table .va-lead { font-weight: 700; color: var(--text-dark); white-space: nowrap; }

/* ---------- Zone chips ---------- */
.zone-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-chip { background: var(--brand-soft); color: var(--brand); font-weight: 600; font-size: 13px; padding: 9px 18px; border-radius: 50px; border: 1px solid rgba(224,43,32,.15); }
.zone-chip-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }

/* ---------- Best-areas cards ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 12px; padding: 18px 20px; box-shadow: 0 8px 24px rgba(19,26,43,.05); transition: .3s; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card h4 { font-size: 15px; margin-bottom: 4px; }
.area-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- Article body blocks ---------- */
.va-article .va-para { color: var(--muted); font-size: 15.5px; margin-top: 16px; }
.va-sub-block { margin-top: 40px; }
.va-tagline { font-weight: 700; color: var(--text-dark); font-size: 16px; margin: 34px 0 14px; }
.va-tagline i { color: var(--brand); margin-right: 8px; }

/* ---------- Cost row ---------- */
.cost-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.cost-item { flex: 1; min-width: 180px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-align: center; }
.cost-item strong { display: block; font-size: 22px; font-weight: 800; color: var(--brand); }
.cost-item span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- Pricing (van-ads.html) ---------- */
.pricing { background: var(--bg-soft); }
.pricing-note { font-size: 13.5px; color: var(--muted); margin-top: 18px; display: flex; align-items: flex-start; gap: 10px; }
.pricing-note i { color: var(--brand); margin-top: 3px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pkg-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; position: relative; transition: .35s; display: flex; flex-direction: column; }
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.pkg-card.featured { background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-color: transparent; }
.pkg-badge { position: absolute; top: -14px; left: 28px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; box-shadow: var(--shadow-lg); }
.pkg-card h3 { font-size: 18px; margin-bottom: 6px; }
.pkg-card.featured h3 { color: #fff; }
.pkg-card .pkg-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.pkg-card.featured .pkg-sub { color: #c8cede; }
.pkg-price { font-size: 34px; font-weight: 800; color: var(--brand); line-height: 1.1; margin-bottom: 4px; }
.pkg-card.featured .pkg-price { color: #ff6a60; }
.pkg-per { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pkg-card.featured .pkg-per { color: #c8cede; }
.pkg-list { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); }
.pkg-card.featured .pkg-list li { color: #c8cede; }
.pkg-list i { color: var(--brand); margin-top: 4px; font-size: 14px; flex-shrink: 0; }
.pkg-cta { margin-top: auto; text-align: center; }
.pkg-card .btn { width: 100%; justify-content: center; }
.pkg-card.featured .btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }

@media (max-width: 1024px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; } }

@media (max-width: 1024px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .va-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .area-grid, .va-stats { grid-template-columns: 1fr; }
  .cost-item { min-width: 100%; }
}