:root {
  --bg: #0C0C0E;
  --bg-elevated: #151518;
  --bg-card: #1A1A1F;
  --fg: #F0EDE8;
  --fg-muted: #8A8680;
  --accent: #E8913A;
  --accent-soft: rgba(232, 145, 58, 0.12);
  --accent-glow: rgba(232, 145, 58, 0.25);
  --warm: #F5C16C;
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1120px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #0C0C0E;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: -0.01em;
}

.hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-cta-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-cta-ghost:hover { color: var(--fg); }

/* Device mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.device-stack {
  position: relative;
  width: 380px;
  height: 320px;
}

.device {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.device.laptop {
  width: 360px;
  height: 240px;
  background: #222;
  border: 2px solid #333;
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  left: 0;
}

.device.phone {
  width: 120px;
  height: 210px;
  background: #222;
  border: 2px solid #333;
  border-radius: 20px;
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 2;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1f;
  padding: 8px;
  overflow: hidden;
}

.mock-nav {
  height: 8px;
  background: var(--accent-soft);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 60%;
}

.mock-hero-img {
  height: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(245, 193, 108, 0.1));
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.mock-card {
  height: 40px;
  background: var(--bg-elevated);
  border-radius: 6px;
}

.mock-text {
  height: 6px;
  background: var(--accent-soft);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mock-text.short {
  width: 60%;
}

.mobile .mock-hero-img {
  height: 40%;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.problem-header {
  text-align: center;
  margin-bottom: 64px;
}

.problem-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}

.problem-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: var(--accent-glow);
}

.problem-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-tile {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  color: var(--fg);
  display: block;
}

.service-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
}

.tile-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.service-tile h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-tile p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 72px;
}

.steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.step {
  padding: 8px 0;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 8px;
  line-height: 1;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 480px;
}

.step-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
  margin: 8px 0 8px 22px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand-col { max-width: 260px; }

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-nav-col {
  display: flex;
  gap: 60px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-nav-group a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav-group a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto;
  }

  .device-stack {
    width: 300px;
    height: 260px;
    margin: 0 auto;
  }

  .device.laptop {
    width: 280px;
    height: 190px;
  }

  .device.phone {
    width: 100px;
    height: 175px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav-col {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .problem-header h2,
  .services-header h2,
  .how h2,
  .closing h2 {
    font-size: 1.6rem;
  }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,14,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-cta {
  background: var(--accent) !important;
  color: #0C0C0E !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--fg);
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile a:last-child { border-bottom: none; }

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
}

.portfolio-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item {
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  border-color: var(--accent-glow);
  transform: translateY(-3px);
}

.portfolio-preview {
  background: var(--bg);
  padding: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-mockup {
  width: 100%;
  background: #0f0f14;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.pmock-nav {
  height: 28px;
  background: #1a1a22;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.pmock-nav span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.pmock-hero {
  padding: 20px 12px 16px;
  min-height: 70px;
}

.pmock-title {
  height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 70%;
}

.pmock-subtitle {
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  width: 50%;
  margin-bottom: 12px;
}

.pmock-btn {
  height: 22px;
  background: var(--accent);
  border-radius: 100px;
  width: 80px;
  opacity: 0.7;
}

.pmock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 0 12px 12px;
}

.pmock-box {
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

.portfolio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  flex: 1;
}

.port-emoji { font-size: 24px; flex-shrink: 0; }

.port-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.port-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 3px;
}

.port-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.portfolio-item:hover .port-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.25s;
}

.pricing-card:hover { border-color: rgba(232,145,58,0.3); }

.pricing-card--featured {
  background: var(--bg-card);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(232,145,58,0.15);
}

.pricing-card--featured:hover { border-color: var(--accent); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0C0C0E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-once {
  font-size: 14px;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 48px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.45;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: var(--accent);
  color: #0C0C0E;
  transition: opacity 0.2s, transform 0.2s;
}

.plan-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.plan-cta--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
}

.plan-cta--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--fg-muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.inline-link:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-copy p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-assurances {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-muted);
}

.assure-check {
  color: var(--accent);
  font-weight: 700;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.label-opt {
  color: var(--fg-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(138,134,128,0.6);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row textarea { resize: vertical; }

.form-submit {
  background: var(--accent);
  color: #0C0C0E;
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
}

.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-status {
  font-size: 14px;
  min-height: 20px;
  text-align: center;
}

.form-status--ok { color: #4ade80; }
.form-status--err { color: #f87171; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-page { padding-top: 0; }

.svc-hero {
  padding: 80px 24px 60px;
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-back {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.svc-back:hover { color: var(--accent); }

.svc-hero-content {
  max-width: 640px;
}

.svc-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.svc-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.svc-tagline {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.svc-features {
  padding: 100px 24px;
}

.svc-features h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.svc-features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-feature-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.25s;
}

.svc-feature-card:hover { border-color: rgba(232,145,58,0.3); }

.svc-feat-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.svc-feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.svc-feature-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.svc-preview {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.svc-preview h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.svc-mockup-wrap {
  max-width: 780px;
  margin: 0 auto 24px;
}

.svc-mockup-browser {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.svc-browser-bar {
  background: #1a1a22;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.browser-url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--fg-muted);
  flex: 1;
  text-align: center;
}

.svc-browser-content {
  padding: 0;
  min-height: 320px;
}

.svc-preview-nav {
  height: 48px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-preview-hero {
  padding: 40px 48px;
}

.svc-preview-h1 {
  height: 16px;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  width: 65%;
  margin-bottom: 12px;
}

.svc-preview-h2 {
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 45%;
  margin-bottom: 24px;
}

.svc-preview-btn {
  height: 36px;
  background: var(--accent);
  border-radius: 100px;
  width: 140px;
  opacity: 0.8;
}

.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 48px 40px;
}

.svc-preview-card {
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}

.svc-preview-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto;
}

.svc-examples {
  padding: 100px 24px;
}

.svc-examples h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 40px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.svc-examples-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-example {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 15px;
  color: var(--fg-muted);
}

.example-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.svc-cta {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.svc-cta-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.svc-cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.svc-cta-box p {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

/* ===== PROOF / VALUE PROPS ===== */
.proof {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.proof-header {
  text-align: center;
  margin-bottom: 64px;
}

.proof-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.proof-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.proof-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.proof-card:hover {
  border-color: var(--accent-glow);
  transform: translateY(-3px);
}

.proof-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.proof-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.proof-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 24px;
  background: var(--bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--fg);
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
}

.testimonial-text::before {
  content: '"';
}

.testimonial-text::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}

.testimonial-biz {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap { padding: 28px 20px; }

  .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .svc-examples-list { grid-template-columns: 1fr; }
  .svc-preview-grid { grid-template-columns: repeat(2, 1fr); }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-stats {
    flex-direction: column;
    max-width: 320px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .stat-pill {
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}