/* ═══════════════════════════════════════════════
   VELORA — style.css  (One-Page Edition)
   Light · Glass · Gradient · Syne + Instrument Sans
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #ffffff;
  --snow:       #f8f7ff;
  --lavender:   #e4dfff;
  --violet:     #7c6ff7;
  --violet-d:   #5b52d4;
  --blue:       #4fa8f5;
  --ink:        #0f0e1a;
  --ink-70:     rgba(15,14,26,0.70);
  --ink-45:     rgba(15,14,26,0.45);
  --ink-12:     rgba(15,14,26,0.12);
  --glass-bg:   rgba(255,255,255,0.58);
  --glass-b:    rgba(255,255,255,0.88);
  --s-card:     0 8px 32px rgba(100,80,220,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
  --s-float:    0 20px 60px rgba(100,80,220,0.16), 0 1px 0 rgba(255,255,255,0.95) inset;
  --display:    'Syne', sans-serif;
  --body:       'Instrument Sans', sans-serif;
  --rpill:      999px;
  --rlg:        24px;
  --rxl:        36px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--snow);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* MESH BACKGROUND */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%,  rgba(196,183,255,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 5%,   rgba(163,210,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 75% 90%,  rgba(196,183,255,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 85%,  rgba(163,210,255,0.22) 0%, transparent 55%),
    #f8f7ff;
}

.container { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; padding: 0 1.5rem; }
section { padding: 6rem 0; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(248,247,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200,190,255,0.22);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(100,80,220,0.09); }

.nav-logo {
  font-family: var(--display);
  font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); text-decoration: none; flex-shrink: 0;
}
.nav-logo .dot { color: var(--violet); }

.nav-links {
  display: flex; gap: 0.15rem; list-style: none; align-items: center;
}
.nav-links a {
  display: inline-block; padding: 0.45rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-70); text-decoration: none;
  border-radius: var(--rpill); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(124,111,247,0.1); color: var(--violet);
}

.nav-cta {
  background: linear-gradient(135deg, var(--violet), #5e56e8);
  color: #fff; padding: 0.55rem 1.5rem; border-radius: var(--rpill);
  font-size: 0.875rem; font-weight: 600; text-decoration: none; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124,111,247,0.35); transition: all 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,111,247,0.45); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}

/* ══════════════════════════════════════
   COMMON SECTION ELEMENTS
══════════════════════════════════════ */
.sec-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,111,247,0.09); border: 1px solid rgba(124,111,247,0.2);
  border-radius: var(--rpill); padding: 4px 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--violet-d); margin-bottom: 1.1rem;
}

.sec-h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 0.6rem;
}
.sec-h2 em { font-style: normal; color: var(--violet); }

.sec-sub { font-size: 1rem; line-height: 1.78; color: var(--ink-45); max-width: 480px; }

.sec-sub-inline {
  font-size: 0.95rem; line-height: 1.6; color: var(--ink-45);
  margin-top: 0.3rem; max-width: 500px;
}

.sec-hdr-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.sec-hdr-center { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.sec-hdr-center .sec-tag { display: inline-flex; }
.sec-hdr-center .sec-sub { margin: 0 auto; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--violet), #5e56e8);
  color: #fff; padding: 0.85rem 2rem; border-radius: var(--rpill);
  font-family: var(--body); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,111,247,0.38); transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,111,247,0.50); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.6); color: var(--violet);
  border: 1.5px solid rgba(124,111,247,0.28);
  padding: 0.85rem 2rem; border-radius: var(--rpill);
  font-family: var(--body); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; cursor: pointer; backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.btn-outline:hover { background: rgba(124,111,247,0.1); border-color: rgba(124,111,247,0.55); transform: translateY(-1px); }

/* ══════════════════════════════════════
   GLASS CARD
══════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-b);
  border-radius: var(--rlg);
  box-shadow: var(--s-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--s-float); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; position: relative; overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(52px); pointer-events: none;
  animation: orbDrift 10s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,183,255,0.55), transparent 70%); top: -120px; left: -80px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(163,210,255,0.45), transparent 70%); top: -60px; right: -80px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(196,183,255,0.35), transparent 70%); bottom: 5%; left: 10%; animation-delay: -7s; }

@keyframes orbDrift {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(25px,-20px); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; width: 100%;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.04em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.hero-h1 .grad {
  background: linear-gradient(135deg, var(--violet) 0%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1rem; line-height: 1.7; color: var(--ink-45);
  margin-bottom: 2rem; max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex; gap: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--ink-12); flex-wrap: wrap;
}
.hero-stat { min-width: 90px; }
.hs-num {
  font-family: var(--display); font-size: 1.8rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; display: block; line-height: 1;
}
.hs-label { font-size: 0.72rem; color: var(--ink-45); margin-top: 4px; display: block; }

/* Hero right visual */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-wrap { position: relative; width: 100%; max-width: 440px; }

.hero-badge-trust {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,190,255,0.5); border-radius: var(--rpill);
  padding: 6px 16px 6px 8px; font-size: 0.75rem; font-weight: 500;
  color: var(--ink-70); white-space: nowrap;
  box-shadow: 0 8px 28px rgba(100,80,220,0.12);
}
.badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #fff; font-weight: 700; flex-shrink: 0;
}

/* Hero mockup */
.hero-mockup {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(100,80,220,0.18);
  border: 1px solid rgba(200,190,255,0.4);
}
.mockup-browser {
  display: flex; align-items: center; gap: 10px;
  padding: 0.8rem 1.1rem;
  background: rgba(248,247,255,0.8);
  border-bottom: 1px solid rgba(200,190,255,0.25);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1){background:#ff5f56;}
.mockup-dots span:nth-child(2){background:#ffbd2e;}
.mockup-dots span:nth-child(3){background:#27c93f;}
.mockup-url {
  font-size: 0.7rem; color: var(--ink-45);
  background: rgba(124,111,247,0.06); padding: 4px 12px; border-radius: 6px;
  margin-left: auto;
}
.mockup-body { padding: 1.5rem 1.2rem; display: flex; flex-direction: column; gap: 10px; }
.mockup-line {
  height: 10px; background: rgba(124,111,247,0.12); border-radius: 5px; width: 100%;
}
.mockup-line.short { width: 60%; }
.mockup-line.medium { width: 80%; }
.mockup-block {
  height: 80px; background: linear-gradient(135deg, rgba(124,111,247,0.15), rgba(79,168,245,0.1));
  border-radius: 10px; margin: 4px 0;
}

/* ══════════════════════════════════════
   TRUSTED STRIP
══════════════════════════════════════ */
#trusted { padding: 0; }
.trusted-strip {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,190,255,0.3); border-radius: var(--rlg);
  flex-wrap: wrap; justify-content: center;
}
.trusted-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-45); flex-shrink: 0;
}
.trusted-logos { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-family: var(--display); font-size: 0.9rem; font-weight: 700;
  color: var(--ink-45); letter-spacing: -0.02em; opacity: 0.7;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.srv-card { padding: 2rem 1.75rem; }
.srv-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.3rem;
}
.vi { background: rgba(124,111,247,0.1); color: var(--violet); }
.bl { background: rgba(79,168,245,0.1); color: var(--blue); }
.pk { background: rgba(247,112,111,0.1); color: #f7706f; }
.gn { background: rgba(52,199,89,0.1); color: #34c759; }
.srv-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); margin-bottom: 0.5rem; display: block; }
.srv-title { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.srv-desc  { font-size: 0.85rem; line-height: 1.7; color: var(--ink-45); }

/* ══════════════════════════════════════
   RECENT WORK CAROUSEL
══════════════════════════════════════ */
.carousel-wrap { overflow: hidden; border-radius: var(--rlg); }
.carousel-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.work-card { flex: 0 0 calc(33.333% - 0.84rem); border-radius: var(--rlg); overflow: hidden; }
.work-thumb {
  height: 190px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.work-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.35), transparent); }
.wt-1 { background: linear-gradient(135deg, #1a1f3a, #0d1124); }
.wt-2 { background: linear-gradient(135deg, #1f1a0d, #120f05); }
.wt-3 { background: linear-gradient(135deg, #1a1a2f, #0d0d1e); }
.wt-4 { background: linear-gradient(135deg, #0d2018, #05120e); }
.wt-5 { background: linear-gradient(135deg, #2a1520, #1a0a12); }
.wt-6 { background: linear-gradient(135deg, #0f2030, #071522); }
.w-icon { font-size: 2.2rem; position: relative; z-index: 1; color: rgba(255,255,255,0.7); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.work-info { padding: 1.3rem 1.5rem; }
.wcat  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); margin-bottom: 4px; }
.wtitle{ font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.wdesc { font-size: 0.78rem; color: var(--ink-45); }

.carousel-nav { display: flex; gap: 0.75rem; }
.c-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(124,111,247,0.3);
  background: rgba(255,255,255,0.6); backdrop-filter: blur(8px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--violet); transition: all 0.2s;
}
.c-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }

.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 1.5rem; }
.c-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(124,111,247,0.25); cursor: pointer; transition: all 0.2s; }
.c-dot.active { background: var(--violet); width: 22px; border-radius: 4px; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 1000px; margin: 0 auto; align-items: center;
}
.p-card { padding: 2.5rem 2rem; position: relative; display: flex; flex-direction: column; }
.p-card.featured {
  background: linear-gradient(145deg, #7c6ff7 0%, #5e56e8 55%, #4fa8f5 100%);
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 24px 64px rgba(124,111,247,0.42);
  transform: scale(1.04);
}
.p-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pop-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--violet);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--rpill);
  box-shadow: 0 4px 14px rgba(124,111,247,0.18); white-space: nowrap;
}
.p-name  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 0.75rem; }
.featured .p-name { color: rgba(255,255,255,0.65); }
.p-price-row { display: flex; align-items: baseline; gap: 3px; margin-bottom: 0.2rem; }
.p-cur { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-top: 5px; }
.featured .p-cur { color: rgba(255,255,255,0.85); }
.p-amt { font-family: var(--display); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.featured .p-amt { color: #fff; }
.p-cycle { font-size: 0.78rem; color: var(--ink-45); margin-bottom: 1.5rem; }
.featured .p-cycle { color: rgba(255,255,255,0.55); }
.p-div { height: 1px; background: rgba(15,14,26,0.08); margin-bottom: 1.5rem; }
.featured .p-div { background: rgba(255,255,255,0.2); }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; flex: 1; }
.p-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: var(--ink-70); line-height: 1.5; }
.featured .p-features li { color: rgba(255,255,255,0.88); }
.p-chk {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(124,111,247,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--violet); font-weight: 700;
}
.featured .p-chk { background: rgba(255,255,255,0.22); color: #fff; }
.p-btn {
  display: block; width: 100%; text-align: center;
  padding: 0.85rem; border-radius: var(--rpill);
  font-family: var(--body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none; transition: all 0.22s;
}
.p-btn-outline { background: rgba(124,111,247,0.08); color: var(--violet); border: 1.5px solid rgba(124,111,247,0.3); }
.p-btn-outline:hover { background: rgba(124,111,247,0.16); border-color: rgba(124,111,247,0.6); }
.p-btn-white { background: #fff; color: var(--violet); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.p-btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.proc-wide { grid-column: 1 / -1; }
.proc-card { padding: 1.75rem; }
.proc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.proc-num-badge {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(124,111,247,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.8rem; font-weight: 800; color: var(--violet);
  box-shadow: 0 4px 14px rgba(124,111,247,0.15);
  transition: all 0.3s;
}
.proc-card:hover .proc-num-badge {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(124,111,247,0.38);
}
.proc-emoji { font-size: 1.3rem; color: var(--ink-45); }
.proc-title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.proc-desc  { font-size: 0.83rem; line-height: 1.7; color: var(--ink-45); margin-bottom: 1rem; }
.proc-tags  { display: flex; gap: 6px; flex-wrap: wrap; }
.proc-tags span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: var(--rpill);
  background: rgba(124,111,247,0.09); color: var(--violet-d);
  border: 1px solid rgba(124,111,247,0.18);
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-card {
  border-radius: var(--rxl); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1a1520, #0f0e1a);
  box-shadow: 0 32px 80px rgba(100,80,220,0.22); position: relative;
}
.about-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,111,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,111,247,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-mono-wrap { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.about-mono-letter { font-family: var(--display); font-size: 9rem; font-weight: 800; color: rgba(124,111,247,0.12); line-height: 1; }
.about-mono-sub { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(124,111,247,0.35); }

.about-accent-pill {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  padding: 1.25rem 1.75rem; border-radius: var(--rlg);
  box-shadow: 0 16px 40px rgba(124,111,247,0.4);
}
.aap-num   { font-family: var(--display); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.aap-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-top: 2px; }

.about-body { font-size: 0.92rem; line-height: 1.8; color: var(--ink-45); margin-bottom: 1.25rem; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.av-card { padding: 1.2rem; border-radius: 16px; }
.av-icon  { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--violet); }
.av-title { font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 3px; }
.av-desc  { font-size: 0.76rem; color: var(--ink-45); line-height: 1.5; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-inner { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: rgba(124,111,247,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--violet);
}
.ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); margin-bottom: 2px; }
.ci-val   { font-size: 0.92rem; color: var(--ink); }
.ci-val a { color: var(--violet); text-decoration: none; }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(124,111,247,0.2);
  font-size: 0.85rem; color: var(--violet); text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }

.contact-form { padding: 2rem; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group  { display: flex; flex-direction: column; gap: 5px; margin-bottom: 0.25rem; }
.form-label  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-45); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(124,111,247,0.18); border-radius: 12px;
  padding: 0.75rem 0.9rem; color: var(--ink);
  font-family: var(--body); font-size: 0.88rem; transition: border-color 0.2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-45); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,111,247,0.12); }
.form-textarea { height: 110px; resize: none; }
.form-select   { appearance: none; cursor: pointer; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: rgba(15,14,26,0.97);
  backdrop-filter: blur(20px);
  position: relative; z-index: 2;
}
.footer-top {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 2.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.foot-logo {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; text-decoration: none; display: block; margin-bottom: 1rem;
}
.foot-logo span { color: var(--violet); }
.foot-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.38); margin-bottom: 1.25rem; }
.foot-social { display: flex; gap: 0.6rem; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: all 0.2s;
}
.foot-social a:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.footer-col h4 {
  font-family: var(--display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--violet); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p   { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom a   { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--violet); }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.fab {
  position: fixed; z-index: 300; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: all 0.25s; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.fab-wa { bottom: 2rem; right: 2rem; background: #25D366; color: #fff; }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.fab-top {
  bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(124,111,247,0.25); color: var(--violet);
  opacity: 0; pointer-events: none; transition: all 0.3s;
}
.fab-top.visible { opacity: 1; pointer-events: all; }
.fab-top:hover { background: var(--violet); color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  #navbar { padding: 1rem 1.5rem; }
  section { padding: 5rem 0; }

  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(248,247,255,0.97); backdrop-filter: blur(20px);
    padding: 1.5rem 2rem; gap: 0.25rem;
    border-bottom: 1px solid rgba(200,190,255,0.2);
    box-shadow: 0 8px 32px rgba(100,80,220,0.1);
    max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.65rem 1rem; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { max-width: 360px; margin: 0 auto; }
  .hero-visual-wrap { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-card { flex: 0 0 calc(50% - 0.625rem); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .p-card.featured { transform: none; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-wide { grid-column: 1 / -1; }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 350px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1.5rem; }
}

@media (max-width: 640px) {
  #navbar { padding: 0.8rem 1rem; }
  .nav-logo { font-size: 1.3rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .container { padding: 0 1rem; }
  section { padding: 4rem 0; }
  #hero { padding: 6rem 0 3rem; min-height: auto; }

  .hero-h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat { min-width: 70px; }
  .hs-num { font-size: 1.4rem; }

  .sec-h2 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-card { flex: 0 0 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-vals { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .trusted-strip { flex-direction: column; gap: 1rem; text-align: center; }
  .about-accent-pill { right: 0; bottom: -1rem; padding: 1rem 1.25rem; }
  .aap-num { font-size: 1.6rem; }
}