/* ============================================
   LENORETECH - Premium Digital Marketing Theme
   Brand Colors: Red, Orange, Yellow, Blue (logo)
   ============================================ */

:root {
  /* Brand colors derived from logo */
  --c-red: #EF3E36;
  --c-orange: #FF7A00;
  --c-yellow: #FFD23F;
  --c-blue: #1FB6D9;
  --c-blue-deep: #0C7DA6;
  --c-ink: #0B1020;
  --c-ink-2: #131A33;
  --c-slate: #475569;
  --c-mute: #64748B;
  --c-line: #E5E9F2;
  --c-bg: #F7F8FC;
  --c-card: #FFFFFF;

  /* Gradients */
  --g-brand: linear-gradient(135deg, #EF3E36 0%, #FF7A00 35%, #FFD23F 65%, #1FB6D9 100%);
  --g-fire: linear-gradient(135deg, #EF3E36 0%, #FF7A00 100%);
  --g-sun: linear-gradient(135deg, #FF7A00 0%, #FFD23F 100%);
  --g-sky: linear-gradient(135deg, #1FB6D9 0%, #0C7DA6 100%);
  --g-night: linear-gradient(135deg, #0B1020 0%, #1B2349 50%, #0B1020 100%);
  --g-glass: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.04) 100%);

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --sh-md: 0 8px 24px rgba(15,23,42,.08);
  --sh-lg: 0 24px 60px rgba(15,23,42,.12);
  --sh-glow: 0 20px 60px -10px rgba(239,62,54,.35);
  --sh-glow-blue: 0 20px 60px -10px rgba(31,182,217,.35);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --f-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-card);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--c-slate); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.txt-grad {
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.txt-fire { background: var(--g-fire); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.txt-sky { background: var(--g-sky); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--g-fire); color: #fff; box-shadow: var(--sh-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 70px -10px rgba(239,62,54,.5); }

.btn-secondary { background: var(--c-ink); color: #fff; }
.btn-secondary:hover { background: var(--c-ink-2); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-line); }
.btn-outline:hover { border-color: var(--c-ink); transform: translateY(-2px); }

.btn-ghost { background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }

.btn-blue { background: var(--g-sky); color: #fff; box-shadow: var(--sh-glow-blue); }
.btn-blue:hover { transform: translateY(-2px); }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: all .3s ease;
}
.nav.scrolled { background: #ffffff; box-shadow: var(--sh-sm); }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 22px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--g-brand);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: var(--sh-glow);
  position: relative; overflow: hidden;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 2px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
}
.brand-mark span { position: relative; }
.brand-text .sub { display: block; font-family: var(--f-body); font-size: 10px; font-weight: 500; color: var(--c-mute); letter-spacing: .12em; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--c-ink);
}
.menu > li > a:hover { background: var(--c-bg); color: var(--c-red); }
.menu > li > a .caret { transition: transform .2s; opacity: .55; }
.menu > li:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 12px;
  min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s ease;
}
.menu > li:hover > .dropdown,
.menu > li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.mega {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 24px;
  min-width: 720px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px;
  opacity: 0; visibility: hidden;
  transition: all .25s ease;
}
.menu > li:hover > .mega,
.menu > li:focus-within > .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega .col-title { grid-column: 1 / -1; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--c-mute); margin: 4px 0 8px; }
.mega-item {
  display: flex; gap: 12px; padding: 10px; border-radius: 12px; align-items: flex-start;
}
.mega-item:hover { background: var(--c-bg); }
.mega-item .ico { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--g-fire); display: grid; place-items: center; color: #fff; font-size: 14px; }
.mega-item .ico.b { background: var(--g-sky); }
.mega-item .ico.y { background: var(--g-sun); }
.mega-item .ico.n { background: var(--g-night); }
.mega-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.mega-item span { font-size: 12.5px; color: var(--c-mute); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--c-bg); place-items: center; }
.burger span { display: block; width: 20px; height: 2px; background: var(--c-ink); position: relative; transition: all .25s; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--c-ink); transition: all .25s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .menu, .nav-cta .btn-primary { display: none; }
  .burger { display: grid; }
}

/* Mobile drawer (app-like) */
.drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.05,.3,1);
  overflow-y: auto; padding: 24px 20px 100px;
}
.drawer.open { transform: translateX(0); }
.drawer-section { border-bottom: 1px solid var(--c-line); padding: 8px 0; }
.drawer-section summary {
  list-style: none; padding: 14px 4px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.drawer-section summary::-webkit-details-marker { display: none; }
.drawer-section summary::after { content: '+'; font-size: 22px; color: var(--c-mute); transition: transform .25s; }
.drawer-section[open] summary::after { transform: rotate(45deg); }
.drawer-links a {
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 14.5px; color: var(--c-slate);
}
.drawer-links a:hover { background: var(--c-bg); color: var(--c-red); }

.drawer .btn { width: 100%; margin-top: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(31,182,217,.18), transparent 60%),
    radial-gradient(700px 500px at -10% 20%, rgba(239,62,54,.16), transparent 60%),
    linear-gradient(180deg, #FFFCF8 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 968px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(239,62,54,.08);
  border: 1px solid rgba(239,62,54,.18);
  color: var(--c-red);
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-red); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { margin: 18px 0 16px; }
.hero h1 .line { display: block; }
.hero p.lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--c-slate); max-width: 580px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust .item strong { font-family: var(--f-display); font-size: 22px; }
.hero-trust .item span { font-size: 12.5px; color: var(--c-mute); }
.stars { color: #FFB400; font-size: 14px; letter-spacing: 2px; }

/* Hero visual - app mockup */
.hero-visual { position: relative; min-height: 520px; }
.hero-blob {
  position: absolute; inset: 0;
  background: var(--g-brand);
  filter: blur(60px); opacity: .25;
  border-radius: 50%;
  animation: blob 12s ease-in-out infinite;
}
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-20px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(.95); } }

.phone-frame {
  position: relative; width: 320px; max-width: 100%; aspect-ratio: 9/19;
  margin: 0 auto;
  border-radius: 44px;
  background: #0B1020;
  padding: 14px;
  box-shadow: 0 50px 100px -20px rgba(15,23,42,.4), 0 30px 60px -30px rgba(31,182,217,.4);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
}
.phone-frame::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px; background: #000; border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #FFFCF8 0%, #fff 100%);
  position: relative;
}

.app-statusbar {
  height: 36px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 600; padding-top: 8px;
}
.app-header {
  padding: 18px 18px 8px; display: flex; align-items: center; justify-content: space-between;
}
.app-header h6 { font-size: 13px; font-weight: 700; }
.app-header .av { width: 32px; height: 32px; border-radius: 50%; background: var(--g-fire); }

.app-card {
  margin: 12px; padding: 16px; border-radius: 18px;
  background: var(--g-brand); color: #fff;
  position: relative; overflow: hidden;
}
.app-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(200px 80px at 90% -20%, rgba(255,255,255,.3), transparent 70%);
}
.app-card .label { font-size: 10px; opacity: .85; letter-spacing: .1em; text-transform: uppercase; }
.app-card .value { font-size: 28px; font-weight: 800; font-family: var(--f-display); margin-top: 4px; }
.app-card .delta { font-size: 11px; margin-top: 2px; opacity: .9; }

.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 4px 12px; }
.app-stat { background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: 12px; }
.app-stat .k { font-size: 10px; color: var(--c-mute); text-transform: uppercase; letter-spacing: .08em; }
.app-stat .v { font-size: 18px; font-weight: 800; margin-top: 2px; }
.app-stat .v.r { color: var(--c-red); }
.app-stat .v.b { color: var(--c-blue-deep); }
.app-stat .bar { margin-top: 8px; height: 4px; border-radius: 4px; background: var(--c-line); overflow: hidden; }
.app-stat .bar i { display: block; height: 100%; background: var(--g-fire); border-radius: 4px; }
.app-stat .bar i.b { background: var(--g-sky); }

.app-list { padding: 12px; }
.app-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 12px; background: var(--c-bg);
  margin-bottom: 8px;
}
.app-row .ic { width: 32px; height: 32px; border-radius: 9px; background: var(--g-fire); display: grid; place-items: center; color: #fff; font-size: 12px; }
.app-row .ic.b { background: var(--g-sky); }
.app-row .ic.y { background: var(--g-sun); }
.app-row .t { flex: 1; }
.app-row .t b { font-size: 12px; display: block; }
.app-row .t span { font-size: 10px; color: var(--c-mute); }
.app-row .v { font-size: 12px; font-weight: 700; color: var(--c-red); }

/* Floating mini cards next to phone */
.float-card {
  position: absolute; padding: 14px 16px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 16px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 16px; }
.float-card .t { font-size: 11px; color: var(--c-mute); }
.float-card .v { font-size: 17px; font-weight: 800; }
.float-card.fc-1 { top: 6%; left: -4%; }
.float-card.fc-1 .ic { background: var(--g-fire); }
.float-card.fc-2 { bottom: 18%; right: -6%; animation-delay: -3s; }
.float-card.fc-2 .ic { background: var(--g-sky); }
.float-card.fc-3 { bottom: -4%; left: 8%; animation-delay: -1.5s; }
.float-card.fc-3 .ic { background: var(--g-sun); color: #fff; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 540px) { .float-card.fc-1 { left: 0; } .float-card.fc-2 { right: 0; } }

/* ============================================
   PARTNER STRIP
   ============================================ */
.partners { padding: 40px 0; background: var(--c-bg); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.partner-row { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; justify-content: center; opacity: .7; }
.partner-row .logo { font-family: var(--f-display); font-size: 18px; font-weight: 700; color: var(--c-mute); letter-spacing: -.01em; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 1.05rem; }
.sec-head.left { text-align: left; margin-left: 0; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 968px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .35s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--g-brand);
  opacity: 0; transition: opacity .35s;
  z-index: 0;
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--sh-lg); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover h3, .svc-card:hover p, .svc-card:hover .svc-link, .svc-card:hover .svc-icon { color: #fff; }
.svc-card:hover .svc-icon { background: rgba(255,255,255,.18); }

.svc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--g-fire);
  display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  transition: all .35s;
}
.svc-icon.b { background: var(--g-sky); }
.svc-icon.y { background: var(--g-sun); }
.svc-icon.n { background: var(--g-night); }
.svc-icon svg { width: 26px; height: 26px; }

.svc-card h3 { font-size: 1.2rem; margin-bottom: 10px; transition: color .25s; }
.svc-card p { font-size: 14.5px; line-height: 1.65; transition: color .25s; flex: 1; }
.svc-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--c-red); transition: color .25s; }
.svc-link svg { width: 14px; height: 14px; transition: transform .25s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--c-ink); color: #fff; position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(239,62,54,.18), transparent 60%),
    radial-gradient(800px 400px at 90% 80%, rgba(31,182,217,.18), transparent 60%);
}
.stats > .container { position: relative; z-index: 1; }
.stats .sec-head h2, .stats .sec-head p { color: #fff; }
.stats .sec-head p { color: rgba(255,255,255,.7); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 28px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-item .num { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: var(--g-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item .lbl { font-size: 13.5px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 968px) { .why-grid { grid-template-columns: 1fr; } }
.why-list { display: grid; gap: 16px; }
.why-item { display: flex; gap: 16px; padding: 18px; border-radius: var(--r-md); background: var(--c-bg); transition: all .25s; }
.why-item:hover { background: #fff; box-shadow: var(--sh-md); transform: translateX(4px); }
.why-item .ic {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  background: var(--g-fire); display: grid; place-items: center; color: #fff;
}
.why-item .ic.b { background: var(--g-sky); }
.why-item .ic.y { background: var(--g-sun); }
.why-item .ic.n { background: var(--g-night); }
.why-item h4 { margin-bottom: 4px; font-size: 1.05rem; }
.why-item p { font-size: 14px; }

/* Image side: layered cards */
.why-art {
  position: relative; min-height: 480px;
  display: grid; place-items: center;
}
.why-art .panel {
  position: absolute; padding: 20px 22px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 18px;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 14px;
}
.why-art .panel.p1 { top: 4%; left: 0; }
.why-art .panel.p2 { top: 36%; right: 4%; }
.why-art .panel.p3 { bottom: 8%; left: 12%; }
.why-art .panel .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.why-art .panel .ic.r { background: var(--g-fire); }
.why-art .panel .ic.b { background: var(--g-sky); }
.why-art .panel .ic.y { background: var(--g-sun); }
.why-art .panel b { display: block; font-size: 14px; }
.why-art .panel span { font-size: 12px; color: var(--c-mute); }
.why-art .center-orb {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--g-brand); filter: blur(0);
  position: relative;
  box-shadow: 0 30px 80px -10px rgba(239,62,54,.4);
}
.why-art .center-orb::before {
  content: ''; position: absolute; inset: 8px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.4), transparent 60%);
}
.why-art .center-orb::after {
  content: 'L'; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-display); font-size: 100px; font-weight: 900; color: rgba(255,255,255,.95);
  text-shadow: 0 4px 30px rgba(0,0,0,.2);
}

/* ============================================
   INDUSTRIES
   ============================================ */
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 968px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
.ind-card {
  padding: 22px 18px; text-align: center;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  transition: all .3s;
}
.ind-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--sh-md); }
.ind-card .ic {
  width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 14px;
  background: var(--g-fire); display: grid; place-items: center; color: #fff;
}
.ind-card:nth-child(2n) .ic { background: var(--g-sky); }
.ind-card:nth-child(3n) .ic { background: var(--g-sun); }
.ind-card:nth-child(4n) .ic { background: var(--g-night); }
.ind-card:nth-child(5n) .ic { background: var(--g-brand); }
.ind-card h4 { font-size: 14.5px; }
.ind-card p { font-size: 12.5px; margin-top: 4px; }

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
@media (max-width: 968px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 26px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--c-line);
  position: relative;
}
.step .num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--g-fire); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.step:nth-child(2) .num { background: var(--g-sun); }
.step:nth-child(3) .num { background: var(--g-sky); }
.step:nth-child(4) .num { background: var(--g-night); }
.step h4 { margin: 14px 0 8px; }
.step p { font-size: 14px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 968px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  padding: 28px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  position: relative;
}
.test-card .quote { font-size: 32px; line-height: 1; color: var(--c-red); font-family: var(--f-display); margin-bottom: 8px; }
.test-card p { font-size: 15px; color: var(--c-ink); line-height: 1.7; margin-bottom: 18px; }
.test-card .who { display: flex; align-items: center; gap: 12px; }
.test-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--g-brand); display: grid; place-items: center; color: #fff; font-weight: 700; }
.test-card .who b { display: block; font-size: 14px; }
.test-card .who span { font-size: 12px; color: var(--c-mute); }
.test-card .stars { margin-bottom: 10px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--g-night);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative; overflow: hidden;
  color: #fff;
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 200px at 0% 0%, rgba(239,62,54,.3), transparent 60%),
    radial-gradient(500px 200px at 100% 100%, rgba(31,182,217,.3), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 560px; }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cta-banner .visual { font-family: var(--f-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1; background: var(--g-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-align: center; }
@media (max-width: 768px) { .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; } .cta-banner .visual { display: none; } }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--c-ink); color: rgba(255,255,255,.75); padding: 80px 0 30px; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--g-brand);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .brand { color: #fff; margin-bottom: 14px; }
.foot-brand .brand-text .sub { color: rgba(255,255,255,.5); }
.foot-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; color: rgba(255,255,255,.7);
}
.foot-social a:hover { background: var(--g-fire); color: #fff; transform: translateY(-2px); }

footer h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.foot-links { list-style: none; display: grid; gap: 10px; }
.foot-links a { font-size: 14px; color: rgba(255,255,255,.65); }
.foot-links a:hover { color: var(--c-yellow); }

.foot-contact { display: grid; gap: 12px; font-size: 14px; }
.foot-contact .row { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact .row svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--c-orange); }
.foot-contact a { color: rgba(255,255,255,.75); }
.foot-contact a:hover { color: var(--c-yellow); }

.foot-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.foot-bottom a { color: rgba(255,255,255,.65); }
.foot-bottom a:hover { color: var(--c-yellow); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background:
    radial-gradient(700px 320px at 50% 100%, rgba(239,62,54,.12), transparent 60%),
    var(--g-night);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--c-yellow); }
.page-hero .eyebrow .dot { background: var(--c-yellow); }
.page-hero h1 { color: #fff; max-width: 820px; margin: 14px 0 18px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 720px; }
.breadcrumbs { display: flex; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumbs a:hover { color: #fff; }

/* ============================================
   FORM
   ============================================ */
.form-card {
  padding: 36px;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--c-ink); }
.field input, .field textarea, .field select {
  padding: 14px 16px;
  border: 1.5px solid var(--c-line); border-radius: 12px;
  background: var(--c-bg);
  font-size: 15px; color: var(--c-ink);
  transition: all .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-red); background: #fff;
  box-shadow: 0 0 0 4px rgba(239,62,54,.1);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ============================================
   PACKAGES PRICING
   ============================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 968px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg-card {
  padding: 32px;
  background: #fff; border: 1.5px solid var(--c-line); border-radius: var(--r-lg);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.pkg-card.popular { border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, var(--g-brand) border-box; box-shadow: var(--sh-lg); }
.pkg-card.popular::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--g-fire); color: #fff; font-size: 10px; padding: 6px 14px; border-radius: 999px; font-weight: 700; letter-spacing: .12em;
}
.pkg-name { font-size: 14px; text-transform: uppercase; letter-spacing: .14em; color: var(--c-mute); }
.pkg-tag { font-size: 13px; color: var(--c-slate); margin-top: 4px; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.pkg-price .cur { font-size: 18px; font-weight: 600; color: var(--c-mute); }
.pkg-price .val { font-family: var(--f-display); font-size: 42px; font-weight: 800; }
.pkg-price .per { font-size: 13px; color: var(--c-mute); }
.pkg-roi { font-size: 13px; color: var(--c-red); font-weight: 600; margin-bottom: 18px; }
.pkg-card hr { border: none; border-top: 1px dashed var(--c-line); margin: 0 0 18px; }
.pkg-feats { list-style: none; display: grid; gap: 10px; flex: 1; }
.pkg-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--c-slate); }
.pkg-feats li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--c-blue); }
.pkg-card .btn { margin-top: 24px; }

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details {
  padding: 0 22px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  overflow: hidden;
}
.faq summary {
  list-style: none; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; cursor: pointer; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--c-red); transition: transform .25s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; font-size: 14.5px; line-height: 1.7; }

/* ============================================
   AOS-LIKE Animations
   ============================================ */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
[data-anim].in { opacity: 1; transform: translateY(0); }
[data-anim="fade"] { transform: none; }
[data-anim="left"] { transform: translateX(-30px); }
[data-anim="left"].in { transform: translateX(0); }
[data-anim="right"] { transform: translateX(30px); }
[data-anim="right"].in { transform: translateX(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* ============================================
   MOBILE BOTTOM TAB BAR (App-like)
   ============================================ */
.tabbar {
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  background: rgba(11,16,32,.92);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 10px;
  display: none;
  justify-content: space-around;
  z-index: 998;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.tabbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 6px; border-radius: 14px;
  color: rgba(255,255,255,.65);
  font-size: 10.5px; font-weight: 600;
  transition: all .25s;
}
.tabbar a svg { width: 20px; height: 20px; }
.tabbar a.active, .tabbar a:hover {
  background: var(--g-fire); color: #fff;
}
@media (max-width: 768px) {
  .tabbar { display: flex; }
  body { padding-bottom: 90px; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.fab-wa {
  position: fixed; bottom: 110px; right: 18px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.4);
  z-index: 997; transition: transform .25s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 28px; height: 28px; }
@media (min-width: 769px) { .fab-wa { bottom: 30px; } }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--c-red), var(--c-blue)); border-radius: 10px; border: 2px solid var(--c-bg); }

/* ============================================
   HELPERS
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; } .mt-5 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 36px; } .mb-5 { margin-bottom: 56px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
