/* ==========================================================================
   IT SHIELDS — Component Styles
   Navbar, hero, footer, forms, modals, and section-specific components.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy); color: #cdd6ea;
  font-size: 13.5px; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar a { color: #cdd6ea; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--green); }
.topbar-left { display: flex; gap: 22px; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar { display: none; } }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.nav {
  position: hold; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s;
}
.nav.scrolled { box-shadow: var(--sh-md); border-color: var(--border); }
.nav .container { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; }
.nav-logo .logo-dark { display: none; }
[data-theme="dark"] .nav-logo .logo-light { display: none; }
[data-theme="dark"] .nav-logo .logo-dark { display: block; }

.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 15px; color: var(--text);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--green-700); background: rgba(55,201,90,.08); }
[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active { color: var(--green); }
.nav-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--text);
  border: 1px solid var(--border); background: var(--surface);
  transition: background .2s, color .2s, border-color .2s;
}
.icon-btn:hover { color: var(--green-700); border-color: var(--green); }
.icon-btn svg { width: 20px; height: 20px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(880px, 92vw);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-xl);
  padding: 26px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease-out), visibility .25s;
  z-index: 1001;
}
.nav-item.has-mega:hover .mega,
.nav-item.has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mega-link { display: flex; gap: 13px; padding: 13px; border-radius: var(--r-md); transition: background .2s; }
.mega-link:hover { background: var(--bg-alt); }
.mega-ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: rgba(55,201,90,.12); color: var(--green-700); }
[data-theme="dark"] .mega-ico { color: var(--green); }
.mega-ico svg { width: 21px; height: 21px; }
.mega-link h4 { font-size: 15px; font-family: var(--font-sans); font-weight: 700; margin-bottom: 2px; }
.mega-link p { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.mega-foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mega-foot p { font-size: 14px; color: var(--text-muted); }
.mega-foot strong { color: var(--text); }

/* Mobile toggles */
.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   Mobile drawer
   -------------------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(11,20,40,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 1100;
  backdrop-filter: blur(2px);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw);
  background: var(--bg); z-index: 1101;
  transform: translateX(100%); transition: transform .35s var(--ease-out);
  display: flex; flex-direction: column; box-shadow: var(--sh-xl);
  overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.drawer-head img { height: 40px; }
.drawer-nav { padding: 12px 16px; }
.drawer-nav a { display: block; padding: 14px 12px; font-weight: 600; font-size: 16px; border-radius: var(--r-sm); }
.drawer-nav a:hover { background: var(--bg-alt); color: var(--green-700); }
.drawer-sub { padding-left: 12px; }
.drawer-sub a { font-size: 15px; color: var(--text-muted); padding: 10px 12px; }
.drawer-group-title { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); padding: 16px 12px 6px; font-weight: 700; }
.drawer-cta { padding: 20px; margin-top: auto; border-top: 1px solid var(--border); display: grid; gap: 10px; }

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: grid; }
  .nav-actions .desktop-only { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-hero); color: #fff;
  padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 10vw, 140px);
}
.hero::before { /* subtle grid */
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.hero-glow.g1 { width: 480px; height: 480px; background: var(--green); top: -160px; right: -120px; opacity: .25; }
.hero-glow.g2 { width: 420px; height: 420px; background: var(--accent); bottom: -180px; left: -120px; opacity: .3; }

.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge { color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.hero h1 { color: #fff; font-size: clamp(38px, 5.4vw, 66px); margin-bottom: 22px; }
.hero h1 .grad-text { background: linear-gradient(120deg, var(--green), #7fe39a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: clamp(17px, 2vw, 21px); color: #c3cde6; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: #aebbd8; font-size: 14px; font-weight: 500; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); }

/* Hero visual (floating cards) */
.hero-visual { position: relative; height: 460px; }
.hero-orb {
  position: absolute; inset: 0; margin: auto; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(55,201,90,.4), rgba(38,59,125,.1) 70%);
  border: 1px solid rgba(255,255,255,.12);
}
.float-card {
  position: absolute; display: flex; align-items: center; gap: 13px;
  padding: 16px 20px; border-radius: var(--r-md);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3); color: #fff;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-brand); flex-shrink: 0; }
.float-card .fc-ico svg { width: 22px; height: 22px; }
.float-card b { display: block; font-size: 15px; font-family: var(--font-display); }
.float-card small { color: #b7c2de; font-size: 12.5px; }
.float-card.fc1 { top: 20px; left: 0; animation-delay: 0s; }
.float-card.fc2 { top: 120px; right: 0; animation-delay: 1.2s; }
.float-card.fc3 { bottom: 90px; left: 12px; animation-delay: 2.1s; }
.float-card.fc4 { bottom: 8px; right: 30px; animation-delay: .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }
.hero-wave path { fill: var(--bg); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; order: -1; }
  .hero-actions .btn { flex: 1; }
}

/* --------------------------------------------------------------------------
   Logo marquee / client logos
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--text-muted); opacity: .65; white-space: nowrap; letter-spacing: -.01em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(55,201,90,.14), transparent 40%); }
.stats .grid { position: relative; z-index: 1; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 58px); background: linear-gradient(120deg, var(--green), #8fe6a5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: #b7c2de; font-weight: 600; font-size: 15px; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Feature / split sections
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.media-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); border: 1px solid var(--border); aspect-ratio: 4/3; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fl-ico { width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; background: rgba(55,201,90,.14); color: var(--green-700); display: grid; place-items: center; }
[data-theme="dark"] .feature-list .fl-ico { color: var(--green); }
.feature-list .fl-ico svg { width: 18px; height: 18px; }
.feature-list h4 { font-size: 17px; font-family: var(--font-sans); font-weight: 700; margin-bottom: 3px; }
.feature-list p { color: var(--text-muted); font-size: 15px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse .split-media { order: 0; } }

/* Decorative gradient panel used as image placeholder */
.gfx { width: 100%; height: 100%; display: grid; place-items: center; color: #fff; position: relative; overflow: hidden; }
.gfx svg.big { width: 120px; height: 120px; opacity: .95; }
.gfx.brand { background: var(--grad-hero); }
.gfx.green { background: linear-gradient(135deg, #1F9E3F, #37C95A); }
.gfx.accent { background: linear-gradient(135deg, #263B7D, #4E7BFF); }
.gfx-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.15) 1.5px, transparent 1.5px); background-size: 22px 22px; }

/* --------------------------------------------------------------------------
   Process (timeline)
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process::before { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--green), var(--accent)); opacity: .3; }
.pstep { text-align: center; position: relative; }
.pstep-ico { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--border); color: var(--green-700); position: relative; z-index: 1; transition: transform .3s, box-shadow .3s, border-color .3s; }
[data-theme="dark"] .pstep-ico { color: var(--green); }
.pstep:hover .pstep-ico { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--sh-green); }
.pstep-ico svg { width: 28px; height: 28px; }
.pstep-num { position: absolute; top: -6px; right: calc(50% - 44px); font-size: 12px; font-weight: 800; background: var(--green); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; }
.pstep h4 { font-size: 18px; margin-bottom: 6px; }
.pstep p { font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); gap: 34px; } .process::before { display: none; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.tcard { display: flex; flex-direction: column; height: 100%; }
.tstars { display: flex; gap: 3px; color: #FFB531; margin-bottom: 16px; }
.tstars svg { width: 18px; height: 18px; fill: currentColor; }
.tcard blockquote { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 22px; flex: 1; }
.tauthor { display: flex; align-items: center; gap: 13px; }
.tavatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-family: var(--font-display); background: var(--grad-brand); }
.tauthor b { display: block; font-size: 15px; }
.tauthor small { color: var(--text-muted); font-size: 13.5px; }
.rating-strip { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 10px 20px; box-shadow: var(--sh-sm); }
.rating-strip .g { font-weight: 800; font-family: var(--font-display); }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; background: var(--grad-hero); border-radius: var(--r-xl); padding: 66px 48px; text-align: center; color: #fff; box-shadow: var(--sh-xl); }
.cta-banner::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(55,201,90,.35), transparent 60%); top: -200px; right: -120px; }
.cta-banner::after { content: ''; position: absolute; width: 420px; height: 420px; background: radial-gradient(circle, rgba(78,123,255,.35), transparent 60%); bottom: -220px; left: -120px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-banner p { color: #c3cde6; font-size: 18px; max-width: 620px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: 72px 0 88px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 15%, rgba(55,201,90,.18), transparent 45%); }
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; }
.page-hero p { color: #c3cde6; font-size: 19px; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #aebbd8; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-lg); }
.field { margin-bottom: 18px;color: #121212; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field label .req { color: var(--green-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(55,201,90,.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #E5484D; box-shadow: 0 0 0 4px rgba(229,72,77,.12); }
.field .err { color: #E5484D; font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green); flex-shrink: 0; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text-muted); background: var(--bg-alt); border: 1px solid var(--border); padding: 8px 14px; border-radius: var(--r-pill); }
.trust-badge svg { width: 16px; height: 16px; color: var(--green-700); }

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(11,20,40,.6); backdrop-filter: blur(4px); display: grid; place-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; padding: 20px; }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: var(--surface); border-radius: var(--r-xl); padding: 40px 34px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--sh-xl); transform: scale(.92) translateY(10px); transition: transform .3s var(--ease-out); }
.modal-backdrop.open .modal { transform: none; }
.modal-ico { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; }
.modal-ico.success { background: rgba(55,201,90,.14); color: var(--green-700); }
.modal-ico.error { background: rgba(229,72,77,.14); color: #E5484D; }
.modal-ico svg { width: 36px; height: 36px; }
.modal h3 { font-size: 24px; margin-bottom: 10px; }
.modal p { color: var(--text-muted); margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--sh-md); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 17px; font-family: var(--font-display); color: var(--text); }
.faq-q svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-700); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .35s var(--ease-out), box-shadow .35s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card.featured { border-color: var(--green); box-shadow: var(--sh-lg); }
.price-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-green); }
.price-name { font-size: 15px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--green-700); }
[data-theme="dark"] .price-name { color: var(--green); }
.price-amt { font-family: var(--font-display); font-weight: 800; font-size: 48px; margin: 12px 0 2px; }
.price-unit { color: var(--text-muted); font-size: 14px; }
.price-tag { color: var(--text-muted); font-size: 14.5px; margin: 12px 0 22px; min-height: 42px; }
.price-features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.price-features svg { width: 19px; height: 19px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.compare th, .compare td { padding: 15px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.compare th { font-family: var(--font-display); font-size: 16px; }
.compare thead th { background: var(--bg-alt); }
.compare td:first-child, .compare th:first-child { text-align: left; font-weight: 600; }
.compare .yes { color: var(--green); }
.compare .no { color: var(--text-muted); opacity: .4; }
.compare tbody tr:hover { background: var(--bg-alt); }
.table-wrap { overflow-x: auto; }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-thumb { height: 190px; position: relative; }
.blog-thumb .gfx-dots { opacity: .5; }
.blog-cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--navy); font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: var(--r-pill); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 14px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-body h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.blog-body p { color: var(--text-muted); font-size: 14.5px; flex: 1; }
.blog-foot { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13.5px; }
.blog-foot .tavatar { width: 34px; height: 34px; font-size: 13px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.chip { padding: 9px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--border); background: var(--surface); font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s; }
.chip:hover, .chip.active { background: var(--green); color: #fff; border-color: var(--green); }

/* Blog layout w/ sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { font-size: 17px; margin-bottom: 16px; }
.search-box { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 10px 14px; }
.search-box input { border: none; background: none; outline: none; width: 100%; color: var(--text); }
.search-box svg { width: 18px; height: 18px; color: var(--text-muted); }
.side-list li a { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.side-list li:last-child a { border: none; }
.side-list li a:hover { color: var(--green-700); }
.toc { position: sticky; top: 96px; }
.toc a { display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--border); font-size: 14px; color: var(--text-muted); }
.toc a:hover { color: var(--green-700); border-color: var(--green); }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

/* Article body */
.article { max-width: 760px; }
.article p { margin-bottom: 20px; font-size: 17px; line-height: 1.8; color: var(--text); }
.article h2 { font-size: 30px; margin: 40px 0 16px; }
.article h3 { font-size: 23px; margin: 30px 0 12px; }
.article ul { margin: 0 0 20px 22px; list-style: disc; color: var(--text); }
.article ul li { margin-bottom: 9px; }
.article blockquote { border-left: 4px solid var(--green); padding: 6px 20px; margin: 24px 0; color: var(--text-muted); font-style: italic; background: var(--bg-alt); border-radius: 0 var(--r-md) var(--r-md) 0; }

/* --------------------------------------------------------------------------
   Contact cards & floating buttons
   -------------------------------------------------------------------------- */
.contact-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-card .cc-ico { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--sh-green); }
.contact-card .cc-ico svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 17px; margin-bottom: 3px; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 15px; }
.contact-card a:hover { color: var(--green-700); }
.map-placeholder { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; position: relative; }

.floating-call { position: fixed; bottom: 24px; left: 24px; z-index: 900; display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff; padding: 14px 22px; border-radius: var(--r-pill); box-shadow: var(--sh-green); font-weight: 700; font-family: var(--font-display); animation: pulse-call 2.4s infinite; }
.floating-call svg { width: 20px; height: 20px; }
@keyframes pulse-call { 0%,100% { box-shadow: 0 12px 30px rgba(55,201,90,.32); } 50% { box-shadow: 0 12px 40px rgba(55,201,90,.6); } }

.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-blue); transition: transform .25s; }
.chat-widget:hover { transform: scale(1.08); }
.chat-widget svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   Cookie consent
   -------------------------------------------------------------------------- */
.cookie { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(140%); z-index: 950; width: min(680px, 92vw); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-xl); padding: 20px 24px; display: flex; align-items: center; gap: 20px; transition: transform .4s var(--ease-out); }
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: 14px; color: var(--text-muted); flex: 1; }
.cookie a { color: var(--green-700); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 560px) { .cookie { flex-direction: column; align-items: stretch; text-align: center; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--navy); color: #b7c2de; padding-top: 72px; }
.footer a { color: #b7c2de; transition: color .2s; }
.footer a:hover { color: var(--green); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin-bottom: 20px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 18px; font-family: var(--font-display); }
.footer-links li { margin-bottom: 11px; font-size: 14.5px; }
.footer-news p { font-size: 14px; margin-bottom: 14px; }
.footer-news .news-form { display: flex; gap: 8px; }
.footer-news input { flex: 1; padding: 12px 14px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; }
.footer-news input::placeholder { color: #8494b8; }
.footer-news input:focus { outline: none; border-color: var(--green); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-size: 13.5px; flex-wrap: wrap; }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Landing page (no-distraction) specific
   -------------------------------------------------------------------------- */
.lp-nav { padding: 16px 0; border-bottom: 1px solid var(--border); background: var(--bg); position: sticky; top: 0; z-index: 100; }
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; }
.lp-hero { background: var(--grad-hero); color: #fff; padding: 60px 0 80px; position: relative; overflow: hidden; }
.lp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(55,201,90,.2), transparent 45%); }
.lp-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.lp-benefits { display: grid; gap: 14px; margin: 28px 0; }
.lp-benefits li { display: flex; gap: 12px; align-items: center; font-size: 17px; font-weight: 600; }
.lp-benefits .b-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.lp-benefits .b-ico svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .lp-grid { grid-template-columns: 1fr; } }
