/* ═══════════════════════════════════════════
   PRIMESOUL — Unified Design System
   Premium Digital Agency Website
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --ink:       #0c0c0f;
  --ink-mid:   #3d3d4a;
  --ink-muted: #6b6b7e;
  --ink-light: #9595a5;
  --bg:        #f8f8fa;
  --bg-white:  #ffffff;
  --bg-soft:   #f2f2f6;
  --border:    #e4e4ec;
  --accent:    #4a3fff;
  --accent-dk: #3a30cc;
  --accent-bg: #eeecff;
  --green:     #22c55e;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.10);
  --shadow-xl: 0 24px 72px rgba(0,0,0,.12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max: 1160px;
  --nav-h: 72px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }

.label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .875rem; font-weight: 700;
  border-radius: 50px;
  padding: .8rem 1.8rem;
  transition: all .2s cubic-bezier(.25,.8,.25,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(74,63,255,.32);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(74,63,255,.42);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(248,248,250,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.25rem;
  letter-spacing: -.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-links {
  display: flex; align-items: center; gap: .2rem;
  flex: 1;
}
.nav-link {
  padding: .5rem .9rem;
  font-size: .875rem; font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link:hover { color: var(--accent); background: var(--accent-bg); }
.nav-link.active { color: var(--accent); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  margin-left: auto;
  background: var(--ink);
  color: #fff;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  transition: all .2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: .5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--bg-white);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(238,236,255,.7) 0%, rgba(238,236,255,.2) 55%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,236,255,.4) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 3rem 0 4rem;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-bg);
  border: 1px solid rgba(74,63,255,.2);
  color: var(--accent);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .78rem; font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1.8rem;
  letter-spacing: .01em;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 440px;
}
.hero-btns {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--ink-light);
  margin-top: .2rem;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Hero Right — Device Scene */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.device-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Monitor */
.monitor {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 88%;
}
.monitor-body {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.1);
}
.monitor-screen {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0f0f1a;
  position: relative;
}
.monitor-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.monitor-chin {
  background: #1a1a2e;
  height: 10px;
  border-radius: 0 0 4px 4px;
  margin-top: 2px;
}
.monitor-neck {
  width: 4%;
  height: 28px;
  background: linear-gradient(to bottom, #232340, #1a1a30);
  margin: 0 auto;
}
.monitor-base {
  width: 28%;
  height: 10px;
  background: linear-gradient(to bottom, #232340, #1a1a30);
  border-radius: 6px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* Laptop */
.laptop {
  position: absolute;
  bottom: -16px;
  right: -20px;
  width: 55%;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
}
.laptop-lid {
  background: #1e1e30;
  border-radius: 10px 10px 2px 2px;
  padding: 7px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.laptop-lid-screen {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0f0f1a;
  position: relative;
}
.laptop-lid-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.laptop-hinge {
  height: 4px;
  background: #141424;
  border-radius: 0 0 2px 2px;
}
.laptop-base {
  background: linear-gradient(to bottom, #252535, #1e1e2e);
  height: 14px;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 30%; height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 4px 4px 0 0;
}

/* Floating card on monitor */
.monitor-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: .6rem .9rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem;
  z-index: 4;
}
.monitor-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.monitor-badge span { font-weight: 600; color: var(--ink); }

/* Desk surface */
.desk-surface {
  width: 110%;
  height: 20px;
  background: linear-gradient(to bottom, #e8e8f0, #d8d8e8);
  border-radius: 4px 4px 0 0;
  margin-left: -5%;
  margin-top: -2px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* ═══════════════════════
   PAGE HERO (inner pages)
═══════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 72px;
  background: var(--bg-white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero em { font-style: normal; color: var(--accent); }

/* ═══════════════════════
   TRUST BAR
═══════════════════════ */
.trust-bar {
  background: var(--ink);
  padding: 1.4rem 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
}
.trust-item i { color: rgba(255,255,255,.4); font-size: .85rem; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.15); }

/* ═══════════════════════
   WELCOME / ABOUT STRIP
═══════════════════════ */
.welcome-section {
  background: var(--bg-white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.welcome-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.welcome-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
}
.wib-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
}
.wib-text { font-size: .75rem; color: var(--ink-muted); margin-top: .15rem; font-weight: 500; }
.welcome-content {}
.welcome-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  padding: 1.5rem;
  background: var(--accent-bg);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  margin-bottom: 1.8rem;
  font-style: italic;
}
.welcome-text {
  font-size: .95rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.welcome-check-list {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2rem;
}
.welcome-check-list li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .875rem; color: var(--ink-mid);
}
.welcome-check-list li i {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.welcome-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-row { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.social-label { font-size: .78rem; color: var(--ink-light); font-weight: 500; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--ink-mid);
  transition: all .2s;
}
.social-icon:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }

/* ═══════════════════════
   SERVICES
═══════════════════════ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all .25s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,63,255,.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
  transition: all .25s;
}
.service-card:hover .service-icon { background: var(--accent); color: #fff; }
.service-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.service-desc {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ═══════════════════════
   FOUNDER
═══════════════════════ */
.founder-section { background: var(--bg-white); }
.founder-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 4rem;
  overflow: hidden;
  position: relative;
}
.founder-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,236,255,.8) 0%, transparent 65%);
  pointer-events: none;
}
.founder-img-col { position: relative; }
.founder-photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.founder-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-tag-pill {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .72rem; font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .04em;
}
.founder-content {}
.founder-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: .3rem;
}
.founder-role {
  font-size: .9rem;
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.founder-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.founder-tagline em { font-style: normal; color: var(--accent); }
.founder-bio {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.founder-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════
   PORTFOLIO
═══════════════════════ */
.portfolio-section { background: var(--bg); }
.portfolio-header { margin-bottom: 3rem; }
.portfolio-header-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .25s cubic-bezier(.25,.8,.25,1);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.portfolio-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(12,12,15,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.overlay-btn {
  background: #fff;
  color: var(--ink);
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 700;
  font-family: var(--font-display);
  transition: all .2s;
}
.overlay-btn:hover { background: var(--accent); color: #fff; }
.portfolio-body { padding: 1.4rem; }
.portfolio-tag {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .7rem;
  font-family: var(--font-display);
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.portfolio-desc {
  font-size: .83rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.wip-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600;
  color: #d97706;
  background: #fef3c7;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-family: var(--font-display);
}

/* ═══════════════════════
   ABOUT DETAILS
═══════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(74,63,255,.15); }
.value-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin: 0 auto 1.2rem;
  transition: all .25s;
}
.value-card:hover .value-icon { background: var(--accent); color: #fff; }
.value-title {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.value-desc { font-size: .82rem; color: var(--ink-muted); line-height: 1.65; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-quote-box {
  background: var(--accent-bg);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid rgba(74,63,255,.12);
}
.story-quote-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.story-quote-author { display: flex; align-items: center; gap: .8rem; }
.story-author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.story-author-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.story-author-title { font-size: .76rem; color: var(--ink-muted); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-card-label { font-size: .78rem; color: var(--ink-muted); }

/* ═══════════════════════
   PRICING
═══════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2.2rem;
  position: relative;
  transition: all .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(74,63,255,.08), var(--shadow-md);
}
.pricing-featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .28rem .9rem;
  border-radius: 50px;
  font-family: var(--font-display);
  letter-spacing: .04em;
  white-space: nowrap;
}
.pricing-plan {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  font-family: var(--font-display);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  margin-bottom: .3rem;
}
.pricing-note { font-size: .8rem; color: var(--ink-light); margin-bottom: 1.5rem; }
.pricing-features {
  display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--ink-mid);
}
.pricing-features li i { color: var(--accent); font-size: .75rem; flex-shrink: 0; }
.pricing-features li.na { color: var(--ink-light); }
.pricing-features li.na i { color: var(--ink-light); }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.contact-info-sub {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-links { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: all .2s;
}
.contact-link:hover { border-color: var(--accent); transform: translateX(4px); }
.cl-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cl-icon.wa { background: #dcf8c6; color: #25d366; }
.cl-icon.ph { background: #fef3c7; color: #d97706; }
.cl-icon.em { background: var(--accent-bg); color: var(--accent); }
.cl-text strong { font-size: .88rem; font-weight: 700; color: var(--ink); display: block; }
.cl-text span { font-size: .76rem; color: var(--ink-muted); }
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex; flex-direction: column; gap: .35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .76rem; font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase; letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--ink);
  background: var(--bg-soft);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: .9rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: all .2s;
}
.form-submit:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,63,255,.3); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 3rem; }
details.faq-item {
  background: var(--bg-white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 1.3rem 1.5rem;
  transition: all .2s;
}
details.faq-item[open] { border-color: rgba(74,63,255,.2); }
details.faq-item summary {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary i { color: var(--accent); flex-shrink: 0; font-size: .8rem; }
details.faq-item p { font-size: .875rem; color: var(--ink-muted); line-height: 1.75; margin-top: .9rem; }

/* ═══════════════════════
   CTA BANNER
═══════════════════════ */
.cta-section {
  background: var(--ink);
  border-radius: var(--r-xl);
  margin: 0 2rem 100px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,63,255,.3) 0%, transparent 65%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -40%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,63,255,.2) 0%, transparent 65%);
}
.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2.2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-logo img { width: 28px; height: 28px; object-fit: contain; border-radius: 5px; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--accent); color: #fff; background: var(--accent); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700;
  color: #fff;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li:not(a) { font-size: .84rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .8rem;
}
.footer-bottom span { color: rgba(255,255,255,.35); }
.heart { color: var(--accent); }

/* ═══════════════════════
   PORTFOLIO FILTER TABS
═══════════════════════ */
.filter-tabs {
  display: flex; gap: .5rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  color: var(--ink-mid);
  background: var(--bg-white);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-display);
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; min-height: unset; }
  .hero-right { justify-content: center; }
  .device-scene { max-width: 480px; }
  .founder-wrap { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 3rem; }
  .founder-wrap { max-width: 600px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .about-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(248,248,250,.97); backdrop-filter: blur(16px); padding: 1rem; gap: .3rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 2.3rem; }
  .hero-stats { gap: 1.5rem; }
  .welcome-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-header-inner { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { margin: 0 1rem 72px; padding: 3rem 1.5rem; }
  .section { padding: 72px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}
