:root {
  --bg: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #ff3d5a;
  --accent-glow: rgba(255, 61, 90, 0.3);
  --accent-secondary: #ff6b35;
  --gradient-accent: linear-gradient(135deg, #ff3d5a, #ff6b35);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 61, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    var(--bg);
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(255, 61, 90, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* Phone mockup */
.phone-frame {
  width: 260px;
  height: 460px;
  background: var(--bg-card);
  border-radius: 28px;
  border: 2px solid var(--border);
  padding: 12px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px var(--accent-glow);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
}

.phone-bar {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.view-count {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.engagement-bar {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.heart-icon { color: var(--accent); }
.comment-icon { color: var(--accent-secondary); }
.share-icon { color: var(--fg-muted); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === PROBLEM === */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.problem-statement {
  margin-bottom: 4rem;
}

.big-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.big-text .strike {
  text-decoration: line-through;
  color: var(--fg-muted);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.big-text.accent {
  color: var(--accent);
  font-weight: 600;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === SERVICES === */
.services {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 61, 90, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 61, 90, 0.1);
  border-radius: 12px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === NICHES === */
.niches {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niches .section-label {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.niche-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.niche-item:first-child {
  border-top: 1px solid var(--border);
}

.niche-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.25rem;
}

.niche-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.niche-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 61, 90, 0.1) 0%, transparent 60%),
    var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.closing-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto;
  }

  .phone-frame {
    width: 220px;
    height: 380px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .niche-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem;
    min-height: 90vh;
  }

  .problem,
  .services,
  .niches,
  .closing {
    padding: 4rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

.nav-link.nav-cta {
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-link.nav-cta:hover { opacity: 0.88; color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Offset page content so nav doesn't overlap */
.hero {
  padding-top: calc(64px + 2rem);
}

.page-main {
  padding-top: 64px;
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-link { display: block; padding: 0.9rem 2rem; }
  .nav-link.nav-cta {
    margin: 0.5rem 2rem;
    display: block;
    text-align: center;
    border-radius: 2rem;
  }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 5rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 61, 90, 0.08) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* =========================================================
   PRICING / PACKAGES
   ========================================================= */
.pricing-section {
  padding: 5rem 2rem;
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(255, 61, 90, 0.4);
  box-shadow: 0 0 40px rgba(255, 61, 90, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li.muted {
  color: var(--fg-muted);
  opacity: 0.5;
}

.check { color: var(--accent); font-weight: 700; }
.dash  { color: var(--fg-muted); }

.pricing-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.accent-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.accent-link:hover { text-decoration: underline; }

/* FAQ */
.faq-section {
  padding: 4rem 2rem 6rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 2rem;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 2rem;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,61,90,0.4); color: var(--accent); }

.btn-full { width: 100%; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-section {
  padding: 4rem 2rem;
}

.portfolio-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: rgba(255,61,90,0.3); color: var(--fg); }
.filter-btn.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 61, 90, 0.25);
}

.portfolio-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}

/* Gradient placeholder thumbnails — each uses a unique accent combination */
.portfolio-thumb--food1  { background: linear-gradient(135deg, #1a0a10 0%, #3d1520 50%, #ff3d5a22 100%); }
.portfolio-thumb--food2  { background: linear-gradient(135deg, #0f1a10 0%, #1a3520 50%, #4CAF5022 100%); }
.portfolio-thumb--auto1  { background: linear-gradient(135deg, #0a0f1a 0%, #10182d 50%, #ff6b3522 100%); }
.portfolio-thumb--auto2  { background: linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #9c27b022 100%); }
.portfolio-thumb--music1 { background: linear-gradient(135deg, #0f0a1a 0%, #200a3d 50%, #ff3d5a33 100%); }
.portfolio-thumb--music2 { background: linear-gradient(135deg, #0a100f 0%, #0d1f1e 50%, #00bcd422 100%); }
.portfolio-thumb--fit1   { background: linear-gradient(135deg, #1a0f0a 0%, #2d1a10 50%, #ff6b3533 100%); }
.portfolio-thumb--fit2   { background: linear-gradient(135deg, #0a0f14 0%, #101820 50%, #2196F322 100%); }

/* Play icon overlay */
.portfolio-thumb::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  pointer-events: none;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.portfolio-card:hover .thumb-overlay { opacity: 1; }

.thumb-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.thumb-label {
  position: absolute;
  bottom: 0.6rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-info {
  padding: 1rem 1.25rem 1.25rem;
}

.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.portfolio-info p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.portfolio-cta {
  padding: 6rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 61, 90, 0.08) 0%, transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.portfolio-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.portfolio-cta p {
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section {
  padding: 4rem 2rem 6rem;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138,138,154,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 61, 90, 0.4);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-error {
  background: rgba(255, 61, 90, 0.12);
  border: 1px solid rgba(255, 61, 90, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(72, 199, 116, 0.1);
  border: 1px solid rgba(72, 199, 116, 0.3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  color: #48c774;
  font-size: 0.95rem;
  font-weight: 500;
}

.success-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 61, 90, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
}
a.contact-detail-value:hover { color: var(--accent); }

.contact-packages {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.contact-packages h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.mini-package {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mini-package:last-of-type { border-bottom: none; margin-bottom: 1rem; }

.mini-package--featured .mini-package-name {
  color: var(--accent);
  font-weight: 600;
}

.mini-package-price {
  font-family: var(--font-display);
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE — inner pages
   ========================================================= */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .page-hero { padding: 3rem 1.5rem 2.5rem; }
}
