@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #e94560;
  --accent-soft: #ff6b81;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --green: #10b981;
  --cream: #faf7f2;
  --warm: #fefcf8;
  --white: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.1);
  --shadow-xl: 0 20px 60px rgba(15,23,42,0.12);
  --shadow-accent: 0 8px 30px rgba(233,69,96,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--warm);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(233,69,96,0.12); color: var(--primary); }

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: #d63a54; transform: translateY(-2px); box-shadow: 0 12px 35px rgba(233,69,96,0.3); }

.btn-secondary {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-dark {
  background: var(--primary); color: #fff;
}
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(245,158,11,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.35); }

.btn-sm { padding: 10px 24px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 16px 0;
  transition: all 0.35s var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent); }
.header.scrolled .logo-text { color: var(--text); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: all 0.2s var(--ease);
}
.header.scrolled .nav a { color: var(--text-secondary); }
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,0.1); }
.header.scrolled .nav a:hover,
.header.scrolled .nav a.active { color: var(--accent); background: rgba(233,69,96,0.06); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; z-index: 1001; cursor: pointer;
  width: 28px; height: 20px; position: relative;
  background: none; border: none; padding: 0;
}
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.header.scrolled .hamburger span { background: var(--text); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 9px; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative; overflow: hidden; padding: 100px 0 80px;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,69,96,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 2; }

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-badge span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem; line-height: 1.8;
  margin-bottom: 36px; max-width: 480px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-metrics { display: flex; gap: 36px; }
.hero-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; color: #fff;
}
.hero-metric-num span { color: var(--gold); }
.hero-metric-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px;
}

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-graphic {
  width: 100%; max-width: 480px; position: relative;
}
.hero-graphic svg { width: 100%; height: auto; }

/* ── Trust Strip ── */
.trust-strip {
  padding: 32px 0; background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-chip {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.5; transition: opacity 0.3s;
}
.trust-chip:hover { opacity: 0.9; }
.trust-chip svg { width: 22px; height: 22px; }
.trust-chip span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.5px; text-transform: uppercase;
}

/* ── Services Grid (Homepage) ── */
.services { padding: 100px 0; background: var(--warm); }

.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.srv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.3s var(--ease); display: block;
}
.srv-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.srv-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 0.3s var(--ease);
}
.srv-card:hover .srv-card-icon { background: rgba(233,69,96,0.08); }
.srv-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.srv-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.srv-card p { font-size: 0.92rem; margin-bottom: 16px; }
.srv-card-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease);
}
.srv-card:hover .srv-card-link { gap: 10px; }

/* ── Why Section ── */
.why { padding: 100px 0; background: var(--cream); }
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-content h2 { margin-bottom: 16px; }
.why-content > p { margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 14px; }
.why-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.why-item-icon svg { width: 20px; height: 20px; color: var(--accent); }
.why-item h4 { margin-bottom: 2px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; }
.why-item p { font-size: 0.88rem; }
.why-visual svg { width: 100%; max-width: 450px; height: auto; }

/* ── Process ── */
.process { padding: 100px 0; background: var(--warm); }
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-step { text-align: center; }
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-num {
  border-color: var(--accent); box-shadow: var(--shadow-accent);
}
.process-num span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--accent);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; max-width: 200px; margin: 0 auto; }

/* ── Stats ── */
.stats { padding: 72px 0; background: var(--cream); }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--accent); margin-bottom: 4px;
}
.stat-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head .label { color: var(--gold); }
.testimonials .section-head p { color: rgba(255,255,255,0.5); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s var(--ease);
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testi-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.95rem; color: #fff;
}
.testi-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; color: #fff; }
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── CTA Block ── */
.cta { padding: 80px 0; }
.cta-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(233,69,96,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box h2 { margin-bottom: 14px; position: relative; }
.cta-box p { max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ── FAQ ── */
.faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; background: var(--white); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; gap: 16px;
}
.faq-q h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; }
.faq-q svg { width: 18px; height: 18px; min-width: 18px; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 22px 18px; }
.faq-a-inner p { font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Footer ── */
.footer { background: var(--primary); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.4);
  transition: all 0.2s; display: inline-block;
}
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 150px 0 70px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.5); max-width: 540px; margin: 0 auto; position: relative; font-size: 1.05rem; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 20px; position: relative;
}
.breadcrumb a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { font-size: 0.82rem; color: rgba(255,255,255,0.2); }
.breadcrumb .current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; color: var(--accent);
}

/* ── Services Page Detail ── */
.srv-detail { padding: 80px 0; }

.srv-detail-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.srv-detail-item:last-child { border-bottom: none; }
.srv-detail-item:nth-child(even) .srv-detail-text { order: 2; }
.srv-detail-item:nth-child(even) .srv-detail-img { order: 1; }

.srv-detail-text .label { margin-bottom: 8px; }
.srv-detail-text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.srv-detail-text > p { margin-bottom: 20px; }
.srv-detail-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.srv-detail-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--text-secondary);
}
.srv-detail-list li svg { width: 18px; height: 18px; color: var(--green); min-width: 18px; }

.srv-detail-img { display: flex; justify-content: center; }
.srv-detail-img svg { width: 100%; max-width: 380px; height: auto; }

/* ── Order / Packages ── */
.order-section { padding: 60px 0; }
.order-cat { margin-bottom: 72px; }
.order-cat-head { text-align: center; margin-bottom: 40px; }
.order-cat-head h2 { font-size: 1.8rem; margin-bottom: 10px; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s var(--ease); position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.featured { border-color: var(--accent); box-shadow: var(--shadow-accent); }

.pkg-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
  letter-spacing: 1px; text-transform: uppercase;
}

.pkg-head {
  padding: 32px 28px 20px; text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.pkg-head h3 { font-size: 1.15rem; margin-bottom: 6px; }
.pkg-da {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; color: var(--accent); font-weight: 600;
  margin-bottom: 14px; display: block;
}
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; color: var(--text);
}
.pkg-price sup { font-size: 1rem; vertical-align: super; }
.pkg-price-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.pkg-features { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-secondary);
}
.pkg-features li svg { width: 16px; height: 16px; color: var(--green); min-width: 16px; }

.pkg-foot { padding: 0 28px 28px; }
.pkg-foot .btn { width: 100%; justify-content: center; }

/* ── About Page ── */
.about-intro { padding: 80px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-grid h2 { margin-bottom: 16px; }
.about-grid p { margin-bottom: 14px; }
.about-grid svg { width: 100%; max-width: 420px; height: auto; }

.values { padding: 80px 0; background: var(--cream); }
.val-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.val-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.val-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.val-card svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 14px; }
.val-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.val-card p { font-size: 0.88rem; }

/* ── Contact Page ── */
.contact { padding: 80px 0; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cream); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; }
.contact-item a { color: var(--accent); }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  color: var(--text); background: var(--warm);
  transition: all 0.2s; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.06);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ── Blog ── */
.blog { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s var(--ease); display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img svg { width: 100%; height: 100%; }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; gap: 14px; margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 14px; }

/* ── Newsletter ── */
.newsletter { padding: 64px 0; background: var(--cream); }
.newsletter-box { text-align: center; max-width: 500px; margin: 0 auto; }
.newsletter-box h3 { margin-bottom: 10px; }
.newsletter-box p { margin-bottom: 24px; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: var(--white); outline: none;
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-accent);
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease); z-index: 999;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Animations ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .srv-detail-item { grid-template-columns: 1fr; gap: 32px; }
  .srv-detail-item:nth-child(even) .srv-detail-text { order: 1; }
  .srv-detail-item:nth-child(even) .srv-detail-img { order: 2; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--primary);
    flex-direction: column; justify-content: center;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.1rem; color: rgba(255,255,255,0.7) !important; padding: 10px 24px; }
  .nav a:hover, .nav a.active { color: #fff !important; background: rgba(255,255,255,0.08) !important; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hamburger { display: block; }

  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-graphic { max-width: 320px; }
  .hero-metrics { gap: 20px; flex-wrap: wrap; }

  .srv-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { gap: 24px; }
  .cta-box { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .hero-metric-num { font-size: 1.5rem; }
  .stat-num { font-size: 2rem; }
}
