/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --dark: #141412;
  --dark2: #1E1E1B;
  --accent: #E05C1A;
  --accent-light: #FAE8DC;
  --accent-mid: #F0A070;
  --muted: #716F69;
  --border: #E4DFD7;
  --border-dark: rgba(255,255,255,0.10);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Syne', sans-serif;
  --font-italic: 'Lora', serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(248,245,239,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.logo-underscore { color: var(--accent); }

.portfolio-image {
  left:50%;
  width: 150%;
  height: 220px;
  object-fit: fill;
  display: block;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 65px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 199; padding: 1rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: var(--dark); text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--accent); font-weight: 600; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero::after {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(224,92,26,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 430px; margin-bottom: 2.2rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--dark); color: var(--cream);
  padding: 0.85rem 1.8rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.22s, transform 0.22s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.full-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1.5px solid var(--border); color: var(--dark);
  padding: 0.85rem 1.8rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--dark); transform: translateY(-2px); }
.arr { transition: transform 0.2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }

.hero-stats {
  display: flex; align-items: center; gap: 1.8rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s ease 0.45s both;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--dark);
}
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.9s ease 0.35s both;
}
.mockup-wrap { position: relative; width: 100%; max-width: 460px; }

.mockup-desktop {
  background: var(--dark);
  border-radius: 14px; padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar { display: flex; gap: 5px; padding: 0 2px 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.mockup-screen { background: #F0EDE8; border-radius: 8px; height: 260px; overflow: hidden; }
.mock-topbar {
  height: 34px; background: white;
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
  border-bottom: 1px solid #E5E2DD;
}
.mock-dot-nav { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.mock-url { flex: 1; height: 16px; background: #F0EDE8; border-radius: 4px; font-size: 8px; color: #999; display: flex; align-items: center; padding: 0 6px; font-family: var(--font-body); }
.mock-body { padding: 16px; }
.mock-tag { display: inline-block; background: rgba(224,92,26,0.12); color: var(--accent); font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 20px; margin-bottom: 7px; font-family: var(--font-body); }
.mock-h { font-family: var(--font-display); font-weight: 900; font-size: 14px; line-height: 1.2; color: var(--dark); margin-bottom: 7px; letter-spacing: -0.03em; }
.mock-p { font-size: 7px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; font-family: var(--font-body); max-width: 190px; }
.mock-btns { display: flex; gap: 5px; }
.mock-btn1 { background: var(--dark); color: white; font-size: 6.5px; font-family: var(--font-body); font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.mock-btn2 { border: 1px solid #E4DFD7; color: var(--dark); font-size: 6.5px; font-family: var(--font-body); padding: 4px 10px; border-radius: 20px; }
.mock-cards { display: flex; gap: 5px; margin-top: 12px; }
.mock-card { flex: 1; background: white; border-radius: 6px; padding: 7px; }
.mock-card-icon { font-size: 9px; margin-bottom: 3px; }
.mock-card-t { font-size: 6.5px; font-weight: 700; color: var(--dark); font-family: var(--font-body); margin-bottom: 1px; }
.mock-card-d { font-size: 5.5px; color: var(--muted); font-family: var(--font-body); }

.mockup-phone {
  position: absolute; bottom: -24px; right: -28px;
  width: 96px; background: var(--dark);
  border-radius: 18px; padding: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-screen { background: #F0EDE8; border-radius: 13px; height: 158px; overflow: hidden; }
.phone-notch { width: 28px; height: 5px; background: var(--dark); border-radius: 0 0 6px 6px; margin: 0 auto 6px; }
.phone-body { padding: 3px 6px; }
.phone-tag { display: inline-block; background: rgba(224,92,26,0.15); color: var(--accent); font-size: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 5px; border-radius: 10px; margin-bottom: 3px; font-family: var(--font-body); }
.phone-h { font-family: var(--font-display); font-weight: 900; font-size: 8.5px; line-height: 1.2; color: var(--dark); margin-bottom: 3px; letter-spacing: -0.03em; }
.phone-p { font-size: 5px; color: var(--muted); line-height: 1.4; font-family: var(--font-body); }
.phone-btn { margin-top: 8px; background: var(--dark); color: white; font-size: 5px; font-family: var(--font-body); font-weight: 700; padding: 4px 8px; border-radius: 10px; display: inline-block; }

/* ===== SECTIONS BASE ===== */
section { padding: 6rem 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.75; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; gap: 2rem;
}
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }

.service-card {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 1.8rem 1.5rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.08); }
.service-card.featured { background: var(--dark); border-color: var(--dark); color: var(--cream); }

.service-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.service-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1rem; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.service-card.featured .service-desc { color: rgba(248,245,239,0.6); }
.service-price { margin-top: 1.3rem; font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.service-card.featured .service-price { color: var(--accent-mid); }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--cream); }
.portfolio-head { text-align: center; margin-bottom: 3.5rem; }
.portfolio-head .section-sub { margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.portfolio-card {
  border-radius: 18px; overflow: hidden;
  border: 1.5px solid var(--border); background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }

.portfolio-thumb { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.thumb-beauty { background: linear-gradient(135deg, #FDF0F5 0%, #F5D9E8 100%); }
.thumb-build  { background: linear-gradient(135deg, #EFF4F0 0%, #C8DDD0 100%); }
.thumb-trainer{ background: linear-gradient(135deg, #EEF0F8 0%, #C2CAE8 100%); }

.thumb-screen {
  width: 78%; background: white; border-radius: 8px;
  padding: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ts-bar { height: 5px; background: #F0EDE8; border-radius: 3px; margin-bottom: 8px; width: 60%; }
.ts-h { font-family: var(--font-display); font-weight: 900; font-size: 9px; margin-bottom: 5px; color: var(--dark); letter-spacing: -0.03em; }
.ts-p { height: 3px; background: var(--border); border-radius: 2px; margin-bottom: 3px; }
.ts-p.short { width: 70%; }
.ts-btn { margin-top: 8px; display: inline-block; height: 14px; width: 58px; border-radius: 10px; }
.ts-btn-beauty { background: #D4487A; }
.ts-btn-build  { background: #3A7D5C; }
.ts-btn-trainer{ background: #3A4DB3; }

.portfolio-info { padding: 1.4rem 1.5rem; }
.portfolio-cat { font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.portfolio-name { font-family: var(--font-display); font-weight: 900; font-size: 1rem; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.portfolio-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.portfolio-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 1rem; }
.tag { font-size: 0.72rem; background: var(--accent-light); color: var(--accent); padding: 0.2rem 0.7rem; border-radius: 100px; font-weight: 600; }

/* ===== WHY ===== */
.why { background: var(--dark); color: var(--cream); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.accent-tag { color: var(--accent-mid) !important; }
.light-title { color: var(--cream); }
.light-title em { font-family: var(--font-italic); font-style: italic; font-weight: 400; color: var(--accent-mid); }
.muted-light { color: rgba(248,245,239,0.55); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 1.4rem;
  transition: background 0.2s, border-color 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(224,92,26,0.3); }
.why-check { font-size: 1.3rem; margin-bottom: 0.6rem; }
.why-item-title { font-family: var(--font-display); font-weight: 900; font-size: 0.85rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.why-item-desc { font-size: 0.82rem; color: rgba(248,245,239,0.5); line-height: 1.65; }

/* ===== PROCESS ===== */
.process { background: var(--cream); }
.process-head { text-align: center; margin-bottom: 4rem; }
.process-head .section-sub { margin: 0 auto; }

.process-timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
  padding-bottom: 0;
}

.step-connector {
  position: absolute;
  left: 39px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  z-index: 0;
}
.process-step.last-step .step-connector { display: none; }

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  border: 2px solid var(--accent-light);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.step-number.final {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-light);
}

.step-right {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 0 0 3rem 1.5rem;
}
.process-step.last-step .step-right { padding-bottom: 0; }

.step-icon-wrap {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-top: -4px;
}
.step-icon-wrap.glow {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(224,92,26,0.3);
}

.process-step:hover .step-icon-wrap { border-color: var(--accent); box-shadow: 0 4px 16px rgba(224,92,26,0.15); }
.process-step:hover .step-number { background: var(--accent-light); border-color: var(--accent); }

.step-content { flex: 1; }
.step-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.step-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--accent-light); color: var(--accent);
  padding: 0.25rem 0.75rem; border-radius: 100px;
}
.step-tag.final-tag { background: var(--accent); color: white; }

/* ===== PRICING ===== */
.pricing { background: var(--white); }
.pricing-head { text-align: center; margin-bottom: 3.5rem; }
.pricing-head .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }

.price-card {
  border: 1.5px solid var(--border);
  border-radius: 22px; padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.08); }
.price-card.popular { border-color: var(--accent); background: var(--dark); color: var(--cream); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.price-type { font-size: 0.72rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.price-card.popular .price-type { color: rgba(248,245,239,0.45); }
.price-name { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.price-amount { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.2rem; }
.price-from { font-size: 0.78rem; color: var(--muted); }
.price-num { font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; line-height: 1; letter-spacing: -0.05em; }
.price-currency { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card.popular .price-from,
.price-card.popular .price-currency { color: rgba(248,245,239,0.45); }
.price-desc {
  font-size: 0.83rem; color: var(--muted); line-height: 1.65;
  margin: 1rem 0 1.3rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price-card.popular .price-desc { color: rgba(248,245,239,0.55); border-top-color: rgba(255,255,255,0.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.price-features li { font-size: 0.84rem; display: flex; align-items: center; gap: 0.6rem; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.price-card.popular .price-features li { color: rgba(248,245,239,0.8); }
.price-btn {
  display: block; text-align: center;
  margin-top: 1.8rem; padding: 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  color: var(--dark); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.price-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.price-card.popular .price-btn { background: var(--accent); border-color: var(--accent); color: white; }
.price-card.popular .price-btn:hover { background: #c94f15; border-color: #c94f15; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; text-decoration: none; color: var(--dark);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: var(--accent); transform: translateX(4px); }
.method-icon { font-size: 1.2rem; width: 34px; text-align: center; }
.method-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.1rem; }
.method-value { font-size: 0.9rem; font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  color: var(--dark); letter-spacing: 0.02em;
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 0.78rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  text-align: center;
  padding: 3rem 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: -0.05em;
  margin-bottom: 0.4rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: rgba(248,245,239,0.45); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.8rem; color: rgba(248,245,239,0.3); }
.footer-copy a { color: var(--accent); text-decoration: none; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 8rem 2rem 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; gap: 3rem; }
  .hero-visual { display: none; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  section { padding: 4rem 0; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .stat-divider { display: none; }
  .process-step { grid-template-columns: 60px 1fr; }
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-head { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q { color: var(--accent); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 0 1.3rem;
  max-width: 620px;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  background: #EBF7F0;
  color: #1E6B42;
  border: 1.5px solid #A8DFC0;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== FOCUS VISIBLE (accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}