/* ================================================================
   AUTOMYRON — Main Stylesheet
   Premium Dark AI Agency Theme
   ================================================================ */

/* ── Variables ── */
:root {
  --orange:       #FF7A00;
  --orange-dim:   #CC6200;
  --orange-glow:  rgba(255,122,0,.25);
  --orange-faint: rgba(255,122,0,.08);
  --bg:           #0B0B0B;
  --bg2:          #111111;
  --bg3:          #161616;
  --surface:      #1A1A1A;
  --surface2:     #212121;
  --border:       rgba(255,255,255,.07);
  --border-hover: rgba(255,122,0,.35);
  --white:        #FFFFFF;
  --white-80:     rgba(255,255,255,.80);
  --white-50:     rgba(255,255,255,.50);
  --white-20:     rgba(255,255,255,.20);
  --white-08:     rgba(255,255,255,.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 40px rgba(0,0,0,.6);
  --shadow-orange:0 0 40px rgba(255,122,0,.20);
  --trans:        .35s cubic-bezier(.4,0,.2,1);
  --nav-h:        76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Noise ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .03;
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo svg { width: 80px; height: 80px; }
.pre-tri { stroke-dasharray: 150; stroke-dashoffset: 150; animation: drawTri 1.2s ease forwards; }
.pre-a   { stroke-dasharray: 80;  stroke-dashoffset: 80;  animation: drawTri .8s .4s ease forwards; }
.pre-bar { stroke-dasharray: 20;  stroke-dashoffset: 20;  animation: drawTri .4s .8s ease forwards; }
@keyframes drawTri { to { stroke-dashoffset: 0; } }

/* ── Custom Cursor ── */
#cursor-dot, #cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform .05s linear;
}
#cursor-dot  { width: 6px;  height: 6px;  background: var(--orange); }
#cursor-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(255,122,0,.5);
  transition: transform .15s ease, width .25s ease, height .25s ease, opacity .25s ease;
}
body:hover #cursor-ring { opacity: 1; }

/* ── Container ── */
.container { width: min(1200px, 90%); margin-inline: auto; }

/* ── Section Spacing ── */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; height: 1px; width: 24px;
  background: var(--orange); opacity: .6;
}

/* ── Section Heading ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: .03em; line-height: 1.05;
  color: var(--white);
}
.section-heading .accent { color: var(--orange); }

.section-subheading {
  font-size: 1.05rem; color: var(--white-50); line-height: 1.7;
  max-width: 560px; margin-top: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .03em; transition: var(--trans);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-110%); transition: transform .3s ease;
}
.btn:hover::after { transform: translateX(0); }
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 0 28px rgba(255,122,0,.35);
}
.btn-primary:hover { background: #FF6A00; box-shadow: 0 0 44px rgba(255,122,0,.55); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--border-hover); color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost { color: var(--white-80); padding: 14px 0; }
.btn-ghost:hover { color: var(--orange); }
.btn-ghost svg { width: 18px; }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Tags ── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
}
.tag-orange { background: var(--orange-faint); color: var(--orange); border: 1px solid rgba(255,122,0,.2); }
.tag-popular { background: var(--orange); color: var(--white); }

/* ================================================================
   NAVIGATION
   ================================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
}

#site-header.scrolled {
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.06);
}
.nav-container {
  width: min(1280px, 92%); margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: .12em; color: var(--white);
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  padding: 8px 16px; border-radius: 8px; font-weight: 500;
  font-size: .88rem; color: var(--white-80);
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 2px; width: 20px; background: var(--orange);
  transition: transform var(--trans); border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,11,11,.97); backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border); padding: 24px;
  flex-direction: column; gap: 8px;
  transform: translateY(-110%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 999; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 1rem; font-weight: 500; color: var(--white-80);
  transition: var(--trans);
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--white); background: var(--white-08);
}

/* ================================================================
   SERVICES DROPDOWN — Desktop
   ================================================================ */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 560px;
  background: rgba(15,15,15,.97);
  border: 1px solid rgba(255,122,0,.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 2000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Arrow pointer tip */
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: rgba(15,15,15,.97);
  border-left: 1px solid rgba(255,122,0,.2);
  border-top: 1px solid rgba(255,122,0,.2);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; padding: 12px;
}

.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius);
  transition: background var(--trans), border-color var(--trans);
  border: 1px solid transparent;
  color: var(--white);
}
.nav-dropdown-item:hover {
  background: rgba(255,122,0,.08);
  border-color: rgba(255,122,0,.2);
}
.nav-dropdown-item--hot strong { color: var(--orange); }

.ndi-icon {
  font-size: 1.2rem; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border-radius: 8px; flex-shrink: 0;
}
.nav-dropdown-item span:last-child { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-item strong { font-size: .82rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.nav-dropdown-item small  { font-size: .72rem; color: var(--white-50); line-height: 1.2; }

.nav-dropdown-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 10px 20px; text-align: center;
}
.nav-dropdown-footer a {
  font-size: .78rem; color: var(--orange); font-weight: 600;
  letter-spacing: .04em; transition: opacity var(--trans);
}
.nav-dropdown-footer a:hover { opacity: .75; }

/* ================================================================
   MOBILE DROPDOWN ACCORDION
   ================================================================ */
.mobile-dropdown { width: 100%; }

.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 16px; border-radius: 8px;
  font-size: 1rem; font-weight: 500; color: var(--white-80);
  background: transparent; border: none; cursor: pointer;
  transition: var(--trans); font-family: var(--font-body);
}
.mobile-dropdown-toggle:hover { color: var(--white); background: var(--white-08); }
.mobile-dropdown-toggle[aria-expanded="true"] { color: var(--white); background: var(--white-08); }
.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-arrow { transform: rotate(180deg); }

.mobile-dropdown-arrow {
  transition: transform .3s ease; flex-shrink: 0;
}

.mobile-dropdown-list {
  display: none !important;
  flex-direction: column; gap: 2px;
  padding: 4px 0 4px 12px; margin-bottom: 0 !important;
}
.mobile-dropdown-list.open { display: flex !important; }
.mobile-dropdown-list li a {
  padding: 10px 14px; font-size: .9rem;
  color: var(--white-50); border-radius: 8px;
  display: block; transition: var(--trans);
}
.mobile-dropdown-list li a:hover { color: var(--white); background: var(--white-08); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated grid background */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,122,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,0,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,0,.18) 0%, transparent 70%);
  top: -15%; right: -10%;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,69,0,.12) 0%, transparent 70%);
  bottom: 5%; left: -8%;
  animation-delay: -4s; animation-duration: 10s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

/* Left: text */
.hero-content { padding: 60px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,122,0,.3);
  background: rgba(255,122,0,.06);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,0,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(255,122,0,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0; letter-spacing: .02em;
  color: var(--white); margin-bottom: 24px;
}
.hero-headline .line-orange { color: var(--orange); position: relative; }
.hero-headline .line-orange::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem; color: var(--white-50); line-height: 1.75;
  max-width: 500px; margin-bottom: 44px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface2); color: var(--white-80);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: .82rem; color: var(--white-50); line-height: 1.5; }
.hero-proof-text strong { color: var(--orange); }

/* Right: visual card */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow), 0 0 60px rgba(255,122,0,.06);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(255,122,0,.2), transparent 60%);
  z-index: -1;
}
.card-header-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.card-label { font-size: .72rem; color: var(--white-50); font-weight: 500; letter-spacing: .06em; }
.card-live {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; color: #00D26A; font-weight: 600;
}
.card-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #00D26A; animation: pulse-dot 2s ease infinite;
}
.card-stat {
  text-align: center; padding: 20px; background: var(--bg2);
  border-radius: var(--radius); margin-bottom: 16px;
}
.card-stat-num {
  font-family: var(--font-display); font-size: 2.8rem;
  color: var(--orange); letter-spacing: .04em; line-height: 1;
}
.card-stat-label { font-size: .78rem; color: var(--white-50); margin-top: 4px; }
.card-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-metric {
  background: var(--bg2); border-radius: 10px; padding: 14px 16px;
  border: 1px solid var(--border);
}
.card-metric-label { font-size: .68rem; color: var(--white-50); margin-bottom: 4px; }
.card-metric-val {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--white); letter-spacing: .04em;
}
.card-metric-val.up { color: #00D26A; }
.card-progress { margin-top: 16px; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--white-50); margin-bottom: 8px;
}
.progress-track {
  height: 6px; background: var(--bg2); border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--orange), #FF4500);
  border-radius: 3px; transition: width 1.5s ease;
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; right: 0; top: -2px; bottom: -2px;
  width: 10px; background: var(--orange);
  border-radius: 50%; box-shadow: 0 0 8px var(--orange);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 36px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; divide-color: var(--border);
}
.stat-item {
  text-align: center; padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.6rem;
  color: var(--orange); letter-spacing: .04em; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--white-50); margin-top: 6px; letter-spacing: .04em; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-subheading { margin-inline: auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg2); padding: 36px 32px;
  transition: var(--trans); position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange-faint); opacity: 0; transition: opacity var(--trans);
}
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0); transition: transform var(--trans); transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--trans); color: var(--orange);
  position: relative; z-index: 1;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon {
  background: var(--orange-faint);
  border-color: rgba(255,122,0,.35);
  box-shadow: 0 0 20px rgba(255,122,0,.2);
}
.service-title {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
  position: relative; z-index: 1; transition: color var(--trans);
}
.service-card:hover .service-title { color: var(--orange); }
.service-desc { font-size: .87rem; color: var(--white-50); line-height: 1.7; position: relative; z-index: 1; }

/* ================================================================
   PACKAGES / PRICING
   ================================================================ */
.packages-header { text-align: center; margin-bottom: 64px; }
.packages-header .section-subheading { margin-inline: auto; }

.packages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; align-items: start;
}
.package-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: var(--trans);
  display: flex; flex-direction: column;
}
.package-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.package-card.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255,122,0,.3), var(--shadow-orange);
}
.package-card.popular::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(255,122,0,.15), transparent);
  z-index: -1;
}
.package-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: .05em; color: var(--white); margin-bottom: 4px;
}
.package-tagline { font-size: .8rem; color: var(--white-50); margin-bottom: 24px; }
.package-price {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--orange); letter-spacing: .04em;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.package-features { flex: 1; list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.package-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--white-80); line-height: 1.5;
}
.package-features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange-faint); border: 1px solid rgba(255,122,0,.3);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3,8 6.5,11.5 13,5' stroke='%23FF7A00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(255,122,0,.08);
}
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--orange-faint); border: 1px solid rgba(255,122,0,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--orange);
}
.why-icon svg { width: 24px; height: 24px; }
.why-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: .87rem; color: var(--white-50); line-height: 1.7; }

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section { background: var(--bg2); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-grid::after {
  content: ''; position: absolute;
  top: 52px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--orange-dim), var(--border), transparent);
  z-index: 0;
}
.process-item {
  text-align: center; padding: 0 24px;
  position: relative; z-index: 1;
}
.process-num-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: var(--trans);
}
.process-item:hover .process-num-wrap {
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(255,122,0,.3);
  background: var(--orange-faint);
}
.process-num {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--orange); letter-spacing: .06em;
}
.process-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.process-desc { font-size: .85rem; color: var(--white-50); line-height: 1.7; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--trans);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-faint); border: 1px solid rgba(255,122,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--orange); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-role { font-size: .78rem; color: var(--white-50); margin-top: 2px; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 15px; height: 15px; }
.star.filled { fill: #FF7A00; stroke: #FF7A00; }
.star:not(.filled) { fill: none; stroke: var(--white-20); }
.testi-quote {
  font-size: .9rem; color: var(--white-80); line-height: 1.75;
  font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--orange); font-size: 1.4rem; line-height: 0; vertical-align: -4px; margin-right: 2px; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; padding: 120px 0; position: relative; overflow: hidden;
}
.cta-section .hero-orb-1 { opacity: .5; }
.cta-section .hero-orb-2 { opacity: .3; }
.cta-inner { position: relative; z-index: 1; }
.cta-heading {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05; letter-spacing: .03em;
  margin-bottom: 20px;
}
.cta-sub { font-size: 1.05rem; color: var(--white-50); margin-bottom: 44px; max-width: 500px; margin-inline: auto; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.contact-info-block { position: sticky; top: 100px; }
.contact-info-block h2 {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem);
  line-height: 1.05; letter-spacing: .03em; margin-bottom: 18px;
}
.contact-info-block p { font-size: .95rem; color: var(--white-50); line-height: 1.75; margin-bottom: 36px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; transition: var(--trans);
}
.contact-method:hover { border-color: var(--border-hover); }
.contact-method-icon {
  width: 40px; height: 40px; background: var(--orange-faint);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; }
.contact-method-label { font-size: .72rem; color: var(--white-50); }
.contact-method-val { font-size: .92rem; font-weight: 600; }

/* Form */
.contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white-50);
}
.form-label .req { color: var(--orange); margin-left: 3px; }
.form-control {
  padding: 14px 18px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: .9rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.form-control:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,.15);
}
.form-control::placeholder { color: var(--white-20); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* Multi-select checkboxes */
.checkbox-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-top: 4px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: var(--trans);
  font-size: .84rem; color: var(--white-80);
}
.checkbox-item:hover { border-color: rgba(255,122,0,.3); }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-item .check-box {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--white-20); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.checkbox-item input:checked ~ .check-label ~ .check-box,
.checkbox-item input:checked + .check-box {
  background: var(--orange); border-color: var(--orange);
}
.checkbox-item.checked {
  border-color: rgba(255,122,0,.4); background: var(--orange-faint);
}

.form-note { font-size: .78rem; color: var(--white-50); margin-top: 6px; }
.free-call-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; margin-bottom: 28px; transition: var(--trans);
}
.free-call-row:hover { border-color: rgba(255,122,0,.3); }
.free-call-row input[type="checkbox"] { display: none; }
.free-call-check {
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid var(--white-20); flex-shrink: 0;
  transition: var(--trans); display: flex; align-items: center; justify-content: center;
}
.free-call-row.checked .free-call-check {
  background: var(--orange); border-color: var(--orange);
}
.free-call-row.checked .free-call-check::after {
  content: '';
  width: 10px; height: 6px; border: 2px solid white;
  border-top: none; border-right: none;
  transform: rotate(-45deg) translateY(-1px); display: block;
}
.free-call-text { font-size: .9rem; color: var(--white-80); }
.free-call-text strong { color: var(--orange); }

.form-success {
  text-align: center; padding: 60px 20px;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 72px; height: 72px; background: rgba(0,210,106,.1);
  border: 1px solid rgba(0,210,106,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: #00D26A;
}
.form-success-icon svg { width: 32px; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; letter-spacing: .05em; }
.form-success p { color: var(--white-50); font-size: .95rem; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero { padding: 160px 0 100px; }
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-hero-visual {
  position: relative; display: flex; justify-content: center;
}
.about-logo-big {
  width: 280px; height: 280px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-logo-big svg { width: 160px; height: 160px; }
.about-orbit {
  position: absolute; inset: -24px; border-radius: 50%;
  border: 1px dashed rgba(255,122,0,.25);
  animation: spin 20s linear infinite;
}
.about-orbit-dot {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
@keyframes spin { to { transform: rotate(360deg); } }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center; transition: var(--trans);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange-faint); border: 1px solid rgba(255,122,0,.3);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--orange);
}
.team-name { font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--white-50); }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-hero { padding: 160px 0 100px; }
.service-detail-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-detail-section:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 72px; height: 72px; background: var(--orange-faint);
  border: 1px solid rgba(255,122,0,.2); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 24px;
}
.service-detail-icon svg { width: 36px; height: 36px; }
.service-detail-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .03em; margin-bottom: 16px; line-height: 1.05;
}
.service-detail-desc { font-size: 1rem; color: var(--white-50); line-height: 1.8; margin-bottom: 24px; }
.service-detail-list { display: flex; flex-direction: column; gap: 10px; }
.service-detail-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--white-80);
}
.service-detail-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; background: var(--orange-faint);
  border: 1px solid rgba(255,122,0,.3);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4,10 8,14 16,6' stroke='%23FF7A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.service-visual-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  text-align: center; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-visual-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,122,0,.06) 0%, transparent 70%);
}
.service-visual-num {
  font-family: var(--font-display); font-size: 8rem;
  color: rgba(255,122,0,.08); position: absolute;
  letter-spacing: .05em; line-height: 1;
}
.service-visual-icon {
  position: relative; z-index: 1; color: var(--orange);
}
.service-visual-icon svg { width: 100px; height: 100px; }

/* ================================================================
   PAGE HERO BANNER (about/services/contact)
   ================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,122,0,.1), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: .04em; line-height: 1;
  margin-bottom: 16px;
}
.page-hero-sub { font-size: 1.05rem; color: var(--white-50); max-width: 560px; margin-inline: auto; line-height: 1.75; }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding-top: 0; }
.footer-glow-bar {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-dim), transparent);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; padding: 72px 0 48px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: .88rem; color: var(--white-50); line-height: 1.7; margin-bottom: 28px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-50); transition: var(--trans);
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-faint); }
.footer-heading { font-weight: 700; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; color: var(--white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .86rem; color: var(--white-50); transition: color var(--trans); }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; color: var(--white-50); margin-bottom: 14px;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact a { color: var(--white-50); transition: color var(--trans); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: var(--white-50); }
.footer-bottom strong { color: var(--orange); }

/* Back to top */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 0 20px rgba(255,122,0,.4);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(255,122,0,.6); }
#back-to-top svg { width: 18px; height: 18px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ================================================================
   GLITCH TEXT
   ================================================================ */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: transparent;
}
.glitch::before {
  color: var(--orange); animation: glitch1 3s infinite .5s; clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
}
.glitch::after {
  color: #00FFFF; animation: glitch2 3s infinite 1s; clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  opacity: .3;
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-3px); }
  96% { transform: translateX(3px); }
}
@keyframes glitch2 {
  0%, 88%, 100% { transform: translateX(0); }
  90% { transform: translateX(4px); }
  95% { transform: translateX(-4px); }
}

/* ================================================================
   ALERTS / FLASH MESSAGES
   ================================================================ */
.alert {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: .9rem; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(0,210,106,.1); border: 1px solid rgba(0,210,106,.3); color: #00D26A; }
.alert-error   { background: rgba(255,60,60,.1);  border: 1px solid rgba(255,60,60,.3);  color: #FF3C3C; }

/* ================================================================
   ABOUT PAGE — Responsive Grid Classes
   ================================================================ */
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-world-card {
  background: linear-gradient(135deg,rgba(255,122,0,.07),rgba(255,69,0,.03));
  border: 1px solid rgba(255,122,0,.18);
  border-radius: 20px; padding: 40px 48px;
  max-width: 860px; margin: 0 auto;
}
.about-world-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

/* ================================================================
   RESPONSIVE — Full Breakpoint System
   ================================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .footer-inner        { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
  .packages-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
  .container           { width: min(1200px, 94%); }
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-visual         { display: none; }
  .hero-content        { padding-bottom: 60px; }
  .hero-badge          { margin-inline: auto; }
  .hero-sub            { max-width: 100%; margin-inline: auto; }
  .hero-cta-row        { justify-content: center; }
  .hero-proof          { justify-content: center; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .footer-inner        { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand        { grid-column: 1 / -1; }
  .footer-tagline      { max-width: 100%; }
  .packages-grid       { grid-template-columns: repeat(2, 1fr); }
  /* Dropdown: shift left if near right edge */
  .nav-dropdown-menu   { left: auto; right: 0; transform: translateY(-8px); }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { transform: translateY(0); }
  .nav-dropdown-menu::before { left: auto; right: 40px; transform: translateX(0) rotate(45deg); }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .section             { padding: 100px 0; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-grid        { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .process-grid::after { display: none; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-block  { position: static; }
  .about-hero-inner    { grid-template-columns: 1fr; text-align: center; }
  .about-logo-big      { margin-inline: auto; }
  .about-mission-grid  { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-world-grid    { grid-template-columns: 1fr; gap: 32px; }
  .about-world-card    { padding: 28px 24px; }
  .about-globe-wrap    { display: none; }
  .service-detail-inner,
  .service-detail-inner.reverse { grid-template-columns: 1fr!important; direction: ltr; gap: 40px; }
  .service-visual-block { min-height: 200px; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  
  
section#blog .home-blog-grid {
    grid-template-columns: 1fr!important;
}

  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .mobile-menu          { display: flex; }

  .section             { padding: 72px 0; }
  .section-heading     { font-size: clamp(1.9rem, 7vw, 3rem); }
  .page-hero           { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .page-hero-title     { font-size: clamp(2.2rem, 9vw, 4rem); }
  .page-hero-sub       { font-size: .95rem; }

  .hero                { padding-top: var(--nav-h); min-height: auto; padding-bottom: 60px; }
  .hero-content        { padding: 40px 0 40px; }
  .hero-headline       { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub            { font-size: .95rem; margin-bottom: 32px; }
  .hero-badge          { font-size: .7rem; }
  .hero-cta-row        { gap: 12px; }
  .hero-proof          { flex-direction: column; text-align: center; gap: 10px; }

  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .stat-num            { font-size: 2rem; }

  .services-grid       { grid-template-columns: 1fr; background: none; border: 1px solid var(--border); }
  .service-card        { border-bottom: 1px solid var(--border); border-radius: 0; }
  .service-card:last-child { border-bottom: none; }

  .packages-grid       { grid-template-columns: 1fr; }
  .package-card        { padding: 28px 20px; }

  .why-grid            { grid-template-columns: 1fr; gap: 16px; }
  .why-card            { padding: 24px; }

  .process-grid        { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::after { display: none; }
  .process-item        { padding: 0; }

  .testimonials-grid   { grid-template-columns: 1fr; }
  .testimonial-card    { padding: 24px; }

  .contact-grid        { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card   { padding: 24px 18px; }
  .form-row            { grid-template-columns: 1fr; gap: 0; }
  .checkbox-grid       { grid-template-columns: 1fr; }

  .cta-section         { padding: 80px 0; }
  .cta-heading         { font-size: clamp(2rem, 7vw, 3rem); }
  .cta-btns            { flex-direction: column; align-items: center; }
  .cta-btns .btn       { width: 100%; max-width: 320px; justify-content: center; }

  .footer-inner        { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 32px; }
  .footer-brand        { grid-column: auto; }
  .footer-tagline      { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  .about-logo-big      { width: 200px; height: 200px; }
  .about-logo-big svg  { width: 120px; height: 120px; }
  .team-grid           { grid-template-columns: 1fr 1fr; }

  .service-detail-section { padding: 48px 0; }
  #back-to-top         { bottom: 20px; right: 20px; width: 40px; height: 40px; }

/* Hide desktop dropdown on mobile */
  .nav-dropdown-menu   { display: none !important; }
  /* Hide custom cursor on mobile */
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  :root                { --nav-h: 60px; }
  .container           { width: 92%; }
  .logo-text           { font-size: 1.2rem; }
  .hero-headline       { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-cta-row        { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn   { width: 100%; justify-content: center; }
  .hero-proof          { margin-top: 32px; padding-top: 24px; }
  .page-hero           { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .stats-grid          { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item           { padding: 16px 12px; }
  .stat-num            { font-size: 1.8rem; }
  .stat-label          { font-size: .72rem; }
  .service-card        { padding: 24px 20px; }
  .services-header     { margin-bottom: 40px; }
  .package-card        { padding: 24px 16px; }
  .package-name        { font-size: 1.4rem; }
  .package-price       { font-size: 1.8rem; }
  .process-num-wrap    { width: 56px; height: 56px; }
  .process-num         { font-size: 1.3rem; }
  .contact-method      { padding: 12px 14px; gap: 10px; }
  .contact-form-card   { padding: 20px 14px; border-radius: var(--radius); }
  .form-control        { padding: 12px 14px; font-size: .85rem; }
  .footer-inner        { gap: 28px; padding: 36px 0 24px; }
  .social-links a      { width: 34px; height: 34px; }
  .footer-heading      { margin-bottom: 14px; }
  .team-grid           { grid-template-columns: 1fr; }
  .section-label       { font-size: .68rem; }
  .btn                 { padding: 12px 22px; font-size: .85rem; }
  .btn-lg              { padding: 14px 26px; font-size: .9rem; }
  .cta-sub             { font-size: .9rem; }
  .about-logo-big      { width: 140px; height: 140px; }
  .about-logo-big svg  { width: 90px; height: 90px; }
  .about-world-card    { padding: 20px 16px; border-radius: 12px; }
  .lp-offer-banner     { font-size: .68rem; gap: 6px; }
  .nav-price-badge     { display: none; }
}

/* ── 360px ── */
@media (max-width: 360px) {
  .hero-headline       { font-size: 1.9rem; }
  .page-hero-title     { font-size: 2rem; }
  .section-heading     { font-size: 1.8rem; }
  .stats-grid          { grid-template-columns: 1fr; }
  .stat-item           { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .checkbox-grid       { grid-template-columns: 1fr; }
}

/* ================================================================
   UTILITY & COMPONENT STYLES
   ================================================================ */
.glow-text { text-shadow: 0 0 20px rgba(255,122,0,.5), 0 0 60px rgba(255,122,0,.2); }
.underline-orange { position: relative; display: inline-block; }
.underline-orange::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255,122,0,.3));
  border-radius: 2px;
}
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.pill-orange { background: var(--orange-faint); color: var(--orange); border: 1px solid rgba(255,122,0,.25); }
.pill-white  { background: var(--white-08); color: var(--white-80); border: 1px solid var(--border); }
.divider-orange { border: none; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); margin: 60px 0; opacity: .4; }
.icon-box { width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: var(--orange-faint); border: 1px solid rgba(255,122,0,.2); color: var(--orange); flex-shrink: 0; }
.icon-box svg { width: 26px; height: 26px; }
.icon-box-lg { width: 72px; height: 72px; border-radius: var(--radius-lg); }
.icon-box-lg svg { width: 34px; height: 34px; }
.card-glow:hover { box-shadow: 0 0 0 1px rgba(255,122,0,.2), 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(255,122,0,.08) !important; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--white-50); }
.text-sm     { font-size: .85rem; }
.text-xs     { font-size: .75rem; }
.font-bold   { font-weight: 700; }
.font-display{ font-family: var(--font-display); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
::selection { background: rgba(255,122,0,.3); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.img-placeholder { background: var(--surface2); border: 1px dashed var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white-20); font-size: .8rem; min-height: 200px; }
.form-floating { position: relative; }
.form-floating .form-control { padding-top: 22px; padding-bottom: 6px; }
.form-floating label { position: absolute; top: 50%; left: 18px; transform: translateY(-50%); font-size: .9rem; color: var(--white-20); pointer-events: none; transition: var(--trans); }
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label { top: 10px; transform: none; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); }
[data-tooltip] { position: relative; cursor: help; }
[data-tooltip]::after { content: attr(data-tooltip); position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--surface2); color: var(--white); font-size: .75rem; padding: 6px 12px; border-radius: 6px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .2s; border: 1px solid var(--border); z-index: 10; }
[data-tooltip]:hover::after { opacity: 1; }
.skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 24px; font-size: .88rem; color: var(--white); box-shadow: var(--shadow); z-index: 9000; transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s; opacity: 0; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { border-color: rgba(0,210,106,.4); }
.toast-error   { border-color: rgba(255,60,60,.4); }
hr.line { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
blockquote { border-left: 3px solid var(--orange); padding: 16px 24px; margin: 24px 0; background: var(--orange-faint); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--white-80); font-size: .95rem; line-height: 1.7; }
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th { background: var(--surface2); color: var(--orange); text-align: left; padding: 12px 16px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--border); }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--white-80); }
.data-table tr:hover td { background: var(--white-08); }
.data-table tr:last-child td { border-bottom: none; }
.gradient-text { background: linear-gradient(135deg, #fff 0%, var(--orange) 60%, #FF4500 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.border-gradient { position: relative; }
.border-gradient::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, var(--orange), transparent, var(--orange)); z-index: -1; opacity: 0; transition: opacity var(--trans); }
.border-gradient:hover::before { opacity: 1; }
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .10s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .20s; }
.stagger > *:nth-child(5) { transition-delay: .25s; }
.stagger > *:nth-child(6) { transition-delay: .30s; }
.neon-pulse { animation: neonPulse 3s ease-in-out infinite; }
@keyframes neonPulse { 0%, 100% { box-shadow: 0 0 10px rgba(255,122,0,.3), 0 0 30px rgba(255,122,0,.1); } 50% { box-shadow: 0 0 20px rgba(255,122,0,.6), 0 0 60px rgba(255,122,0,.2); } }
@media print { #site-header, #back-to-top, .hero-orb, .noise-overlay, #cursor-dot, #cursor-ring, #preloader { display: none !important; } body { background: #fff; color: #000; } .section { padding: 40px 0; } }

/* ── Nav price badge ── */
.nav-price-badge { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: .62rem; font-weight: 800; padding: 2px 7px; border-radius: 100px; margin-left: 4px; letter-spacing: .04em; }
.nav-link-offer { color: var(--orange) !important; font-weight: 600 !important; }

/* ── Special service section ── */
.special-service-section { position: relative; }
.special-service-section::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, #FF7A00, transparent); }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px !important; font-size: .78rem !important; }

/* ================================================================
   OFFER BANNER
   ================================================================ */
.lp-offer-banner { background: linear-gradient(135deg, #FF7A00, #FF4500); padding: 0 20px; position: fixed; top: 0; left: 0; right: 0; z-index: 1100; height: 40px; display: flex; align-items: center; justify-content: center; gap: 14px; overflow: hidden; }
.page-home #site-header  { top: 40px !important; }
.page-home .hero         { padding-top: calc(var(--nav-h) + 40px) !important; }
.page-home .mobile-menu  { top: calc(40px + var(--nav-h)) !important; }
@media (max-width: 768px) {
  .lp-offer-banner          { display: none; }
  .page-home #site-header   { top: 0 !important; }
  .page-home .hero          { padding-top: var(--nav-h) !important; }
  .page-home .mobile-menu   { top: var(--nav-h) !important; }
}
@media (max-width: 600px) { .lp-offer-card { flex-direction: column; } .lp-offer-card .btn { width: 100%; justify-content: center; } }

/* ================================================================
   SUB-SERVICE PAGES — Responsive Classes
   Replaces all inline grid styles on service detail pages
   ================================================================ */

/* ── 2-col intro section (text + stats card) ── */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── 3-col features/solutions grid ── */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Stats card inner layout ── */
.svc-stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.svc-stats-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,122,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.svc-stats-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.svc-stat-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.svc-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: .04em;
  min-width: 56px;
  flex-shrink: 0;
}
.svc-stat-label {
  font-size: .85rem;
  color: var(--white-50);
  line-height: 1.4;
}

/* ── Section padding utility ── */
.svc-section { padding: 80px 0; }
.svc-section-alt { padding: 80px 0; background: var(--bg2); }

/* ── CTA button row ── */
.svc-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ================================================================
   SUB-SERVICE RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ── Tablet ── */
@media (max-width: 900px) {
  .svc-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-stats-card {
    padding: 28px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .svc-section,
  .svc-section-alt {
    padding: 56px 0;
  }
  .svc-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-stats-card {
    padding: 20px;
  }
  .svc-stat-num {
    font-size: 1.4rem;
    min-width: 44px;
  }
  .svc-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .svc-hero-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .svc-section,
  .svc-section-alt {
    padding: 40px 0;
  }
  .svc-stats-card {
    padding: 16px;
  }
  .svc-stat-row {
    padding: 10px 12px;
    gap: 10px;
  }
  .svc-stat-num {
    font-size: 1.2rem;
    min-width: 36px;
  }
}

/* ================================================================
   BLOG — Content Typography & Layout
   ================================================================ */

/* Article body typography */
.blog-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--white-80);
}

body.page-blog-post main#main-content article p {
    margin-bottom: 30px;
}


.blog-content p { margin-bottom: 24px; }
.blog-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: .03em;
  color: var(--white);
  margin: 48px 0 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 12px;
}
.blog-content ul,
.blog-content ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-content ul li,
.blog-content ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--white-80);
  line-height: 1.7;
}
.blog-content ul li::before {
  content: '✓';
  color: var(--orange);
  font-size: 0rem;
  flex-shrink: 0;
  margin-top: 2px;
 
}
.blog-content ol { counter-reset: list-counter; }
.blog-content ol li { counter-increment: list-counter; }
.blog-content ol li::before {
  content: counter(list-counter);
  background: var(--orange-faint);
  border: 1px solid rgba(255,122,0,.3);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.blog-content strong { color: var(--white); font-weight: 700; }
.blog-content em { color: var(--white-80); font-style: italic; }


.blog-content a:hover { opacity: .75; }
.blog-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--orange-faint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--white-80);
  font-size: .95rem;
  line-height: 1.75;
}
.blog-content .data-table { margin: 28px 0; }
.blog-content img {
  border-radius: var(--radius);
  width: 100%;
  margin: 28px 0;
}

/* ── Blog index page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  text-decoration: none;
}
.blog-featured-card:hover {
  border-color: rgba(255,122,0,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(255,122,0,.08);
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(255,122,0,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(255,122,0,.08);
}
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, #1a1a1a, #212121);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,122,0,.08) 0%, transparent 70%);
}
.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-cat-badge {
  display: inline-block;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.25);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: .84rem;
  color: var(--white-50);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: .75rem;
  color: var(--white-50);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-read-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ── Blog post page layout ── */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
  padding: 60px 0 80px;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.blog-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.blog-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.blog-toc-list a {
  font-size: .83rem;
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--trans);
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
}
.blog-toc-list a:hover { color: var(--orange); border-left-color: var(--orange); }

/* ── Home blog grid ── */
.home-blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}
.home-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--trans);
}

/* ── Related posts grid ── */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================================================================
   BLOG RESPONSIVE BREAKPOINTS
   ================================================================ */

@media (max-width: 1100px) {
  .blog-post-layout      { grid-template-columns: 1fr; }
  .blog-sidebar          { display: none; }
  .home-blog-grid        { grid-template-columns: 1fr 1fr; }
  .home-blog-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-card    { grid-template-columns: 1fr; }
  .blog-featured-card > div:first-child { min-height: 220px; }
  .blog-hero-grid        { grid-template-columns: 1fr; }
  .related-posts-grid    { grid-template-columns: repeat(2, 1fr); }
  .home-blog-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .blog-grid             { grid-template-columns: 1fr; }
  .home-blog-grid        { grid-template-columns: 1fr; }
  .home-blog-grid > *:first-child { grid-column: auto; }
  .related-posts-grid    { grid-template-columns: 1fr; }
  .blog-featured-card > div:last-child { padding: 28px 24px; }
  .blog-content h2       { font-size: 1.4rem; }
  .blog-content h3       { font-size: 1rem; }

  /* Related posts inline grid override */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .blog-card-img         { height: 130px; }
  .blog-card-body        { padding: 16px; }
  .related-posts-grid    { grid-template-columns: 1fr; }
}