/* ============================================================
   DETAILING WEB — Main Stylesheet
   detailingweb.com
   ============================================================ */

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

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:         #020617; /* Slate 950 */
  --bg-alt:     #070f1f; /* Slightly lighter shade for sections */
  --bg-card:    rgba(15, 23, 42, 0.55); /* Translucent Slate 900 for glass */
  --bg-card-h:  rgba(30, 41, 59, 0.7); /* Translucent Slate 800 */
  --bg-input:   #0f172a; /* Solid Slate 900 */
  --bg-nav:     rgba(2, 6, 23, 0.85);

  /* Blues & Accents */
  --navy:       #0d2444;
  --blue-dk:    #1e3a8a;
  --blue:       #2563eb;
  --blue-md:    #3b82f6; /* Bright Blue */
  --blue-br:    #60a5fa; /* Vibrant Blue */
  --blue-lt:    #93c5fd; /* Soft Blue */
  --blue-glow:  rgba(59, 130, 246, 0.18); /* Brighter glow */
  --blue-bdr:   rgba(255, 255, 255, 0.12); /* Crisp glass border */
  --blue-bdr-h: rgba(96, 165, 250, 0.6); /* Brighter hover border */

  /* Text */
  --text:       #f8fafc; /* Higher contrast off-white */
  --text-md:    #e2e8f0;
  --text-dim:   #cbd5e1; /* Replaces #8a9eb8 for much better readability */
  --text-faint: #94a3b8; /* Replaces #4a6480 for much better readability */
  --white:      #ffffff;

  /* Status */
  --green:      #10b981; /* Emerald 500 */
  --red:        #ef4444; /* Red 500 */

  /* Radius */
  --r-sm:   6px;
  --r:      12px;
  --r-lg:   18px;
  --r-xl:   26px;

  /* Shadows */
  --sh:      0 8px 30px rgba(0, 0, 0, 0.5);
  --sh-blue: 0 12px 40px rgba(59, 130, 246, 0.3);
  --sh-card: 0 4px 20px rgba(0, 0, 0, 0.4);

  /* Typography */
  --fh: 'Rajdhani', 'Arial Narrow', sans-serif;
  --fb: 'Inter', 'Arial', sans-serif;

  /* Layout */
  --mw:  1280px;
  --nav: 70px;

  /* Transitions */
  --t:  all 0.3s ease;
  --ts: all 0.6s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--fh);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-dim); line-height: 1.7; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue-br);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
}
.section        { padding: 96px 0; }
.section-alt    { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue-md);
  color: var(--white);
  border-color: var(--blue-md);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
  background: var(--blue-br);
  border-color: var(--blue-br);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--blue-br);
  border-color: var(--blue-bdr-h);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  background: var(--blue-glow);
  border-color: var(--blue-br);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-md);
  border-color: rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.btn-lg { padding: 17px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.9rem; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav);
  transition: var(--t);
}
.nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--blue-bdr);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue-br);
  transition: var(--t);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { margin-left: 4px; }

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--t);
}
.nav-ham span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 87vw);
  height: 100vh;
  background: var(--bg-alt);
  border-left: 1px solid var(--blue-bdr);
  z-index: 999;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: calc(var(--nav) + 28px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mob-menu.open { right: 0; }
.mob-menu a {
  display: block;
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 13px 0;
  border-bottom: 1px solid var(--blue-bdr);
  transition: var(--t);
  letter-spacing: 0.04em;
}
.mob-menu a:hover,
.mob-menu a.active { color: var(--white); padding-left: 6px; }
.mob-menu .btn-primary { margin-top: 20px; width: 100%; justify-content: center; }
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   Hero — Homepage
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 5% 55%, rgba(37, 99, 235, 0.25) 0%, transparent 62%),
    radial-gradient(ellipse 55% 55% at 90% 15%, rgba(96, 165, 250, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(30, 58, 138, 0.45) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(96,165,250,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 20%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 64px 28px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--blue-lt);
  border-radius: 50%;
  animation: dot-pulse 2.2s infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.hero-content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--blue-br);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-md);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-list-label {
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.hero-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-list-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.hero-list-item .chk {
  width: 20px; height: 20px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr-h);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-list-item .chk svg {
  width: 10px; height: 10px;
  stroke: var(--blue-br);
  stroke-width: 2.5;
  fill: none;
}
.hero-list-item span {
  font-size: 0.95rem;
  color: var(--text-md);
  line-height: 1.45;
}
.hero-list-item strong {
  color: var(--white);
  font-weight: 600;
}

/* Hero Right — Form Card */
.hero-form-wrap { position: relative; }
.hero-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-xl);
  padding: 36px 34px;
  position: relative;
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-br), transparent);
  border-radius: 1px;
}
.hero-form-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.hero-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 26px;
}

/* ============================================================
   Forms (shared)
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.93rem;
  padding: 11px 14px;
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-br);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg-card); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.show { display: block; }
.form-success svg { color: var(--green); margin: 0 auto 16px; }
.form-success h3 { color: var(--green); font-family: var(--fh); margin-bottom: 8px; }
.form-success p { font-size: 0.93rem; }

/* ============================================================
   About section — Homepage teaser
   ============================================================ */
.about-hp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; font-size: 1rem; }
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  transition: var(--t);
}
.about-feat:hover {
  border-color: var(--blue-br);
  transform: translateY(-3px);
}
.about-feat-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon img { width: 22px; height: 22px; }
.about-feat-text h4 { font-size: 0.92rem; margin-bottom: 3px; }
.about-feat-text p  { font-size: 0.82rem; color: var(--text-faint); }
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.about-main-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  box-shadow: var(--sh-blue);
}
.about-main-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.about-main-card p  { font-size: 0.92rem; }
.about-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--blue-bdr);
}
.about-stat { text-align: center; }
.about-stat .num {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-br);
  line-height: 1;
}
.about-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 4px;
}
.about-float-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue-md);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh);
}
.about-float-badge img { width: 24px; height: 24px; }
.about-float-badge span {
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ============================================================
   Services — Homepage (lean cards)
   ============================================================ */
.srv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.srv-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-xl);
  padding: 42px 36px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.srv-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(59,130,246,0.1), transparent);
  opacity: 0;
  transition: var(--t);
}
.srv-card:hover {
  border-color: var(--blue-br);
  transform: translateY(-7px);
  box-shadow: var(--sh-blue);
}
.srv-card:hover::after { opacity: 1; }
.srv-icon {
  width: 72px; height: 72px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.srv-card:hover .srv-icon {
  background: rgba(37,99,235,0.2);
  border-color: var(--blue-br);
}
.srv-icon img { width: 36px; height: 36px; }
.srv-card h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.srv-card p {
  font-size: 0.93rem;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.srv-price {
  font-family: var(--fh);
  font-size: 1.25rem;
  color: var(--blue-lt);
  font-weight: 700;
  margin-bottom: 26px;
  position: relative; z-index: 1;
}
.srv-card .btn { position: relative; z-index: 1; }

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: var(--t);
}
.why-card:hover {
  border-color: var(--blue-br);
  transform: translateY(-4px);
  box-shadow: var(--sh-blue);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--t);
}
.why-card:hover .why-icon {
  background: rgba(37,99,235,0.18);
  border-color: var(--blue-br);
}
.why-icon img { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.why-card p  { font-size: 0.88rem; line-height: 1.65; }

/* Comparison block */
.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 56px auto 0;
}
.cmp-col {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cmp-col.ours { border-color: var(--blue-br); box-shadow: var(--sh-blue); }
.cmp-head {
  padding: 18px 26px;
  background: var(--bg-card-h);
  border-bottom: 1px solid var(--blue-bdr);
}
.cmp-col.ours .cmp-head { background: var(--blue-md); }
.cmp-head h3 { font-size: 1.05rem; }
.cmp-list {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.cmp-icon {
  width: 19px; height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-icon.good { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); color: var(--green); }
.cmp-icon.bad  { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); color: var(--red); }
.cmp-item.good-t span { color: var(--text-md); }
.cmp-item.bad-t  span { color: var(--text-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--blue-br); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  text-align: left;
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
  gap: 16px;
}
.faq-q:hover { color: var(--blue-lt); }
.faq-ic {
  width: 26px; height: 26px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.faq-item.open .faq-ic {
  background: var(--blue-md);
  border-color: var(--blue-md);
  transform: rotate(45deg);
}
.faq-ic svg {
  width: 12px; height: 12px;
  stroke: var(--blue-lt);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.2s;
}
.faq-item.open .faq-ic svg { stroke: var(--white); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-ans-inner {
  padding: 0 26px 22px;
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.72;
}
.faq-item.open .faq-ans { max-height: 450px; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(145deg, #0d2444 0%, #091b38 100%);
  border-color: var(--blue-br);
  box-shadow: var(--sh-blue);
  transform: scale(1.035);
}
.price-card:not(.featured):hover {
  transform: translateY(-6px);
  border-color: var(--blue-br);
  box-shadow: var(--sh-blue);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-md);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--fh);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 600;
}
.price-period {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 4px;
  margin-bottom: 10px;
}
.price-tagline {
  font-size: 0.84rem;
  color: var(--text-faint);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--blue-bdr);
  margin-bottom: 22px;
}
.price-feats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.42;
}
.price-chk {
  width: 17px; height: 17px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-chk svg {
  width: 9px; height: 9px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}
.price-divider {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 4px 0 8px;
  padding-left: 26px;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav) + 84px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 50% 35%, rgba(37,99,235,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,74,138,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero h1 em { font-style: normal; color: var(--blue-br); }
.page-hero > .container > p {
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--text-md);
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(37,99,235,0.12) 100%);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-xl);
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 22%; right: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-br), transparent);
}
.cta-card h2 { margin-bottom: 14px; }
.cta-card p  { margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   About Page — Specific
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.val-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  transition: var(--t);
}
.val-card:hover {
  border-color: var(--blue-br);
  transform: translateY(-5px);
  box-shadow: var(--sh-blue);
}
.val-icon {
  width: 64px; height: 64px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.val-icon img { width: 32px; height: 32px; }
.val-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.val-card p  { font-size: 0.88rem; }

/* Highlight callout */
.hl-box {
  background: linear-gradient(135deg, rgba(26,86,219,0.13), rgba(59,130,246,0.07));
  border: 1px solid var(--blue-bdr);
  border-left: 3px solid var(--blue-br);
  border-radius: var(--r);
  padding: 22px 26px;
  margin: 26px 0;
}
.hl-box p { color: var(--text-md); font-size: 0.96rem; }

/* ============================================================
   Process Steps
   ============================================================ */
.steps {
  max-width: 680px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 22px;
  position: relative;
  padding-bottom: 38px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px; top: 42px; bottom: 0;
  width: 1px;
  background: var(--blue-bdr);
}
.step-n {
  width: 42px; height: 42px;
  background: var(--blue-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.step-body h3 { font-size: 1.1rem; margin-bottom: 7px; margin-top: 8px; }
.step-body p  { font-size: 0.88rem; }

/* ============================================================
   Features Grid (Service Pages)
   ============================================================ */
.feats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: var(--t);
}
.feat-card:hover {
  border-color: var(--blue-br);
  transform: translateY(-4px);
  box-shadow: var(--sh-blue);
}
.feat-icon {
  width: 46px; height: 46px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feat-icon img { width: 24px; height: 24px; }
.feat-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.feat-card p  { font-size: 0.83rem; }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-br), transparent);
}
.contact-form-card h2 { font-size: 2rem; margin-bottom: 6px; }
.contact-form-card .sub { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 28px; }
.contact-info-col {}
.contact-info-col h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-col > p  { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  margin-bottom: 14px;
  transition: var(--t);
}
.contact-item:hover { border-color: var(--blue-br); }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-bdr);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon img { width: 22px; height: 22px; }
.contact-item-text h4 { font-size: 0.88rem; margin-bottom: 2px; }
.contact-item-text p  { font-size: 0.83rem; color: var(--text-faint); }
.expect-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.expect-item .num {
  width: 24px; height: 24px;
  background: var(--blue-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--blue-bdr);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p    { font-size: 0.87rem; line-height: 1.65; color: var(--text-faint); }
.footer-col h4 {
  font-family: var(--fh);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-faint);
  transition: var(--t);
}
.footer-links a:hover { color: var(--blue-lt); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-faint);
  margin-bottom: 11px;
}
.footer-contact-item img { width: 16px; height: 16px; opacity: 0.55; }
.footer-bottom {
  border-top: 1px solid var(--blue-bdr);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--text-faint);
}

/* ============================================================
   Responsive Utility Grids
   ============================================================ */
.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.centered { max-width: 900px; margin: 0 auto; }
.centered-lg { max-width: 1000px; margin: 0 auto; }

@media (max-width: 900px) {
  .col-2 { grid-template-columns: 1fr; }
  .col-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .col-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-up.vis, .anim-left.vis, .anim-right.vis {
  opacity: 1;
  transform: translate(0);
}
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }
.d4 { transition-delay: 0.4s !important; }
.d5 { transition-delay: 0.5s !important; }
.d6 { transition-delay: 0.6s !important; }

/* Hero entrance */
.hero-content .hero-badge { animation: fadeUp 0.6s ease 0.1s both; }
.hero-content h1          { animation: fadeUp 0.6s ease 0.2s both; }
.hero-content .hero-desc  { animation: fadeUp 0.6s ease 0.32s both; }
.hero-content .hero-list-label { animation: fadeUp 0.6s ease 0.44s both; }
.hero-content .hero-list  { animation: fadeUp 0.6s ease 0.55s both; }
.hero-form-wrap           { animation: fadeUp 0.7s ease 0.35s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
/* XL */
@media (min-width: 1400px) {
  :root { --mw: 1380px; }
}

/* LG → Tablet landscape */
@media (max-width: 1100px) {
  .feats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .price-card.featured { transform: none; }
}

/* MD → Tablet portrait */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 50px 28px 68px;
  }
  .hero-form-card { max-width: 520px; margin: 0 auto; }
  .about-hp-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .srv-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-compare { grid-template-columns: 1fr; max-width: 500px; }
}

/* SM → Mobile */
@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .nav-ham   { display: flex; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .why-grid    { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .feats-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .cta-btns    { flex-direction: column; align-items: center; }
  .about-float-badge { right: 0; bottom: -14px; }
}

/* XS → Small phone */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-form-card { padding: 24px 20px; }
  .hero-form-card h3 { font-size: 1.25rem; }
  .page-hero { padding-top: calc(var(--nav) + 56px); }
}
