/* =========================================================================
   Premium SaaS theme — supports both DARK (default fallback) and LIGHT
   modes via CSS variables. Toggle by setting data-theme="light" on <html>
   (see main.js). Palette: electric blue -> violet -> cyan gradient accent,
   glassmorphism surfaces, glow effects, scroll-reveal micro-animations.
   ========================================================================= */

:root{
  /* ---- Dark theme (default) ---- */
  --bg:            #0A1024;
  --bg-soft:       #0E1530;
  --surface:       #151F42;
  --surface-2:     #1A2650;
  --border:        rgba(255,255,255,.10);
  --border-soft:   rgba(255,255,255,.05);
  --text:          #EAF0FB;
  --text-muted:    #9BAAD0;
  --text-dim:      #6E7CA0;
  --text-strong:   #FFFFFF;
  --nav-logo-bg:#FFFFFF;
  --nav-logo-padding:5px 15px 2px 15px;
  --overlay-1:     rgba(255,255,255,.04);
  --overlay-2:     rgba(255,255,255,.06);
  --overlay-3:     rgba(255,255,255,.08);
  --overlay-4:     rgba(255,255,255,.12);
  --input-bg:      rgba(255,255,255,.04);
  --chip-bg:       rgba(15,24,48,.75);
  --nav-bg:        rgba(10,16,36,.72);
  --nav-bg-solid:  rgba(10,16,36,.92);
  --scrollbar-thumb: #2C3E63;
  --shadow-soft:   rgba(0,0,0,.5);

  --hero-overlay-1: rgba(10,16,36,.92);
  --hero-overlay-2: rgba(10,16,36,.65);
  --hero-overlay-3: rgba(10,16,36,.28);
  --hero-overlay-m: rgba(10,16,36,.55);

  --brand:         #F97316;
  --brand-2:       #EA580C;
  --brand-3:       #FB923C;
  --grad:          linear-gradient(120deg, #FB923C 0%, var(--brand) 55%, var(--brand-2) 100%);
  --grad-text:     linear-gradient(120deg, #FDBA74 0%, #F97316 55%, #EA580C 100%);
  --glow:          0 0 0 1px rgba(234,88,12,.25), 0 20px 60px -15px rgba(249,115,22,.45);
  --accent-price:  #F97316;

  --radius:        16px;
  --radius-sm:     10px;
  --ease:          cubic-bezier(.16,1,.3,1);
}

/* ---- Light theme override ---- */
[data-theme="light"]{
  --bg:            #FFFFFF;
  --bg-soft:       #ffffff;
  --surface:       #FFFFFF;
  --surface-2:     #EEF1F8;
  --border:        rgba(15,23,42,.10);
  --border-soft:   rgba(15,23,42,.07);
  --text:          #1E293B;
  --text-muted:    #57607A;
  --text-dim:      #838DA8;
  --text-strong:   #0B1220;
  --nav-logo-bg:none;
  --nav-logo-padding:0px;
  --overlay-1:     rgba(15,23,42,.035);
  --overlay-2:     rgba(15,23,42,.05);
  --overlay-3:     rgba(15,23,42,.07);
  --overlay-4:     rgba(15,23,42,.10);
  --input-bg:      rgba(15,23,42,.035);
  --chip-bg:       rgba(255,255,255,.92);
  --nav-bg:        rgba(255,255,255,.78);
  --nav-bg-solid:  #fff;
  --scrollbar-thumb: #CBD4E6;
  --shadow-soft:   rgba(30,41,59,.12);

  --hero-overlay-1: rgba(255,255,255,.94);
  --hero-overlay-2: rgba(255,255,255,.72);
  --hero-overlay-3: rgba(255,255,255,.32);
  --hero-overlay-m: rgba(255,255,255,.6);

  --glow:          0 0 0 1px rgba(234,88,12,.16), 0 14px 40px -12px rgba(249,115,22,.28);
}
[data-theme="light"] .glass-card,
[data-theme="light"] .testi-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .sidebar-card,
[data-theme="light"] .price-compare,
[data-theme="light"] .faq-accordion .accordion-item,
[data-theme="light"] .newsletter-box,
[data-theme="light"] .mega-menu,
[data-theme="light"] .dropdown-menu-hover{
  box-shadow: 0 10px 40px -18px rgba(30,41,59,.15);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}
a{ text-decoration:none; color:inherit; }
::selection{ background: var(--brand-2); color:#fff; }
.text-white{ color: var(--text-strong) !important; }

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:var(--scrollbar-thumb); border-radius:10px; }

.bg-glow{ position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none; }
.bg-glow span{ position:absolute; border-radius:50%; filter:blur(110px); opacity:.35; }
[data-theme="light"] .bg-glow span{ opacity:.22; }
.bg-glow .g1{ width:520px; height:520px; background:var(--brand); top:-180px; left:-120px; }
.bg-glow .g2{ width:480px; height:480px; background:var(--brand-2); top:20%; right:-160px; }
.bg-glow .g3{ width:420px; height:420px; background:var(--brand-3); bottom:-160px; left:30%; }

h1,h2,h3,h4,h5,h6{ font-weight:800; letter-spacing:-.02em; }
.grad-text{ background: var(--grad-text); -webkit-background-clip:text; background-clip:text; color:transparent; }
.text-muted-c{ color:var(--text-muted) !important; }
.text-brand{ color: var(--brand) !important; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em;
  color:#FDBA74; background:rgba(234,88,12,.12); border:1px solid rgba(234,88,12,.3);
  padding:.4rem .9rem; border-radius:30px;
}
[data-theme="light"] .eyebrow{ color:#C2410C; }
.eyebrow i{ color: var(--brand-3); }
.section-title{ font-size:clamp(1.7rem, 3vw, 2.6rem); margin-top:.8rem; }
.section-sub{ color:var(--text-muted); font-size:1.05rem; max-width:640px; }
.section{ padding: 5.5rem 0; position:relative; }
.section-tight{ padding: 3rem 0; }
.section-alt{ background: var(--bg-soft); }

.btn{ font-weight:600; border-radius:12px; }
.btn-grad{
  background: var(--grad); border:none; color:#fff; padding:.85rem 1.7rem;
  box-shadow: var(--glow); position:relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-grad:hover{ transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(234,88,12,.4), 0 26px 70px -12px rgba(249,115,22,.6); color:#fff; }
.btn-ghost{
  background: var(--overlay-1); border:1px solid var(--border); color:var(--text);
  padding:.85rem 1.6rem; backdrop-filter: blur(6px); transition:.25s var(--ease);
}
.btn-ghost:hover{ background: var(--overlay-3); border-color: var(--overlay-4); color:var(--text-strong); transform: translateY(-2px); }
.btn-sm-pill{ border-radius:30px; padding:.5rem 1.1rem; font-size:.85rem; }

.btn-enquire{
  background: var(--grad); color:#fff; border:none; font-weight:700;
  padding:.75rem 1.5rem; border-radius:12px; box-shadow: var(--glow);
  display:inline-flex; align-items:center; gap:.55rem; transition:.25s var(--ease);
}
.btn-enquire:hover{ transform: translateY(-2px) scale(1.02); color:#fff; }
.btn-enquire i{ font-size:.9rem; }

/* Topbar is a deliberate fixed dark accent strip — its colors are NOT
   theme-variable-driven on purpose, so it stays legible and consistent
   whichever site theme is active. */
.topbar{ background: linear-gradient(90deg, #0B1440, #141B4D 55%, #1B1745); border-bottom:1px solid rgba(255,255,255,.08); font-size:.82rem; color:#B7C1E8; }
.topbar a{ color:#B7C1E8; transition:.2s; }
.topbar a:hover{ color:#fff; }
.topbar .badge-offer{ background: var(--grad); color:#fff; font-weight:700; border-radius:20px; padding:.25rem .8rem; font-size:.72rem; }

/* ---- Theme toggle switch (navbar) ---- */
.theme-toggle{
  width:42px; height:42px; border-radius:10px; border:1px solid var(--border);
  background: var(--overlay-1); display:flex; align-items:center; justify-content:center; cursor:pointer;
  color:var(--text-muted); transition:.2s; font-size:1rem;
}
.theme-toggle:hover{ background:var(--overlay-3); color:var(--text-strong); }
.theme-toggle .fa-sun{ display:none; }
[data-theme="light"] .theme-toggle .fa-sun{ display:inline; }
[data-theme="light"] .theme-toggle .fa-moon{ display:none; }

.main-nav{
  background: var(--nav-bg); backdrop-filter: blur(14px) saturate(160%);
  border-bottom:1px solid var(--border-soft); transition: background .3s, box-shadow .3s;
}
.main-nav.scrolled{ background: var(--nav-bg-solid); box-shadow:0 10px 40px var(--shadow-soft); }

.main-nav .navbar-brand {background:var(--nav-logo-bg)}
.ftrlogo {background:var(--nav-logo-bg);padding:var(--nav-logo-padding)}
.main-nav .navbar-brand img{ max-height:68px; }
.main-nav .nav-link{
  color:var(--text-muted) !important; font-weight:600; font-size:.93rem;
  padding:.5rem 1rem !important; border-radius:8px; transition:.2s;
  display:flex; align-items:center; gap:.4rem;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active{ color:var(--text-strong) !important; background: var(--overlay-1); }
.main-nav .nav-link i.fa-chevron-down{ font-size:.6rem; opacity:.6; transition:.2s; }
.dropdown-hover:hover .nav-link i.fa-chevron-down{ transform: rotate(180deg); }
/* Bootstrap normally draws its own ::after caret on .dropdown-toggle — we
   use our own Font Awesome chevron instead, so make sure no element in
   the nav ever gets a duplicate native caret. */
.main-nav .nav-link::after{ display:none !important; content:none !important; border:none !important; }

.hamburger{
  width:42px; height:42px; border-radius:10px; border:1px solid var(--border);
  background: var(--overlay-1); display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.hamburger span{ display:block; width:18px; height:2px; background:var(--text-strong); position:relative; transition:.25s; }
.hamburger span::before, .hamburger span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background:var(--text-strong); transition:.25s; }
.hamburger span::before{ top:-6px; } .hamburger span::after{ top:6px; }
.hamburger.open span{ background:transparent; }
.hamburger.open span::before{ top:0; transform:rotate(45deg); }
.hamburger.open span::after{ top:0; transform:rotate(-45deg); }

.mega-menu{ background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:1.6rem; box-shadow:0 30px 80px -20px var(--shadow-soft); }
.mega-col-title{ font-size:.7rem; text-transform:uppercase; letter-spacing:.1em; font-weight:700; color: var(--brand-3); margin-bottom:.7rem; display:flex; align-items:center; gap:.4rem; }
.mega-menu a.mega-link{ display:flex; align-items:center; gap:.5rem; padding:.4rem 0; color:var(--text-muted); font-size:.9rem; transition:.2s; }
.mega-menu a.mega-link i{ font-size:.65rem; color: var(--brand); opacity:0; transition:.2s; }
.mega-menu a.mega-link:hover{ color:var(--text-strong); padding-left:4px; }
.mega-menu a.mega-link:hover i{ opacity:1; }

/* ---- Hover-triggered dropdowns (desktop) — opens on mouse-over, not
   click, and closes smoothly when the pointer leaves. A small invisible
   padding bridge keeps the menu open while moving the cursor down into
   it, and :focus-within keeps it keyboard-accessible. ---- */
.dropdown-hover{ position:relative; }
.dropdown-menu-hover{
  position:absolute; top:100%; left:0; z-index:1050; margin-top:.5rem;
  background: var(--surface); border:1px solid var(--border); border-radius:14px;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  pointer-events:none;
}
.dropdown-hover:hover .dropdown-menu-hover,
.dropdown-hover:focus-within .dropdown-menu-hover{
  opacity:1; visibility:visible; transform: translateY(0); pointer-events:auto;
}
/* Mega menu spans centered under the whole nav rather than one item */
.dropdown-hover.position-static{ position:relative; }
.dropdown-menu-hover.mega-menu{
  left:50%; width:min(1100px, 92vw); transform: translate(-50%, 10px);
}
.dropdown-hover.position-static:hover .dropdown-menu-hover.mega-menu,
.dropdown-hover.position-static:focus-within .dropdown-menu-hover.mega-menu{
  transform: translate(-50%, 0);
}
/* invisible hover bridge so the gap between the nav-link and the menu
   below it doesn't break the hover chain */
.dropdown-hover::after{
  content:''; position:absolute; left:0; right:0; top:100%; height:14px;
}
.dropdown-menu-simple{
  min-width:230px; list-style:none; padding:.6rem; margin:0;
}
.dropdown-menu-simple .dropdown-item{ color:var(--text-muted); border-radius:8px; font-size:.9rem; padding:.55rem .8rem; }
.dropdown-menu-simple .dropdown-item:hover{ background: var(--overlay-2); color:var(--text-strong); }

.dropdown-menu{ background: var(--surface); border:1px solid var(--border); border-radius:14px; padding:.6rem; }
.dropdown-menu .dropdown-item{ color:var(--text-muted); border-radius:8px; font-size:.9rem; padding:.55rem .8rem; }
.dropdown-menu .dropdown-item:hover{ background: var(--overlay-2); color:var(--text-strong); }

.mobile-menu{
  position:fixed; top:0; right:-100%; width:min(88vw,380px); height:100%; z-index:1060;
  background: var(--bg-soft); border-left:1px solid var(--border); transition: right .35s var(--ease);
  overflow-y:auto; padding:1.5rem;
}
.mobile-menu.open{ right:0; }
.mobile-menu-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.6); backdrop-filter: blur(3px); z-index:1055; opacity:0; pointer-events:none; transition:.3s; }
.mobile-menu-overlay.open{ opacity:1; pointer-events:auto; }
.mobile-menu .accordion-button{ background:transparent; color:var(--text-strong); font-weight:700; box-shadow:none; padding:.9rem .2rem; border-bottom:1px solid var(--border-soft); }
.mobile-menu .accordion-button::after{ filter: invert(1); }
[data-theme="light"] .mobile-menu .accordion-button::after{ filter:none; }
.mobile-menu .accordion-body{ padding:.4rem 0 .8rem; }
.mobile-menu .accordion-body a{ display:block; padding:.5rem 0; color:var(--text-muted); font-size:.92rem; }
.mobile-menu .accordion-body a:hover{ color:var(--text-strong); }

.hero{ position:relative; padding:0; overflow:hidden; }

/* ---- Hero slider — each slide is a full-width/full-bleed background
   image with a gradient overlay so the left-aligned text stays
   readable, and the image itself remains visible toward the right. ---- */
.hero-slider{ position:relative; max-height:480px;  }

/* Network particle effect layered between the hero background image
   and the foreground text/buttons. */
#particles-js{ position:absolute; inset:0; z-index:1; pointer-events:auto; }
#particles-js canvas{ display:block; }

.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .9s var(--ease), visibility .9s;
}
.hero-slide.active{ position:relative; opacity:1; visibility:visible; pointer-events:auto; }

.hero-slide-bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-slide-bg img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-slide-bg::after{
  content:''; position:absolute; inset:0;
  /* background: linear-gradient(100deg, var(--bg) 18%, var(--hero-overlay-1) 42%, var(--hero-overlay-2) 65%, var(--hero-overlay-3) 100%); */
}
.hero-slide-bg.no-image{ background: radial-gradient(circle at 75% 30%, rgba(249,115,22,.18), transparent 55%), linear-gradient(135deg, var(--bg-soft), var(--bg)); }
.hero-slide-bg.no-image::after{ content:none; }

.hero-slide-content{ position:relative; z-index:2; padding: 9rem 0 5rem; }
.hero-text-col{ max-width:620px; }

.hero .badge-pill{ display:inline-flex; align-items:center; gap:.5rem; font-size:.78rem; font-weight:600; background: var(--overlay-2); border:1px solid var(--border); border-radius:30px; padding:.45rem 1rem; color:var(--text-muted); backdrop-filter: blur(6px); }
.hero .badge-pill i{ color: var(--brand-3); }
.hero h1 span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #ff671f, #f93 45%, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero h1{ font-size:clamp(2.2rem, 4.6vw, 3.6rem); line-height:1.12; margin-top:1.1rem; text-shadow:0 4px 30px rgba(0,0,0,.35); }
[data-theme="light"] .hero h1{ text-shadow:none; }
.hero .lead{ font-size:1.12rem; color:var(--text-muted); max-width:560px; }
.hero-stats{ display:flex; flex-wrap:wrap; gap:1.6rem; margin-top:1rem; padding-bottom:2.5rem; position:relative; z-index:2; }
.hero-stats .stat b{ font-size:1.4rem; display:block; color:var(--text-strong); }
.hero-stats .stat span{ font-size:.78rem; color:var(--text-dim); text-transform:uppercase; letter-spacing:.06em; }

.hero-dots{ display:flex; justify-content:center; gap:.5rem; padding-bottom:1.5rem; position:relative; z-index:2; }
.hero-dots button{
  width:10px; height:10px; border-radius:50%; border:none; background:var(--overlay-4);
  cursor:pointer; transition:.25s; padding:0;
}
.hero-dots button.active{ background: var(--grad); width:30px; border-radius:6px; }

/* Decorative floating chips over the image, right-hand side */
.float-chip{ position:absolute; z-index:3; background: var(--chip-bg); backdrop-filter: blur(8px); border:1px solid var(--border); border-radius:12px; padding:.7rem 1.1rem; font-size:.8rem; box-shadow:0 20px 50px -15px var(--shadow-soft); animation: floaty 5s ease-in-out infinite; color:var(--text); }
.float-chip.c1{ top:22%; right:6%; animation-delay:.2s; }
.float-chip.c2{ bottom:20%; right:14%; animation-delay:1s; }
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

.logo-strip{ padding:2rem 0; border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft); }
.logo-strip .tick{ color:var(--text-dim); font-size:.8rem; text-transform:uppercase; letter-spacing:.1em; }
.logo-strip .items{ display:flex; flex-wrap:wrap; gap:2.4rem; align-items:center; opacity:.6; filter:grayscale(1); }
.logo-strip .items i{ font-size:1.6rem; }

.glass-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:1.9rem; height:100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position:relative; overflow:hidden;
}
.glass-card:hover{ transform: translateY(-6px); box-shadow:0 30px 70px -25px rgba(249,115,22,.35); border-color: rgba(234,88,12,.4); }
.icon-tile{
  width:80px; height:80px; border-radius:22px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(234,88,12,.22)); color: var(--brand); font-size:2.2rem; margin-bottom:1.3rem;
  border:1px solid rgba(234,88,12,.28); box-shadow: 0 12px 30px -12px rgba(249,115,22,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.glass-card:hover .icon-tile{ transform: scale(1.08) rotate(-4deg); box-shadow: 0 16px 36px -12px rgba(249,115,22,.5); }
.glass-card h5{ font-size:1.2rem; color:var(--text-strong); }
.glass-card p{ color:var(--text-muted); font-size:.95rem; margin-bottom:0; }
.card-link{ font-size:.85rem; font-weight:700; color: var(--brand-3); display:inline-flex; align-items:center; gap:.4rem; margin-top:1rem; }
.card-link i{ transition:.2s; font-size:.75rem; }
.glass-card:hover .card-link i{ transform: translateX(4px); }

.badge-pop{ position:absolute; top:14px; right:14px; background: var(--grad); color:#fff; font-size:.65rem; font-weight:700; padding:.3rem .7rem; border-radius:20px; letter-spacing:.03em; }

.enquire-inline{
  display:inline-flex; align-items:center; gap:.4rem; font-size:.82rem; font-weight:700; color:var(--text-strong);
  background: var(--overlay-2); border:1px solid var(--border); padding:.5rem 1rem; border-radius:10px; margin-top:1rem; transition:.2s;
}
.enquire-inline:hover{ background: var(--grad); border-color:transparent; color:#fff; }

.showcase-nav{ display:flex; gap:.5rem; margin-bottom:2rem; }
.showcase-nav button{ flex:1; background:transparent; border:none; border-top:2px solid var(--border); color:var(--text-dim); text-align:left; padding:.8rem .2rem; font-size:.8rem; font-weight:600; cursor:pointer; transition:.25s; }
.showcase-nav button.active{ border-color: var(--brand); color:var(--text-strong); }
.showcase-pane{ display:none; }
.showcase-pane.active{ display:block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }

.stat-block{ text-align:center; padding:1.5rem 1rem; }
.stat-block .num{ font-size:clamp(2rem,4vw,2.7rem); font-weight:800; color:var(--text-strong); }
.stat-block .lbl{ color:var(--text-muted); font-size:.88rem; margin-top:.3rem; }

.price-compare{ background: var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.price-compare table{ width:100%; color:var(--text); margin:0; }
.price-compare th, .price-compare td{ padding:1rem 1.2rem; border-bottom:1px solid var(--border-soft); text-align:center; }
.price-compare th{ background: var(--overlay-1); font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); }
.price-compare td:first-child, .price-compare th:first-child{ text-align:left; color:var(--text-strong); font-weight:600; }
.price-compare .brand-col{ background: rgba(249,115,22,.08); }
.price-compare .up{ color:#f87171; font-size:.75rem; }
.price-compare .lock{ color:#34d399; font-weight:700; }

.mig-steps{ position:relative; }
.mig-steps::before{ content:''; position:absolute; top:26px; left:0; right:0; height:2px; background: var(--border); }
.mig-step{ position:relative; text-align:center; }
.mig-step .num{ width:54px; height:54px; border-radius:50%; background: var(--surface); border:2px solid var(--brand); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; font-weight:800; position:relative; z-index:2; box-shadow: 0 0 0 6px var(--bg); color:var(--text-strong); }

.testi-card{ background: var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.8rem; height:100%; transition:.3s var(--ease); }
.testi-card:hover{ transform: translateY(-4px); border-color: rgba(234,88,12,.3); }
.testi-avatar{ width:44px; height:44px; border-radius:50%; background: var(--grad); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:.85rem; }

.faq-accordion .accordion-item{ background: var(--surface); border:1px solid var(--border); border-radius:12px !important; margin-bottom:.8rem; overflow:hidden; }
.faq-accordion .accordion-button{ background: transparent; color:var(--text-strong); font-weight:700; box-shadow:none; padding:1.1rem 1.3rem; }
.faq-accordion .accordion-button::after{ filter: invert(1); }
[data-theme="light"] .faq-accordion .accordion-button::after{ filter:none; }
.faq-accordion .accordion-button:not(.collapsed){ background: rgba(249,115,22,.08); color:var(--text-strong); }
.faq-accordion .accordion-body{ color:var(--text-muted); padding:0 1.3rem 1.2rem; }

.cta-band{ background: linear-gradient(120deg, rgba(249,115,22,.16), rgba(234,88,12,.16)); border:1px solid rgba(234,88,12,.3); border-radius:24px; padding:3.2rem; position:relative; overflow:hidden; }
.cta-band::after{ content:''; position:absolute; width:300px; height:300px; background:var(--brand-2); filter:blur(100px); opacity:.35; top:-100px; right:-60px; }
.cta-band h2, .cta-band h3{ color:var(--text-strong); }

.blog-card{ background: var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; height:100%; transition:.3s var(--ease); }
.blog-card:hover{ transform: translateY(-6px); border-color: rgba(234,88,12,.35); }
.blog-card img{ height:190px; object-fit:cover; width:100%; }
.blog-card .tag{ font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; color: var(--brand-3); font-weight:700; }

footer.site-footer{ background: var(--bg-soft); border-top:1px solid var(--border-soft); color:var(--text-muted); }
footer.site-footer a{ color:var(--text-muted); transition:.2s; }
footer.site-footer a:hover{ color:var(--text-strong); }
footer.site-footer h6{ color:var(--text-strong); font-weight:700; margin-bottom:1rem; font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; }
.social-round{ width:38px; height:38px; border-radius:10px; background: var(--overlay-1); border:1px solid var(--border); display:inline-flex; align-items:center; justify-content:center; margin-right:.5rem; transition:.2s; color:var(--text); }
.social-round:hover{ background: var(--grad); border-color:transparent; transform: translateY(-3px); color:#fff; }
.newsletter-box{ background: var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.8rem; }
.newsletter-box .form-control{ background: var(--input-bg); border:1px solid var(--border); color:var(--text-strong); }
.newsletter-box .form-control::placeholder{ color:var(--text-dim); }
.newsletter-form{ display:flex; gap:.6rem; flex-wrap:nowrap; width:100%; max-width:380px; }
.newsletter-form .form-control{ flex:1 1 auto; min-width:0; }
.newsletter-form .btn-grad{ flex:0 0 auto; white-space:nowrap; padding:.85rem 1.3rem; }
@media (max-width:575px){
  .newsletter-form{ flex-wrap:wrap; max-width:100%; }
  .newsletter-form .btn-grad{ width:100%; }
}

/* ---- Custom (non-native) form validation styling for the enquiry
   popup — replaces the browser's default HTML5 validation bubbles. ---- */
.form-control.field-invalid, .form-select.field-invalid{
  border-color:#f87171 !important; box-shadow:0 0 0 3px rgba(248,113,113,.15);
}
.field-error-msg{ color:#f87171; font-size:.78rem; margin-top:.3rem; display:none; }
.field-error-msg.show{ display:block; }
.status-dot{ width:8px; height:8px; border-radius:50%; background:#34d399; display:inline-block; box-shadow:0 0 0 3px rgba(52,211,153,.25); }

/* Symmetric footer grid: the brand block is its own full-width strip,
   and the remaining link columns (menu groups + Important Links) sit in
   a fixed even grid so every row lines up cleanly regardless of how
   many menu groups exist — unlike a raw Bootstrap `row` which leaves a
   ragged, off-center final row. */
.footer-brand-row{
  display:flex; flex-wrap:wrap; gap:1.5rem; align-items:flex-start; justify-content:space-between;
  padding-bottom:2rem; margin-bottom:2rem; border-bottom:1px solid var(--border-soft);
}
.footer-links-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:2.2rem 1.5rem; }
@media (min-width:576px){ .footer-links-grid{ grid-template-columns: repeat(3, 1fr); } }

.page-banner{ padding: 7rem 0 3.5rem; position:relative; border-bottom:1px solid var(--border-soft); }
.page-banner .crumb a{ color:var(--text-dim); }
.page-banner .crumb a:hover{ color:var(--text-strong); }
.page-content{ color:var(--text-muted); line-height:1.85; }
.page-content h2, .page-content h3{ color:var(--text-strong); margin-top:2rem; }
.page-content img{ max-width:100%; height:auto; border-radius:14px; border:1px solid var(--border); }
.page-content ul li{ margin-bottom:.4rem; }
.sidebar-card{ background: var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.8rem; position:sticky; top:100px; }

.enquiry-fab{
  position:fixed; right:22px; bottom:22px; z-index:1040; width:60px; height:60px; border-radius:50%;
  background: var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  box-shadow: 0 20px 50px -12px rgba(249,115,22,.6); border:none; animation: pulse-glow 2.4s infinite;
}
.whatsapp-fab{
  position:fixed; left:22px; bottom:22px; z-index:1040; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.5rem;
  box-shadow: 0 20px 50px -12px rgba(37,211,102,.6); border:none; animation: pulse-glow-wa 2.4s infinite;
}
@keyframes pulse-glow-wa{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5), 0 20px 50px -12px rgba(37,211,102,.6); }
  70%{ box-shadow:0 0 0 14px rgba(37,211,102,0), 0 20px 50px -12px rgba(37,211,102,.6); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0), 0 20px 50px -12px rgba(37,211,102,.6); }
}
@keyframes pulse-glow{
  0%{ box-shadow:0 0 0 0 rgba(234,88,12,.5), 0 20px 50px -12px rgba(249,115,22,.6); }
  70%{ box-shadow:0 0 0 14px rgba(234,88,12,0), 0 20px 50px -12px rgba(249,115,22,.6); }
  100%{ box-shadow:0 0 0 0 rgba(234,88,12,0), 0 20px 50px -12px rgba(249,115,22,.6); }
}
.modal-content{ background: var(--surface); border:1px solid var(--border); border-radius:18px; color:var(--text); }
.modal-header{ border-bottom:1px solid var(--border-soft); }
.modal .form-control, .modal .form-select{ background: var(--input-bg); border:1px solid var(--border); color:var(--text-strong); }
.modal .form-control::placeholder{ color:var(--text-dim); }
.modal .btn-close{ filter:invert(1); }
[data-theme="light"] .modal .btn-close{ filter:none; }

* ---- Enquiry popup: split image + form layout ---- */
.enquiry-modal-content{ overflow:hidden; position:relative; border-radius:22px; }
.enquiry-modal-close{
  position:absolute; top:14px; right:14px; z-index:5; 
  border-radius:50%; width:34px; height:34px; opacity:1; filter:invert(1) !important; backdrop-filter: blur(4px);
}
.enquiry-modal-visual{ position:relative; min-height:220px; height:auto; }
@media (min-width:768px){ .enquiry-modal-visual{ height:100%; } }
.enquiry-modal-visual img{ width:100%; height:100%; object-fit:cover; display:block; min-height:220px; }
.enquiry-modal-visual-overlay{
  position:absolute; left:0; right:0; bottom:0; padding:1.6rem 1.4rem 1.4rem;
  background: linear-gradient(0deg, rgba(10,10,10,.92) 10%, rgba(10,10,10,.55) 55%, transparent 100%);
  color:#fff;
}
.enquiry-modal-visual-overlay h4{ font-size:1.25rem; margin-bottom:.4rem; }
.enquiry-modal-visual-overlay p{ font-size:.85rem; color:rgba(255,255,255,.85); margin-bottom:.8rem; }
.enquiry-modal-visual-overlay ul{ margin:0; }
.enquiry-modal-visual-overlay li{ font-size:.82rem; margin-bottom:.35rem; display:flex; align-items:center; gap:.5rem; }
.enquiry-modal-visual-overlay li i{ color:#34d399; }
.enquiry-modal-form-body{ padding:2rem 1.8rem; }
@media (min-width:768px){ .enquiry-modal-form-body{ padding:2.2rem 2rem; } }


/* =========================================================================
   "Who We Are" homepage section — animated infrastructure dashboard panel
   ========================================================================= */
.wwa-panel{
  background: var(--surface); border:1px solid var(--border); border-radius:22px;
  padding:1.6rem; box-shadow: 0 40px 90px -30px var(--shadow-soft); position:relative; z-index:2;
}
.wwa-panel-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.wwa-panel-head .dots span{ width:9px; height:9px; border-radius:50%; display:inline-block; margin-right:5px; }
.wwa-panel-head .label{ font-size:.78rem; color:var(--text-dim); display:flex; align-items:center; gap:.4rem; }

.wwa-row{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  background: var(--overlay-1); border:1px solid var(--border-soft); border-radius:14px;
  padding:.9rem 1.1rem; margin-bottom:.8rem;
}
.wwa-row-left{ display:flex; align-items:center; gap:.7rem; }
.wwa-row-icon{
  width:38px; height:38px; border-radius:10px; background: rgba(249,115,22,.14); color:var(--brand);
  display:flex; align-items:center; justify-content:center; font-size:1rem; flex:0 0 auto;
}
.wwa-row-label{ font-size:.85rem; font-weight:600; color:var(--text-strong); }
.wwa-row-sub{ font-size:.72rem; color:var(--text-dim); }

.wwa-ring{ position:relative; width:52px; height:52px; flex:0 0 auto; }
.wwa-ring svg{ transform:rotate(-90deg); width:52px; height:52px; }
.wwa-ring circle{ fill:none; stroke-width:5; }
.wwa-ring .track{ stroke: var(--border); }
.wwa-ring .fill{ stroke: url(#wwaGradient); stroke-linecap:round; stroke-dasharray:145; stroke-dashoffset:145; transition: stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1); }
.wwa-ring .val{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:800; color:var(--text-strong); }

.wwa-bar-wrap{ width:110px; }
.wwa-bar-track{ height:7px; border-radius:10px; background: var(--overlay-3); overflow:hidden; }
.wwa-bar-fill{ height:100%; border-radius:10px; background: var(--grad); width:0; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.wwa-bar-val{ font-size:.72rem; color:var(--brand); font-weight:700; margin-top:.3rem; text-align:right; }

.wwa-security-badge{
  display:inline-flex; align-items:center; gap:.4rem; background: rgba(52,211,153,.12); color:#34d399;
  border:1px solid rgba(52,211,153,.3); padding:.3rem .7rem; border-radius:20px; font-size:.72rem; font-weight:700;
}
.wwa-security-badge .pulse-dot{
  width:7px; height:7px; border-radius:50%; background:#34d399; position:relative;
}
.wwa-security-badge .pulse-dot::after{
  content:''; position:absolute; inset:-4px; border-radius:50%; background:#34d399; opacity:.5;
  animation: pulse-ring 1.8s infinite;
}
@keyframes pulse-ring{ 0%{ transform:scale(.6); opacity:.6; } 100%{ transform:scale(1.8); opacity:0; } }

.wwa-icon-strip{ display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.9rem; }
.wwa-icon-strip span{
  width:34px; height:34px; border-radius:9px; background: var(--overlay-2); border:1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center; font-size:.8rem; color:var(--text-muted);
}
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
[data-delay="1"]{ transition-delay:.08s; }
[data-delay="2"]{ transition-delay:.16s; }
[data-delay="3"]{ transition-delay:.24s; }
[data-delay="4"]{ transition-delay:.32s; }
[data-delay="5"]{ transition-delay:.4s; }
[data-delay="6"]{ transition-delay:.48s; }

.divider-fade{ height:1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* =========================================================================
   "What Makes Us Different" — image/visual + content section
   ========================================================================= */
.diff-visual{ position:relative; max-width:480px; margin:0 auto; padding:2.5rem 1rem; }
.diff-main-card{
  background: var(--surface); border:1px solid var(--border); border-radius:24px;
  padding:2.4rem 2rem; box-shadow: 0 30px 80px -30px var(--shadow-soft); position:relative; z-index:2;
}
.diff-icon-ring{
  width:110px; height:110px; border-radius:50%; margin:0 auto 1.6rem; display:flex; align-items:center; justify-content:center;
  background: var(--grad); color:#fff; font-size:2.8rem; box-shadow: 0 20px 45px -15px rgba(249,115,22,.55);
}
.diff-mini-stats{ display:flex; flex-direction:column; gap:.9rem; }
.diff-mini-row{ display:flex; align-items:center; gap:.7rem; font-size:.92rem; font-weight:600; color:var(--text-strong); }
.diff-mini-row i{ color:#34d399; font-size:1rem; }

.diff-float-badge{
  position:absolute; width:64px; height:64px; border-radius:18px; background: var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:var(--brand);
  box-shadow: 0 20px 45px -18px var(--shadow-soft); z-index:3; animation: floaty 5s ease-in-out infinite;
}
.diff-float-badge.db1{ top:6%; right:2%; animation-delay:.2s; }
.diff-float-badge.db2{ top:42%; left:0%; color:#34d399; animation-delay:1s; }
.diff-float-badge.db3{ bottom:10%; right:8%; color:var(--brand-2); animation-delay:1.6s; }

.diff-caption-badge{
  position:absolute; left:50%; bottom:-1.2rem; transform:translateX(-50%); z-index:4;
  background: var(--surface); border:1px solid var(--border); border-radius:14px; padding:.8rem 1.4rem;
  font-weight:700; font-size:.9rem; color:var(--text-strong); box-shadow: 0 20px 45px -18px var(--shadow-soft);
  white-space:nowrap;
}

.diff-row{ display:flex; gap:1.1rem; padding:1.3rem 0; border-bottom:1px solid var(--border-soft); }
.diff-row:last-child{ border-bottom:none; }
.diff-row-icon{
  flex:0 0 auto; width:52px; height:52px; border-radius:14px; background: rgba(249,115,22,.12);
  border:1px solid rgba(249,115,22,.3); color:var(--brand); display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.diff-row h6{ color:var(--text-strong); font-size:1.05rem; margin-bottom:.3rem; }
.diff-row p{ color:var(--text-muted); font-size:.92rem; margin-bottom:0; }
/* =========================================================================
   About Us page
   ========================================================================= */
.about-hero{ padding: 7rem 0 3rem; position:relative; }
.about-hero-stats{ display:flex; flex-wrap:wrap; gap:2.5rem; margin-top:2.5rem; padding-top:2rem; border-top:1px solid var(--border-soft); }
.about-hero-stats .stat b{ font-size:1.9rem; display:block; color:var(--text-strong); }
.about-hero-stats .stat span{ font-size:.78rem; color:var(--text-dim); text-transform:uppercase; letter-spacing:.06em; }

.timeline-wrap{ position:relative; }
.timeline-wrap::before{ content:''; position:absolute; top:0; bottom:0; left:27px; width:2px; background: var(--border); }
@media (max-width:767px){ .timeline-wrap::before{ left:19px; } }
.timeline-item{ position:relative; padding-left:5rem; padding-bottom:2.4rem; }
@media (max-width:767px){ .timeline-item{ padding-left:3.4rem; } }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute; left:0; top:0; width:56px; height:56px; border-radius:50%;
  background: var(--grad); color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1rem; box-shadow: 0 12px 30px -10px rgba(249,115,22,.5); z-index:2;
}
@media (max-width:767px){ .timeline-dot{ width:40px; height:40px; font-size:.8rem; } }
.timeline-item h5{ color:var(--text-strong); margin-bottom:.4rem; }
.timeline-item p{ color:var(--text-muted); margin-bottom:0; }

.value-pillar{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:1.7rem; height:100%; transition:.3s var(--ease);
}
.value-pillar:hover{ transform: translateY(-4px); border-color: rgba(234,88,12,.35); }
.value-pillar i{ font-size:1.6rem; color: var(--brand); margin-bottom:.9rem; display:block; }
.value-pillar h6{ color:var(--text-strong); margin-bottom:.4rem; }
.value-pillar p{ color:var(--text-muted); font-size:.9rem; margin-bottom:0; }

.mission-card{
  background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(234,88,12,.08));
  border:1px solid rgba(234,88,12,.25); border-radius: var(--radius); padding:2rem; height:100%;
}
.mission-card i{ font-size:1.8rem; color:var(--brand); margin-bottom:1rem; display:block; }
.mission-card h4{ color:var(--text-strong); margin-bottom:.7rem; }
.mission-card p{ color:var(--text-muted); margin-bottom:0; }

.partners-strip-track{ display:flex; flex-wrap:wrap; gap:2.2rem; align-items:center; justify-content:center; }
.partners-strip-track img{ max-height:38px; opacity:.65; filter:grayscale(1); transition:.2s; }
.partners-strip-track img:hover{ opacity:1; filter:none; }

/* =========================================================================
   Legal Hub — landing grid + tabbed document detail pages
   ========================================================================= */
.legal-search{
  max-width:560px; margin:0 auto; position:relative;
}
.legal-search input{
  width:100%; padding:.95rem 1.4rem .95rem 3rem; border-radius:14px; border:1px solid var(--border);
  background: var(--surface); color:var(--text); font-size:.95rem;
}
.legal-search input::placeholder{ color:var(--text-dim); }
.legal-search i{ position:absolute; left:1.2rem; top:50%; transform:translateY(-50%); color:var(--text-dim); }

.legal-doc-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:1.9rem; height:100%; transition:.3s var(--ease);
}
.legal-doc-card:hover{ transform: translateY(-5px); border-color: rgba(234,88,12,.35); box-shadow:0 25px 60px -25px var(--shadow-soft); }
.legal-doc-card .head-row{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:1.1rem; }
.legal-doc-icon{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: rgba(249,115,22,.12); color:var(--brand); font-size:1.4rem; border:1px solid rgba(234,88,12,.25);
}
.legal-doc-tag{
  font-size:.68rem; font-weight:700; letter-spacing:.04em; color:#34d399; background: rgba(52,211,153,.1);
  border:1px solid rgba(52,211,153,.3); padding:.3rem .7rem; border-radius:20px; white-space:nowrap;
}
.legal-doc-card h5{ color:var(--text-strong); margin-bottom:.6rem; }
.legal-doc-card p{ color:var(--text-muted); font-size:.9rem; }
.legal-doc-highlights-label{ font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-dim); font-weight:700; margin:1.1rem 0 .6rem; }
.legal-doc-highlights li{ display:flex; align-items:flex-start; gap:.5rem; font-size:.85rem; color:var(--text-muted); margin-bottom:.4rem; }
.legal-doc-highlights li i{ color:#34d399; margin-top:.2rem; }
.legal-doc-card .card-link{ margin-top:1.2rem; }

.legal-tabs{
  display:flex; flex-wrap:wrap; gap:.5rem; background: var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:.6rem; justify-content:center;
}
.legal-tabs a{
  display:flex; align-items:center; gap:.5rem; padding:.65rem 1.1rem; border-radius:10px; font-weight:700;
  font-size:.88rem; color:var(--text-muted); transition:.2s;
}
.legal-tabs a:hover{ background: var(--overlay-2); color:var(--text-strong); }
.legal-tabs a.active{ background: var(--grad); color:#fff; }

.legal-doc-header{
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start; gap:1rem;
  padding-bottom:1.4rem; margin-bottom:1.4rem; border-bottom:1px solid var(--border-soft);
}
.legal-doc-header h1{ font-size:1.7rem; color:var(--text-strong); margin-bottom:.3rem; }
.legal-doc-header .sub{ color:var(--text-muted); font-size:.92rem; }
.legal-url-badge{ font-family: monospace; font-size:.75rem; color:var(--brand); background: rgba(249,115,22,.1); border:1px solid rgba(234,88,12,.3); padding:.4rem .8rem; border-radius:8px; white-space:nowrap; }

.legal-doc-body .page-content h3{
  color:var(--brand); font-size:1.05rem; background: var(--overlay-1); border:1px solid var(--border-soft);
  border-radius:12px; padding:1rem 1.2rem; margin:1.6rem 0 0;
}
.legal-doc-body .page-content h3 + p{ padding:0 1.2rem 1.2rem; border:1px solid var(--border-soft); border-top:none; border-radius:0 0 12px 12px; margin-top:0; }

/* =========================================================================
   Pricing table (processor family + billing cycle) — reference layout
   ========================================================================= */
.pricing-panel{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; }
.pricing-panel-head{
  display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between;
  padding:1.4rem 1.6rem; border-bottom:1px solid var(--border-soft);
}
.pricing-arch{ display:flex; align-items:center; gap:.7rem; font-weight:700; color:var(--text-strong); }
.pricing-arch i{ color:var(--accent-price); font-size:1.2rem; }
.pricing-arch .tag-dedicated{
  background: rgba(52,211,153,.12); color:#34d399; font-size:.72rem; font-weight:700;
  padding:.3rem .7rem; border-radius:20px; border:1px solid rgba(52,211,153,.3);
}
.billing-toggle{ display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; }
.billing-toggle .label{ color:var(--text-muted); font-size:.85rem; }
.billing-toggle button{
  border:1px solid var(--border); background:transparent; color:var(--text-muted);
  padding:.5rem 1rem; border-radius:8px; font-size:.85rem; font-weight:700; cursor:pointer; transition:.2s;
  display:flex; align-items:center; gap:.4rem;
}
.billing-toggle button .save-tag{ font-size:.7rem; font-weight:700; color:#34d399; }
.billing-toggle button.active{ background:var(--accent-price); border-color:var(--accent-price); color:#fff; }
.billing-toggle button.active .save-tag{ color:#fff; }

.pricing-body{ display:grid; grid-template-columns: 260px 1fr; }
@media (max-width:900px){ .pricing-body{ grid-template-columns: 1fr; } }

.pricing-sidebar{ padding:1.6rem; border-right:1px solid var(--border-soft); }
@media (max-width:900px){ .pricing-sidebar{ border-right:none; border-bottom:1px solid var(--border-soft); } }
.pricing-sidebar-label{ font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-dim); font-weight:700; margin-bottom:.9rem; display:flex; align-items:center; gap:.4rem; }

.processor-option{
  display:block; width:100%; text-align:left; background: var(--overlay-1); border:1px solid var(--border);
  border-radius:12px; padding:.9rem 1rem; margin-bottom:.8rem; cursor:pointer; transition:.2s;
}
.processor-option:hover{ border-color: rgba(249,115,22,.4); }
.processor-option.active{ background: rgba(249,115,22,.08); border-color: var(--accent-price); }
.processor-option .name{ font-weight:700; color:var(--text-strong); display:flex; align-items:center; justify-content:space-between; }
.processor-option .name .check{ width:20px; height:20px; border-radius:50%; background:var(--accent-price); color:#fff; display:none; align-items:center; justify-content:center; font-size:.6rem; }
.processor-option.active .name .check{ display:inline-flex; }
.processor-option .desc{ font-size:.6rem; color:var(--text-muted); margin-top:.2rem; }
.processor-option .from-price{ font-size:.6rem; color:var(--accent-price); font-weight:700; margin-top:.4rem; }

.pricing-shield{
  margin-top:1.2rem; padding:1rem; border-radius:12px; background: rgba(52,211,153,.08); border:1px solid rgba(52,211,153,.25);
}
.pricing-shield .title{ color:#34d399; font-weight:700; font-size:.7rem; display:flex; align-items:center; gap:.4rem; }
.pricing-shield p{ font-size:.6rem; color:var(--text-muted); margin:.4rem 0 0; }

.pricing-table-wrap{ overflow-x:auto; }
.pricing-table{ width:100%; border-collapse:collapse; min-width:720px; }
.pricing-table thead th{
  text-align:left; font-size:.6rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-dim);
  padding:1.1rem 1.6rem; border-bottom:1px solid var(--border-soft); white-space:nowrap;
}
.pricing-table tbody td{ padding:1rem 1.2rem; border-bottom:1px solid var(--border-soft); vertical-align:middle; white-space:nowrap; }
.pricing-table tbody tr:last-child td{ border-bottom:none; }
.pricing-table tbody tr{ transition:.2s; }
.pricing-table tbody tr:hover{ background: var(--overlay-1); }
.pricing-plan-name{ font-weight:800; color:var(--text-strong); }
.pricing-plan-sub{ font-size:.6rem; color:var(--text-dim); margin-top:.15rem; }
.pricing-spec-badge{ background: var(--overlay-2); border:1px solid var(--border); border-radius:8px; padding:.3rem .7rem; font-size:.7rem; font-weight:700; color:var(--text-strong); }
.pricing-ram{ font-weight:700; color:var(--brand); }
.pricing-price{ font-size:1rem; font-weight:800; color:var(--text-strong); }
.pricing-price .cycle{ font-size:.6rem; font-weight:500; color:var(--text-dim); }
.btn-quote{
  background:var(--accent-price); color:#fff; border:none; font-weight:700; font-size:.7rem;
  padding:.6rem 1.1rem; border-radius:8px; display:inline-flex; align-items:center; gap:.4rem; transition:.2s;
  white-space:nowrap;
}
.btn-quote:hover{ background:#ea6a0e; color:#fff; transform: translateY(-1px); }
.pricing-footnote{ text-align:center; padding:1.2rem 1.6rem; border-top:1px solid var(--border-soft); color:var(--text-dim); font-size:.7rem; }

@media (max-width: 991px){
  .hero-slider{ height:250px; }
  .hero-slide-content{ padding:2.5rem 0 1rem; text-align:center; width:70% }
  .hero-slide-content h1 {font-size:16px}
  .hero-slide-content .badge-pill , .hero-slide-content p {font-size:12px; padding:8px}
  .hero-text-col{ max-width:100%; margin:0 auto; }
  
  .hero-slide-content .btn-grad, .hero-slide-content .btn-ghost {font-size:12px; padding:6px;}
  .hero-slide-content .flex-wrap {}
  .hero .lead{ margin-left:auto; margin-right:auto; }
  .hero-stats{ justify-content:center; }
  .hero-slide-bg {height:270px}
  .hero-slide-bg img {height:100%}
  
   .hero-slide-bg::after{/* background: linear-gradient(180deg, var(--hero-overlay-m) 0%, var(--hero-overlay-1) 55%, var(--bg) 100%);*/  }
}
@media (max-width: 575px){
  .hero-slider{ height:250px; }
  .main-nav .navbar-brand img {
		max-height: 50px;
	}
}
