/* ============================================================
   EA YOU SERVICES — Premium Agency Redesign
   ------------------------------------------------------------
   EDIT COLORS: change the CSS variables in :root below.
   EDIT FONTS: Plus Jakarta Sans is loaded from index.html <link>.
   ============================================================ */

:root {
  /* ---- BRAND COLORS (edit here) ---- */
  --bg: #FFFFFF;
  --bg-soft: #F8F8FB;
  --border: #F2E6EF;
  --ink: #172033;
  --ink-2: #4b5266;
  --ink-3: #7a8095;
  --primary: #E6007E;        /* Fuchsia */
  --primary-2: #FF4FA3;      /* Light fuchsia */
  --primary-dark: #B80066;   /* Hover */
  --glow: rgba(230,0,126,.18);
  --glow-soft: rgba(230,0,126,.08);
  --footer-bg: #0B1220;

  /* ---- Radius / shadow ---- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(23,32,51,.06);
  --shadow-md: 0 12px 34px rgba(23,32,51,.08), 0 2px 6px var(--glow-soft);
  --shadow-lg: 0 24px 60px rgba(23,32,51,.10), 0 10px 30px var(--glow);
  --shadow-glow: 0 20px 40px -12px var(--glow);

  /* ---- Layout ---- */
  --container: 1200px;
  --gap: 28px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
h1,h2,h3,h4,h5 { font-family: inherit; color: var(--ink); margin: 0 0 .4em; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.75rem); line-height: 1.08; font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.15; font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--ink-2); margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

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

.section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }
.section-light { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head p { color: var(--ink-3); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--glow-soft), rgba(255,79,163,.10));
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  line-height: 1;
  font-family: inherit;
}
.btn.lg { padding: 18px 32px; font-size: 1rem; }
.btn.sm { padding: 10px 18px; font-size: .85rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 24px -6px var(--glow), inset 0 -2px 0 rgba(0,0,0,.06);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px var(--glow), 0 0 0 6px var(--glow-soft);
}

.btn-ghost {
  background: rgba(255,255,255,.6);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 10px 24px -8px var(--glow);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  font-size: .9rem;
}
.btn-wa:hover { background: var(--primary); box-shadow: 0 10px 24px -8px var(--glow); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, padding .3s ease;
  padding: 8px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 20px rgba(23,32,51,.06);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 8px 20px -6px var(--glow);
}
.logo-text { color: var(--ink); font-size: .95rem; letter-spacing: .06em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%; transform: translateX(-50%);
}
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--primary); background: var(--glow-soft); }
.main-nav a.active {
  color: var(--primary);
  background: var(--glow-soft);
  font-weight: 600;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.6);
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
}
.lang-opt { padding: 2px 4px; border-radius: 6px; transition: color .2s ease; }
.lang-opt.active { color: var(--primary); }
.lang-sep { color: var(--ink-3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vw, 180px) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(255,79,163,.14), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(230,0,126,.10), transparent 60%),
    #fff;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--primary-2), transparent 70%);
  top: -80px; right: -60px;
  animation: float1 12s ease-in-out infinite;
}
.hero::after {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  bottom: -120px; left: -80px;
  animation: float2 14s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { animation: fadeUp .8s ease both; }
.hero-copy h1 { margin-top: 8px; }
.hero-copy h1 .accent {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p { font-size: 1.1rem; color: var(--ink-2); max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 32px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--ink-3); font-size: .88rem; }
.trust-badges li { display: flex; align-items: center; gap: 8px; }
.trust-badges li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 4px 10px -2px var(--glow);
  display: inline-block;
  background-image:
    linear-gradient(135deg, var(--primary), var(--primary-2)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l-3.5-3.6L4 14l5 5 11-11-1.5-1.4z'/></svg>");
  background-blend-mode: normal;
}

/* Hero device mockup */
.hero-visual {
  position: relative;
  min-height: 480px;
  animation: fadeUp .9s .1s ease both;
}
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 460px;
  margin: 0 auto;
}
.mockup-device {
  position: absolute;
  filter: drop-shadow(0 28px 48px rgba(230, 0, 126, 0.14))
          drop-shadow(0 12px 24px rgba(23, 32, 51, 0.10));
}
.mockup-screen {
  overflow: hidden;
  background: #fff;
  width: 100%;
}
.mockup-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* MacBook — largest, behind */
.mockup-macbook {
  inset: 0 auto auto 50%;
  width: min(100%, 520px);
  transform: translateX(-50%);
  z-index: 1;
  animation: mockupFloatMac 10s ease-in-out infinite;
}
@keyframes mockupFloatMac {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
.mockup-macbook-lid {
  padding: 10px 10px 8px;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(165deg, #f5f5f7 0%, #e3e3e8 55%, #d2d2d7 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 50px rgba(23, 32, 51, 0.12);
}
.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 4px 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mockup-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.mockup-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.12);
}
.mockup-browser-dots span:nth-child(2) { background: #febc2e; }
.mockup-browser-dots span:nth-child(3) { background: #28c840; }
.mockup-browser-url {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  font-size: 0.62rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
}
.mockup-macbook-screen {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.mockup-macbook-base {
  position: relative;
  width: 108%;
  height: 14px;
  margin-left: -4%;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #ececf0 0%, #d8d8de 45%, #c8c8ce 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 32px rgba(23, 32, 51, 0.14);
}
.mockup-macbook-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: rgba(0, 0, 0, 0.08);
}

/* iPad — front right */
.mockup-ipad {
  right: -8px;
  bottom: 28px;
  width: 190px;
  z-index: 2;
  animation: mockupFloatIpad 10s ease-in-out infinite 0.35s;
}
@keyframes mockupFloatIpad {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mockup-ipad-shell {
  position: relative;
  padding: 11px;
  border-radius: 24px;
  background: linear-gradient(160deg, #2c2c2e 0%, #1c1c1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 44px rgba(23, 32, 51, 0.18);
}
.mockup-ipad-camera {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a0a0c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.mockup-ipad-screen {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

/* iPhone — front left */
.mockup-iphone {
  left: -4px;
  bottom: 0;
  width: 138px;
  z-index: 3;
  animation: mockupFloatPhone 10s ease-in-out infinite 0.7s;
}
@keyframes mockupFloatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.mockup-iphone-shell {
  position: relative;
  padding: 10px 8px 12px;
  border-radius: 30px;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 55%, #111114 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 50px rgba(230, 0, 126, 0.16);
}
.mockup-iphone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 16px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.mockup-iphone-screen {
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.mockup-iphone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: auto -30% -60% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow-soft), transparent 70%);
  opacity: 0; transition: opacity .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--glow-soft), rgba(255,79,163,.10));
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card p { color: var(--ink-3); font-size: .93rem; margin: 0; }

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 14px;
}
.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.pkg-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pkg-card h3 {
  font-size: .92rem;
  color: var(--ink-2);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pkg-card .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.pkg-card .cur { color: var(--ink-3); font-weight: 600; font-size: 1rem; }
.pkg-card .amount { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-block { margin-bottom: 10px; }
.price-block .price { margin-bottom: 4px; }
.price-original {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
}
.price-original .cur,
.price-original .amount {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: line-through;
}
.price-original .amount { font-size: 1.1rem; }
.price-save {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .02em;
}
.pkg-card .pkg-for { color: var(--ink-3); font-size: .88rem; line-height: 1.5; margin-bottom: 18px; }
.pkg-card .feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.pkg-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.pkg-card .feature-list li::before {
  content: "✓";
  flex: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-size: .62rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px -3px var(--glow);
}
.pkg-card .feature-list li.no::before {
  content: "✕";
  background: #eef0f6;
  color: var(--ink-3);
  box-shadow: none;
  font-size: .58rem;
}
.pkg-card .pkg-btn {
  margin-top: auto;
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  min-height: 48px;
}
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -6px var(--glow);
  white-space: nowrap;
  z-index: 2;
}
.pkg-card.featured {
  border: 2px solid var(--primary);
  background: #fff;
  box-shadow:
    0 0 0 4px var(--glow-soft),
    0 20px 50px -12px var(--glow),
    0 0 32px rgba(230, 0, 126, .12);
  z-index: 2;
}
.pkg-card.featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 4px var(--glow-soft),
    0 28px 60px -10px var(--glow),
    0 0 40px rgba(230, 0, 126, .18);
}
.pkg-card.best {
  background: linear-gradient(180deg, #1a2540, #0e1729);
  color: #fff;
  border-color: rgba(255,255,255,.08);
  overflow: hidden;
}
.pkg-card.best::after {
  content: "";
  position: absolute; inset: -1px -1px auto auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--glow), transparent 70%);
  pointer-events: none;
}
.pkg-card.best h3,
.pkg-card.best .amount { color: #fff; }
.pkg-card.best .cur,
.pkg-card.best .pkg-for,
.pkg-card.best .feature-list li { color: rgba(255,255,255,.78); }
.pkg-card.best .feature-list li.no::before {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}
.pkg-card.best .pkg-badge.alt {
  background: #fff;
  color: var(--primary);
}
.pkg-btn-light {
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.15) !important;
}
.pkg-btn-light:hover {
  background: var(--bg-soft) !important;
  color: var(--primary) !important;
}
.pkg-premium-notes {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
}
.pkg-premium-notes p {
  color: var(--ink-3);
  font-size: .82rem;
  line-height: 1.55;
  margin: 0 0 6px;
}

/* ---------- Add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.addon {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.addon h4 { font-size: .95rem; margin-bottom: 6px; }
.addon p { color: var(--primary); font-weight: 700; margin: 0; font-size: .95rem; }
.addon-note { text-align: center; margin-top: 24px; color: var(--ink-3); font-size: .88rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-item .check {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  box-shadow: 0 6px 14px -4px var(--glow);
}
.why-item p { margin: 0; color: var(--ink); font-weight: 500; }

/* ---------- Process ---------- */
.process-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; counter-reset: proc; }
.process-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-list li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-list .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-weight: 800;
  margin-bottom: 12px;
  box-shadow: 0 8px 16px -6px var(--glow);
}
.process-list h4 { font-size: .95rem; margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.port-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.port-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fff2f8, #fde6f1);
}
.port-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}
.port-card:hover .port-thumb img { transform: scale(1.04); }
.port-body { padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.port-body .tag {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--glow-soft);
}

/* ---------- Counters ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.stat { text-align: center; }
.stat .num {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat .lbl { color: var(--ink-3); font-size: .88rem; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-quote {
  position: absolute; top: 20px; right: 24px;
  color: var(--primary-2); opacity: .35;
  font-size: 3rem; line-height: 1;
  font-family: Georgia, serif;
}
.testi-stars { color: #f5b638; letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.testi-text { color: var(--ink-2); font-size: .98rem; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  box-shadow: 0 6px 14px -4px var(--glow);
}
.testi-person strong { display: block; color: var(--ink); font-size: .92rem; }
.testi-person span { color: var(--ink-3); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-list .faq-item[open] {
  border-color: var(--primary-2);
  box-shadow: var(--shadow-md);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem; font-weight: 400;
  transition: transform .35s ease;
  flex-shrink: 0;
}
.faq-list .faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .45s ease, opacity .45s ease;
}
.faq-list .faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-answer > p {
  overflow: hidden;
  color: var(--ink-2);
  margin: 0;
  padding-bottom: 20px;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-wrap::before {
  content: ""; position: absolute; inset: auto -100px -160px auto;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { margin-bottom: 14px; }
.contact-copy p { color: var(--ink-3); margin-bottom: 24px; }

.contact-form { display: grid; gap: 16px; position: relative; z-index: 1; }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary-2);
  background: #fff;
  box-shadow: 0 0 0 4px var(--glow-soft);
}
.consent { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--ink-3); }
.consent input { width: 16px; height: 16px; accent-color: var(--primary); }

/* Success popup */
.toast {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 200;
  font-weight: 600;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.7);
  padding: 72px 0 24px;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo .logo-text { color: #fff; }
.site-footer h5 { color: #fff; font-size: .9rem; margin-bottom: 16px; letter-spacing: .04em; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--primary-2); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; font-weight: 700;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.socials a:hover { background: var(--primary); border-color: transparent; transform: translateY(-3px); }
.copyright { padding-top: 24px; text-align: center; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  z-index: 150;
  animation: pulseRing 2.2s infinite;
  transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes pulseRing {
  0% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal-right.in { opacity: 1; transform: none; }

.section-head.reveal.in,
.section-head.reveal-left.in,
.section-head.reveal-right.in {
  transition-duration: .75s;
}

.pkg-card.reveal {
  transition-duration: .65s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}
.pkg-card.reveal.in {
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before, .hero::after,
  .mockup-macbook, .mockup-ipad, .mockup-iphone,
  .fab-wa {
    animation: none !important;
  }
  .btn, .pkg-card, .port-card, .service-card,
  .port-thumb img, .faq-answer {
    transition: none !important;
  }
  .pkg-card:hover, .port-card:hover, .btn:hover {
    transform: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-8px); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; padding: 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; margin-top: 20px; }
  .hero-mockup { max-width: 520px; height: 400px; }
  .main-nav { display: none; position: static; transform: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 12px; right: 12px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px; gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open a { padding: 12px 16px; }
  .hamburger { display: inline-flex; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid, .packages-grid, .addon-grid, .why-grid,
  .process-list, .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 22px; }
  .contact-wrap { padding: 28px; }
  .btn-wa span { display: none; }
  .btn-wa { padding: 11px 14px; }
  .header-actions { gap: 8px; }
  .hero-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "macbook macbook"
      "iphone ipad";
    gap: 18px 14px;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 4px;
  }
  .mockup-device {
    position: relative;
    inset: auto;
    filter: drop-shadow(0 18px 32px rgba(230, 0, 126, 0.12))
            drop-shadow(0 8px 16px rgba(23, 32, 51, 0.08));
  }
  .mockup-macbook {
    grid-area: macbook;
    width: 100%;
    transform: none;
    animation: none;
  }
  .mockup-iphone {
    grid-area: iphone;
    width: 100%;
    max-width: 150px;
    justify-self: end;
    animation: none;
  }
  .mockup-ipad {
    grid-area: ipad;
    width: 100%;
    max-width: 190px;
    justify-self: start;
    animation: none;
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  .hero-mockup {
    max-width: 460px;
    height: 380px;
  }
  .mockup-macbook { width: min(100%, 440px); }
  .mockup-ipad { width: 160px; right: 0; bottom: 20px; }
  .mockup-iphone { width: 118px; left: 0; }
}