/* ==========================================
   WEBSMITH — Main Stylesheet
   ========================================== */

/* 1. Custom Properties
   =================== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F2F2F2;
  --bg-subtle: #EBEBEB;
  --text: #2C2C2A;
  --text-secondary: #5F5E5A;
  --text-muted: #B4B2A9;
  --accent: #8B2942;
  --accent-hover: #721835;
  --accent-light: rgba(139, 41, 66, 0.08);
  --border: #E2E2E2;
  --border-subtle: #EBEBEB;
  --white: #FFFFFF;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --section-y: 72px;
  --max-width: 1200px;
  --gutter: 24px;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(44, 44, 42, 0.08);
  --shadow: 0 4px 20px rgba(44, 44, 42, 0.1);
  --shadow-lg: 0 16px 48px rgba(44, 44, 42, 0.15);

  --ease: 0.25s ease;
}

/* 2. Reset
   ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* 3. Typography
   ============ */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 20px; }
h5 { font-size: 15px; font-weight: 700; }
p { color: var(--text-secondary); line-height: 1.75; }

/* 4. Layout
   ======== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--alt { background: var(--bg-alt); }
.section--subtle { background: var(--bg-subtle); }
.section--dark { background: var(--text); color: white; }

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

/* 5. Buttons
   ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--text); background: var(--bg-subtle); }
.btn--accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,41,66,0.3); }
.btn--white { background: white; color: var(--text); border-color: white; }
.btn--white:hover { background: var(--bg-subtle); color: var(--text); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* 6. Tag / Badge
   ============= */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}
.tag--accent { background: var(--accent-light); color: var(--accent); }

/* 7. Section Header
   ================ */
.section-header { margin-bottom: 40px; }
.section-header--center { text-align: center; }
.section-header--center > * { margin-left: auto; margin-right: auto; }
.section-header .tag { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; max-width: 540px; }

/* 8. Navigation
   ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo { font-size: 17px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); flex-shrink: 0; }
.nav__logo span { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(44,44,42,0.45);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  letter-spacing: 0.01em;
}
.nav__link:hover, .nav__link.active { color: var(--text); background: rgba(44,44,42,0.06); }

.nav__cta {
  flex-shrink: 0;
  background: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
}
.nav__cta:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav__toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); width: 100%; }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: 0 24px 48px rgba(0,50,80,0.15);
}
.nav__mobile.open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.nav__mobile-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--ease);
  display: block;
}
.nav__mobile-link:hover { background: var(--bg-subtle); }

/* 9. Footer
   ======== */
.footer { background: #2C2C2A; color: #D3D1C7; padding: 52px 0 24px; }
.footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { font-size: 19px; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 12px; }
.footer__logo span { color: var(--accent); }
.footer__tagline { color: rgba(211,209,199,0.5); font-size: 14px; line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(211,209,199,0.32); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(211,209,199,0.55); transition: color var(--ease); }
.footer__link:hover { color: #D3D1C7; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(211,209,199,0.55); margin-bottom: 12px; line-height: 1.5; }
.footer__bottom { border-top: 1px solid rgba(211,209,199,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: rgba(211,209,199,0.3); }

/* 10. Home Hero
    =========== */
.home-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 56px;
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(44,44,42,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 25%, rgba(255,255,255,0.75) 100%);
  pointer-events: none;
}
.home-hero .container { position: relative; }

.home-hero__content { max-width: 760px; margin: 0 auto; text-align: center; }
.home-hero .tag { margin-bottom: 18px; }
.home-hero h1 { margin-bottom: 18px; font-size: clamp(40px, 6.5vw, 76px); }
.home-hero h1 em { font-style: normal; color: var(--accent); }
.home-hero__sub { font-size: clamp(15px, 1.8vw, 19px); color: var(--text-secondary); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.home-hero__ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.home-hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.home-hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--text-muted), transparent); }

/* 11. Services Grid
    ================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.service-card { background: var(--bg); padding: 40px 32px; transition: background var(--ease); }
.service-card:hover { background: var(--bg-alt); }
.service-card__icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); flex-shrink: 0; }
.service-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card__desc { font-size: 14px; line-height: 1.7; }

/* 12. Differentiators / Why
    ========================= */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { padding: 32px; border: 1px solid var(--accent); border-radius: var(--radius-xl); position: relative; overflow: hidden; transition: all var(--ease); }
.why-item:hover { box-shadow: var(--shadow); }
.why-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(1); transition: transform var(--ease); transform-origin: left; }
.why-item__number { font-size: 40px; font-weight: 800; color: rgba(44,44,42,0.07); line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em; }
.why-item__title { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.why-item__text { font-size: 15px; }

/* 13. Packages Preview (Home)
    ========================== */
.packages-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.package-card {
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.package-card:hover { border-color: var(--text); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card.featured { border-color: #2C2C2A; background: #2C2C2A; color: white; }
.package-card.featured .package-card__price,
.package-card.featured .package-card__name { color: white; }
.package-card.featured .package-card__badge { background: rgba(139,41,66,0.25); color: #C4607A; }
.package-card.featured .package-card__desc { color: rgba(211,209,199,0.6); }
.package-card.featured .package-card__item { color: rgba(211,209,199,0.8); }
.package-card.featured .package-card__btn { background: var(--accent); color: white; border-color: var(--accent); }
.package-card.featured .package-card__btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.package-card__badge { display: inline-block; padding: 4px 12px; background: var(--bg-subtle); color: var(--text-secondary); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 100px; margin-bottom: 20px; }
.package-card__name { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.package-card__price { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 12px; }
.package-card__price small { font-size: 14px; font-weight: 500; letter-spacing: 0; }
.package-card__desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.package-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.package-card__item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.package-card__item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.package-card.featured .package-card__item svg { color: rgba(255,255,255,0.9); }

/* 14. CTA Section
    ============== */
.cta-section { background: #2C2C2A; padding: 72px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(211,209,199,0.7); font-size: 18px; max-width: 520px; margin: 0 auto 40px; }
.cta-section__btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* 15. Page Hero (inner pages)
    ========================== */
.page-hero { padding: 136px 0 48px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.page-hero .tag { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 19px; max-width: 560px; }

/* 16. Pricing Cards
    ================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  background: var(--bg);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: #2C2C2A;
  border-color: #2C2C2A;
  box-shadow: 0 20px 60px rgba(44,44,42,0.35);
}

/* Badge — inside flow, no absolute positioning */
.pricing-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 100px; margin-bottom: 20px;
}
.pricing-card__spacer { height: 45px; } /* keeps non-featured cards aligned */

/* Tier + Name */
.pricing-card__tier { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.pricing-card__name { font-size: 28px; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.pricing-card.featured .pricing-card__name { color: white; }

/* Price */
.pricing-card__price { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); line-height: 1.2; margin-bottom: 4px; }
.pricing-card.featured .pricing-card__price { color: white; }
.pricing-card__price-note { font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.featured .pricing-card__price-note { color: rgba(255,255,255,0.4); }

/* Divider */
.pricing-card__divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-card.featured .pricing-card__divider { background: rgba(255,255,255,0.1); }

/* Who */
.pricing-card__who { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-card__who { color: rgba(255,255,255,0.38); }
.pricing-card__audience { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.65; }
.pricing-card.featured .pricing-card__audience { color: rgba(255,255,255,0.6); }

/* Includes */
.pricing-card__includes { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.pricing-card.featured .pricing-card__includes { color: rgba(255,255,255,0.38); }

/* Feature list */
.pricing-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.pricing-card.featured .pricing-card__feature { color: rgba(255,255,255,0.72); }
.pricing-card__feature svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* CTA */
.pricing-card .btn { width: 100%; }

/* Goal */
.pricing-card__objective { margin-top: 16px; padding: 14px 16px; background: var(--bg-subtle); border-radius: var(--radius); font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.pricing-card__objective strong { color: var(--text); }
.pricing-card.featured .pricing-card__objective { background: rgba(255,255,255,0.06); color: rgba(211,209,199,0.55); }
.pricing-card.featured .pricing-card__objective strong { color: var(--accent); }

/* 17. Payment Terms
    ================ */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.payment-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--bg); }
.payment-card__title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.payment-card__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.payment-steps { display: flex; flex-direction: column; gap: 12px; }
.payment-step { display: flex; align-items: center; gap: 14px; }
.payment-step__pct { display: flex; align-items: center; justify-content: center; min-width: 52px; height: 36px; background: var(--bg-subtle); border-radius: var(--radius-sm); font-weight: 800; font-size: 14px; color: var(--accent); }
.payment-step__desc { font-size: 14px; color: var(--text-secondary); }

/* 18. Maintenance Section
    ====================== */
.maintenance-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 40px 44px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.maintenance-price { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; color: var(--text); }
.maintenance-price small { font-size: 18px; font-weight: 600; letter-spacing: 0; }
.maintenance-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.maintenance-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.maintenance-item svg { color: var(--accent); flex-shrink: 0; }

/* 19. Process Timeline
    =================== */
.process-timeline { max-width: 800px; }
.process-step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; }
.process-step__left { display: flex; flex-direction: column; align-items: center; }
.process-step__num {
  width: 48px; height: 48px;
  background: var(--bg-subtle);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: all var(--ease);
}
.process-step:hover .process-step__num { background: var(--accent); border-color: var(--accent); color: white; }
.process-step__line { width: 2px; flex: 1; background: var(--border); min-height: 48px; margin: 4px 0; }
.process-step:last-child .process-step__line { display: none; }
.process-step__content { padding-top: 8px; padding-bottom: 40px; }
.process-step:last-child .process-step__content { padding-bottom: 0; }
.process-step__stage { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.process-step__title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.process-step__text { font-size: 15px; color: var(--text-secondary); line-height: 1.75; max-width: 560px; }

/* 20. Studio Page
    ============== */
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.studio-card { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); transition: all var(--ease); }
.studio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.studio-card__preview { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.studio-card__body { padding: 24px; background: var(--bg); }
.studio-card__type { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.studio-card__name { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.studio-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Preview gradients */
.preview--business { background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%); }
.preview--ecommerce { background: linear-gradient(135deg, #064E3B 0%, #0D9488 80%); }
.preview--portfolio { background: linear-gradient(135deg, #2D1B69 0%, #4C1D95 100%); }
.preview--brand { background: linear-gradient(135deg, #7C2D12 0%, #C2410C 100%); }
.preview--landing { background: linear-gradient(135deg, #0C4A6E 0%, #0EA5E9 100%); }
.preview--blog { background: linear-gradient(135deg, #1C1917 0%, #44403C 100%); }
.preview--booking { background: linear-gradient(135deg, #134E4A 0%, #0F766E 100%); }
.preview--platform { background: linear-gradient(135deg, #1E1B4B 0%, #3730A3 100%); }
.preview--app { background: linear-gradient(135deg, #0F0F0F 0%, #374151 100%); }

/* Browser Mockup */
.browser-mock { width: 75%; max-width: 240px; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.browser-mock__bar { height: 26px; background: rgba(255,255,255,0.14); display: flex; align-items: center; padding: 0 10px; gap: 5px; }
.browser-mock__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.browser-mock__body { background: rgba(255,255,255,0.08); padding: 14px 12px; }
.browser-mock__line { height: 5px; background: rgba(255,255,255,0.25); border-radius: 3px; margin-bottom: 5px; }
.browser-mock__line--h { height: 10px; width: 50%; margin-bottom: 8px; }
.browser-mock__line--s { width: 60%; }
.browser-mock__line--m { width: 80%; }
.browser-mock__btn { height: 20px; width: 64px; background: rgba(255,255,255,0.35); border-radius: 4px; margin-top: 10px; }

/* 21. Contact Page
    =============== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info__heading { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.contact-info__text { font-size: 15px; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: all var(--ease);
  color: var(--text);
}
.contact-method:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.contact-method__icon { width: 40px; height: 40px; background: var(--bg-subtle); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--ease); }
.contact-method:hover .contact-method__icon { background: var(--accent); color: white; }

.contact-form-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.contact-form-box__title { font-size: 20px; font-weight: 800; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font); font-size: 14px;
  color: var(--text); background: var(--bg);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,41,66,0.14); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* 22. Scroll Animations
    ==================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger:nth-child(2) .fade-up, .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger:nth-child(3) .fade-up, .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger:nth-child(4) .fade-up, .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger:nth-child(5) .fade-up, .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger:nth-child(6) .fade-up, .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* 23. Utilities
    =========== */
.text-center { text-align: center; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* 24. Responsive
    ============= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .maintenance-block { grid-template-columns: 1fr; gap: 24px; padding: 40px; }
}

@media (max-width: 768px) {
  :root { --section-y: 52px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .home-hero { min-height: auto; padding: 140px 0 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .packages-preview, .payment-grid, .contact-layout { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 36px 1fr; }
  .process-step__num { width: 36px; height: 36px; font-size: 12px; }
  .payment-grid { grid-template-columns: 1fr; }
  .section-header p { font-size: 16px; }
}

@media (max-width: 480px) {
  .studio-grid { grid-template-columns: 1fr; }
  .home-hero__ctas { flex-direction: column; align-items: stretch; }
  .contact-form-box { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
}

/* ==========================================
   BRANDED LOADER
   ========================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader.exit { transform: translateY(-102%); }
.loader__logo {
  display: flex;
  align-items: flex-end;
  font-family: var(--font);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}
.loader__clip {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.loader__web,
.loader__smith {
  display: inline-block;
  transform: translateY(110%);
  animation: loaderUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loader__web   { color: var(--text);   animation-delay: 0.06s; }
.loader__smith { color: var(--accent); animation-delay: 0.2s; }
@keyframes loaderUp { to { transform: translateY(0); } }
.loader__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: loaderFade 0.4s ease 0.5s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
.loader__track {
  width: 88px;
  height: 1.5px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderFill 1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
@keyframes loaderFill { to { transform: scaleX(1); } }

/* ==========================================
   COOL FEATURES
   ========================================== */

/* Custom Cursor */
.cursor-dot {
  position: fixed; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor-dot--click { transform: translate(-50%, -50%) scale(0.5); }
.cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.55;
}
.cursor-ring--hover { width: 58px; height: 58px; opacity: 0.3; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), #C4506A);
  z-index: 10001;
  box-shadow: 0 0 8px rgba(139,41,66,0.5);
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; background: var(--text); color: var(--bg);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: all 0.3s ease; z-index: 999;
  box-shadow: 0 8px 24px rgba(0,50,80,0.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: white; transform: translateY(-3px); }

/* Grain texture */
.grain {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px; opacity: 0.038;
  pointer-events: none; z-index: 9997;
}

/* Available badge */
.hero-available {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0,50,80,0.12);
}
.hero-available__dot {
  width: 8px; height: 8px; background: #16a34a;
  border-radius: 50%; position: relative; flex-shrink: 0;
}
.hero-available__dot::after {
  content: ''; position: absolute; inset: -3px;
  background: rgba(22,163,74,0.3); border-radius: 50%;
  animation: availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0; }
}

/* Word cycling */
.word-cycle {
  display: inline-block; color: var(--accent); font-style: normal;
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.word-cycle.exit { opacity: 0; transform: translateY(-18px); transition: opacity 0.22s ease, transform 0.22s ease; }
.word-cycle.enter { opacity: 0; transform: translateY(18px); transition: none; }

/* Marquee band */
.marquee-band {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #2C2C2A; padding: 13px 0; user-select: none;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee-band:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  padding: 0 28px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(211,209,199,0.55); white-space: nowrap;
  transition: color 0.2s;
}
.marquee__item:hover { color: white; }
.marquee__sep { color: rgba(211,209,199,0.35); padding: 0 8px; font-size: 14px; flex-shrink: 0; display: inline-block; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Stats section */
.stats-section { background: #5F5E5A; padding: 52px 0; position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(44,44,42,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); overflow: hidden; position: relative; z-index: 1;
}
.stat-item { padding: 32px 20px; background: rgba(255,255,255,0.04); text-align: center; transition: background 0.3s ease; }
.stat-item:hover { background: rgba(255,255,255,0.1); }
.stat-num { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; color: white; line-height: 1; margin-bottom: 8px; }
.s-suffix { font-size: 26px; font-weight: 700; color: rgba(255,255,255,0.7); }
.s-prefix { font-size: 26px; font-weight: 700; color: rgba(255,255,255,0.65); }
.stat-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* Service icon hover */
.service-card__icon { transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.service-card:hover .service-card__icon { background: var(--accent); color: white; transform: scale(1.08) rotate(-4deg); }

/* Featured card shimmer */
.package-card.featured { overflow: hidden; }
.package-card.featured::after {
  content: ''; position: absolute; top: -60%; left: -30%; width: 32%; height: 220%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
  transform: rotate(18deg); animation: shimmerSlide 3.5s ease-in-out 0.5s infinite;
}
@keyframes shimmerSlide { 0% { left: -30%; } 100% { left: 120%; } }

/* Hero load animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-hero__content > * { animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both; }
.home-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.home-hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.home-hero__content > *:nth-child(3) { animation-delay: 0.35s; }
.home-hero__content > *:nth-child(4) { animation-delay: 0.5s; }

/* Nav link underline */
.nav__link { position: relative; }
.nav__link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.25s ease; transform-origin: left;
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* Studio card overlay */
.studio-card__preview { position: relative; }
.studio-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.studio-card:hover .studio-card__overlay { opacity: 1; }
.studio-card__overlay-text {
  color: white; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 100px;
}

/* ── Recent Works ── */
.works-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}
.works-right { display: flex; flex-direction: column; gap: 20px; }

.work-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow var(--ease);
}
.work-card:hover { box-shadow: var(--shadow-lg); }

.work-card__preview {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.work-card--sm .work-card__preview { height: 168px; }

.work-card__preview-bg {
  position: absolute; inset: 0;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-card:hover .work-card__preview-bg { transform: scale(1.04); }

.work-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 4px 11px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.work-card__body {
  padding: 18px 22px;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.work-card__name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.work-card__type { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.work-card__arrow {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--bg-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); margin-top: 4px;
  transition: all 0.25s ease;
}
.work-card:hover .work-card__arrow { background: var(--accent); color: white; }

/* ── Design Styles (enhanced) ── */
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.style-card {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.style-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.style-card__preview {
  height: 200px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.style-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.style-card__name {
  font-size: 17px; font-weight: 800; color: white;
  position: relative; z-index: 1; letter-spacing: -0.02em;
}
.style-card__body { padding: 14px 16px; background: var(--bg); }
.style-card__desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Mock UI helpers ── */
.mock-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-logo { width: 40px; height: 6px; background: currentColor; border-radius: 2px; opacity: 0.7; }
.mock-links { display: flex; gap: 8px; }
.mock-link { width: 22px; height: 4px; background: currentColor; border-radius: 2px; opacity: 0.35; }
.mock-hero-title { width: 75%; height: 22px; background: currentColor; border-radius: 3px; opacity: 0.3; margin-bottom: 8px; }
.mock-hero-sub { width: 55%; height: 10px; background: currentColor; border-radius: 2px; opacity: 0.18; margin-bottom: 14px; }
.mock-btn { width: 70px; height: 22px; background: currentColor; border-radius: 100px; opacity: 0.25; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; }
.mock-card-block { height: 40px; background: currentColor; border-radius: 5px; opacity: 0.15; }

/* Responsive extras */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .back-to-top { bottom: 20px; right: 16px; }
  .stat-num { font-size: 40px; }
  .stat-item { padding: 32px 16px; }
  .works-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .stat-num { font-size: 34px; } }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ==========================================
   ADVANCED INTERACTIONS
   ========================================== */

/* ─── Word-Split Reveal ─── */
.split-h { overflow: visible; }
.split-h .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.split-h .word__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-h.revealed .word__inner { transform: translateY(0); }

/* ─── Hero Spotlight ─── */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(
    circle 520px at var(--hx, 50%) var(--hy, 50%),
    rgba(139, 41, 66, 0.07) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ─── Hero Floating Shapes ─── */
.hero-shapes {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  animation: shapeFloat var(--sdur, 7s) ease-in-out var(--sdel, 0s) infinite alternate;
  will-change: transform;
}
.hero-shape--ring {
  border: 1.5px solid rgba(44, 44, 42, 0.1);
  background: transparent;
}
.hero-shape--blob {
  background: radial-gradient(circle, rgba(211, 209, 199, 0.5) 0%, transparent 70%);
}
@keyframes shapeFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(var(--stx, 16px), var(--sty, -20px)); }
}


/* ─── Service Card – reveal bottom accent ─── */
.service-card { position: relative; }
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
  z-index: 1;
}
.service-card:hover::before { transform: scaleX(1); }

/* ─── Nav logo on dark ─── */
.nav__logo { color: var(--text); font-size: 18px; letter-spacing: -0.05em; }
.nav__logo span { color: var(--accent); }

/* ─── Stats section shimmer sweep ─── */
.stats-section { overflow: hidden; }
.stats-section::after {
  content: ''; position: absolute;
  top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: statsShimmer 5s ease-in-out 1s infinite;
  pointer-events: none; z-index: 2;
}
@keyframes statsShimmer {
  0% { left: -60%; } 100% { left: 120%; }
}

/* ─── Process step glow ring ─── */
.process-step__num {
  transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}
.process-step:hover .process-step__num {
  box-shadow: 0 0 0 7px rgba(122, 24, 48, 0.12);
}

/* ─── Why-item glow border ─── */
.why-item {
  background-image: radial-gradient(
    circle 240px at var(--gx, 50%) var(--gy, 50%),
    rgba(139, 41, 66, 0.07),
    transparent 70%
  );
}

/* ─── Magnetic button – no-clamp hint ─── */
.btn--lg, .nav__cta {
  will-change: transform;
}

/* ─── Cursor velocity ─── */
.cursor-dot { will-change: transform; }

/* ==========================================
   STUDIO REDESIGN
   ========================================== */

/* ─── Display font ─── */
:root { --font-display: 'Cormorant Garamond', Georgia, serif; }

/* ─── Hero ─── */
.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 120px 0 64px;
}
.home-hero .container { position: relative; z-index: 1; width: 100%; }

.home-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home-hero__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-hero h1 {
  font-size: clamp(56px, 8.5vw, 108px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 48px;
  text-align: left;
}
.home-hero h1 em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.home-hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.home-hero__sub {
  font-size: 15px;
  max-width: 400px;
  margin: 0;
}
.home-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero animation targets updated */
.home-hero__top,
.home-hero h1,
.home-hero__bottom {
  animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.home-hero__top    { animation-delay: 0.05s; }
.home-hero h1      { animation-delay: 0.2s; }
.home-hero__bottom { animation-delay: 0.38s; }

/* ─── Services List (numbered rows) ─── */
.services-list { border-top: 1px solid var(--border); }

.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto 36px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.service-row:hover { padding-left: 20px; padding-right: 20px; }
.service-row:hover::before { transform: scaleY(1); }
.service-row > * { position: relative; z-index: 1; }

.service-row__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.35s;
}
.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-row__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.35s;
}
.service-row__desc {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.35s;
}
.service-row__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.35s;
  white-space: nowrap;
}
.service-row__icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: all 0.35s;
  line-height: 1;
}

.service-row:hover .service-row__num,
.service-row:hover .service-row__title,
.service-row:hover .service-row__icon { color: white; }
.service-row:hover .service-row__desc { color: rgba(255,255,255,0.55); }
.service-row:hover .service-row__tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.service-row:hover .service-row__icon { transform: translateX(4px) translateY(-4px); }

/* ─── Section header split layout ─── */
.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  text-align: left;
}
.section-header--split > div { display: flex; flex-direction: column; }
.section-header--split .tag { margin-bottom: 14px; align-self: flex-start; }
.section-header--split h2 { margin: 0; }
.section-header--split > p { font-size: 16px; max-width: 100%; margin: 0; }

/* ─── Stats numbers bigger ─── */
.stat-num { font-size: 64px !important; }

/* ─── Why item — bolder numbers ─── */
.why-item__number { font-size: 56px; letter-spacing: -0.05em; }

/* ─── Section header left-aligned (non-center variant) ─── */
.section-header:not(.section-header--center):not(.section-header--split) {
  text-align: left;
}
.section-header:not(.section-header--center):not(.section-header--split) p {
  margin-left: 0;
  margin-right: 0;
}
.section-header:not(.section-header--center):not(.section-header--split) .tag {
  margin-left: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .home-hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .home-hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .home-hero__ctas { justify-content: flex-start; }
  .service-row { grid-template-columns: 40px 1fr 32px; gap: 16px; }
  .service-row__tag { display: none; }
  .service-row:hover { padding-left: 12px; padding-right: 12px; }
  .section-header--split { grid-template-columns: 1fr; gap: 16px; }
  .stat-num { font-size: 48px !important; }
  .home-hero__count { display: none; }
}

/* ─── Studio accent line ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  z-index: 99999;
  pointer-events: none;
}

/* ─── Floating "Let's talk" pill ─── */
.studio-cta-float {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: background 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: floatPillIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards;
}
.studio-cta-float:hover { background: var(--accent); transform: translateY(-2px); }
.studio-cta-float__dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: availPulse 2s ease-in-out infinite;
}
@keyframes floatPillIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) { .studio-cta-float { display: none; } }

/* ─── Hero h2 em display font ─── */
.section h2 em, .cta-section h2 em, .page-hero h1 em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ─── Section divider ─── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── Package card featured badge wine ─── */
.package-card.featured .package-card__badge {
  background: rgba(139,41,66,0.2);
  color: #C4607A;
}

/* ─── Why grid full-width ─── */
.why-item {
  border-left: 2px solid var(--accent);
  transition: box-shadow 0.3s ease, background-image 0.3s ease;
}

/* ─── Process step accent on hover ─── */
.process-step:hover .process-step__stage { color: var(--accent); }

/* ─── Contact method wine hover ─── */
.contact-method:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.contact-method:hover .contact-method__icon { background: var(--accent); color: white; }

/* ─── Pricing featured text colors ─── */
.pricing-card.featured .pricing-card__tier { color: #C4607A; }
.pricing-card.featured .pricing-card__name,
.pricing-card.featured .pricing-card__price { color: white; }
.pricing-card.featured .pricing-card__price-note { color: rgba(211,209,199,0.5); }
.pricing-card.featured .pricing-card__includes,
.pricing-card.featured .pricing-card__who { color: rgba(211,209,199,0.4); }
.pricing-card.featured .pricing-card__audience { color: rgba(211,209,199,0.65); }
.pricing-card.featured .pricing-card__feature { color: rgba(211,209,199,0.75); }
.pricing-card.featured .pricing-card__feature svg { color: #C4607A; }
.pricing-card.featured .btn { background: var(--accent); color: white; border-color: var(--accent); }

/* ==========================================
   PRICING PAGE REDESIGN
   ========================================== */

/* ─── Pricing Hero ─── */
.pricing-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pricing-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.pricing-hero__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.pricing-hero h1 em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}
.pricing-hero p {
  font-size: 17px;
  max-width: 500px;
}

/* ─── Pricing List ─── */
.pricing-list {
  border-top: 1px solid var(--border);
}

.pricing-row {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row--featured {
  background: var(--text);
  padding: 52px 52px;
  border-radius: var(--radius-xl);
  border-bottom: none;
  margin: 20px -52px;
}

.pricing-row__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 20px;
}

.pricing-row__left {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.pricing-row__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 10px;
  flex-shrink: 0;
}
.pricing-row--featured .pricing-row__num { color: rgba(255,255,255,0.25); }

.pricing-row__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-row--featured .pricing-row__tier { color: rgba(255,255,255,0.45); }

.pricing-row__name {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.pricing-row--featured .pricing-row__name { color: white; }

.pricing-row__right {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pricing-row__price {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-row--featured .pricing-row__price { color: white; }

.pricing-row__note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 220px;
  text-align: right;
}
.pricing-row--featured .pricing-row__note { color: rgba(255,255,255,0.3); }

.pricing-row__cta { min-width: 160px; }

.pricing-row__audience {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 28px;
  padding-left: 52px;
  line-height: 1.7;
}
.pricing-row--featured .pricing-row__audience { color: rgba(255,255,255,0.5); }

.pricing-row__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 52px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.pricing-pill--accent {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  border-color: transparent;
}
.pricing-row--featured .pricing-pill {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.08);
}
.pricing-row--featured .pricing-pill--accent {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.pricing-footnote {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── Maintenance Banner ─── */
.maintenance-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.maintenance-banner__price {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
}
.maintenance-banner__price span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-muted);
}
.maintenance-banner__desc {
  font-size: 15px;
  max-width: 300px;
  line-height: 1.7;
}
.maintenance-banner__note {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
  margin-top: 14px;
  font-style: italic;
}

.maintenance-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.maintenance-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.maintenance-pill svg { color: var(--accent); flex-shrink: 0; }

/* ─── Payment Rows ─── */
.payment-rows {
  border-top: 1px solid var(--border);
  margin-bottom: 32px;
}

.payment-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.payment-row__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.payment-row__label span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.payment-row__steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-row__step { display: flex; align-items: center; gap: 12px; }

.payment-row__pct {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.payment-row__desc {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 140px;
  line-height: 1.5;
}

.payment-row__arrow {
  font-size: 18px;
  color: var(--border);
  flex-shrink: 0;
}

.payment-meta {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.payment-meta__item {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
}
.payment-meta__item:last-child { border-right: none; }
.payment-meta__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.payment-meta__value {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── Featured Live Project (AAINA) ─── */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}
.featured-project:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.featured-project__info {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  border-right: 1px solid var(--border);
}

.featured-project__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #16a34a; margin-bottom: 14px;
}
.live-dot {
  width: 7px; height: 7px; background: #16a34a;
  border-radius: 50%; animation: availPulse 2s ease-in-out infinite; flex-shrink: 0;
}

.featured-project__type {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.featured-project__name {
  font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.0; color: var(--text); margin-bottom: 18px;
}
.featured-project__desc {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
  max-width: 440px; margin-bottom: 24px;
}
.featured-project__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.featured-project__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--accent);
  transition: gap 0.2s ease;
}
.featured-project:hover .featured-project__cta { gap: 12px; }

.featured-project__visual {
  background: linear-gradient(160deg, #f8f3ed 0%, #fffaf5 45%, #f5ebe3 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 32px 24px 0;
}

.dash-mock {
  width: 100%; max-width: 420px;
  display: grid; grid-template-columns: 52px 1fr;
  height: 100%;
  background: rgba(255,255,255,0.6);
  border-radius: 12px 12px 0 0; overflow: hidden;
  border: 1px solid rgba(234,215,201,0.8); border-bottom: none;
  box-shadow: 0 20px 60px rgba(68,45,34,0.15);
}
.dash-mock__sidebar {
  background: linear-gradient(180deg, #4b3028 0%, #2a1b17 100%);
  padding: 14px 8px; display: flex; flex-direction: column; gap: 16px;
}
.dash-mock__brand { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 10px; margin-bottom: 4px; }
.dash-mock__navitems { display: flex; flex-direction: column; gap: 6px; }
.dash-mock__nav-item { height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.dash-mock__nav-item.active { background: rgba(255,255,255,0.55); }
.dash-mock__main {
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, #f8f3ed 0%, #fffaf5 100%);
}
.dash-mock__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 8px; border-bottom: 1px solid rgba(234,215,201,0.8);
}
.dash-mock__stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.dash-mock__stat {
  padding: 8px 6px; background: rgba(255,255,255,0.8);
  border: 1px solid rgba(234,215,201,0.8); border-radius: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-mock__stat.warn { background: rgba(255,241,213,0.8); }
.dash-mock__stat.danger { background: rgba(253,229,225,0.8); }
.dms-icon { width: 14px; height: 14px; background: rgba(111,70,54,0.2); border-radius: 4px; }
.dms-num { width: 22px; height: 9px; background: rgba(59,39,33,0.35); border-radius: 2px; }
.dms-lbl { width: 28px; height: 5px; background: rgba(139,123,114,0.3); border-radius: 2px; }
.dash-mock__table { display: flex; flex-direction: column; gap: 0; flex: 1; }
.dash-mock__thead {
  display: flex; gap: 8px; align-items: center; padding: 7px 8px;
  background: rgba(255,247,239,0.9); border: 1px solid rgba(234,215,201,0.8);
  border-radius: 6px 6px 0 0;
}
.dash-mock__row {
  height: 24px; border-bottom: 1px solid rgba(234,215,201,0.6);
  background: rgba(255,255,255,0.7);
}
.dash-mock__row:nth-child(odd) { background: rgba(255,250,245,0.7); }

/* ─── Browser window preview (Haven Cafe) ─── */
.haven-visual {
  background: linear-gradient(160deg, #1a0f0a 0%, #2d1e16 100%);
  padding: 32px 28px 0;
  align-items: flex-start;
}

.browser-window {
  width: 100%;
  max-width: 460px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.browser-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: #2a2a2a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Site preview content */
.site-preview { background: #f9f6f1; }

/* Nav */
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(26,15,10,0.06);
  gap: 12px;
}
.sp-nav__logo { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.sp-nav__icon { width: 14px; height: 14px; background: #c47d4e; border-radius: 3px; opacity: 0.85; }
.sp-nav__wordmark { width: 36px; height: 6px; background: rgba(26,15,10,0.55); border-radius: 2px; }
.sp-nav__links { display: flex; gap: 10px; }
.sp-nav__links div { width: 22px; height: 4px; background: rgba(26,15,10,0.18); border-radius: 2px; }
.sp-nav__cta { width: 60px; height: 20px; background: #c47d4e; border-radius: 100px; opacity: 0.9; flex-shrink: 0; }

/* Hero */
.sp-hero {
  position: relative;
  height: 200px;
  background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 40%;
  display: flex; align-items: center;
}
.sp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(26,15,10,0.82) 0%, rgba(26,15,10,0.62) 100%);
}
.sp-hero__content {
  position: relative; z-index: 1;
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 7px;
}
.sp-hero__badge { width: 90px; height: 13px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; }
.sp-hero__h1 { width: 70%; height: 10px; background: rgba(255,255,255,0.75); border-radius: 2px; }
.sp-hero__h1--em { width: 50%; height: 10px; background: rgba(196,125,78,0.8); border-radius: 2px; }
.sp-hero__sub { width: 62%; height: 6px; background: rgba(255,255,255,0.35); border-radius: 2px; }
.sp-hero__sub--short { width: 48%; height: 6px; background: rgba(255,255,255,0.22); border-radius: 2px; }
.sp-hero__ctas { display: flex; gap: 7px; margin-top: 4px; }
.sp-hero__btn { height: 18px; border-radius: 100px; }
.sp-hero__btn--fill { width: 64px; background: #c47d4e; }
.sp-hero__btn--outline { width: 64px; background: transparent; border: 1px solid rgba(255,255,255,0.3); }

/* Marquee strip */
.sp-strip { height: 22px; background: #c47d4e; display: flex; align-items: center; padding: 0 12px; overflow: hidden; }
.sp-strip__items { display: flex; gap: 14px; }
.sp-strip__items span { width: 50px; height: 5px; background: rgba(255,255,255,0.45); border-radius: 2px; flex-shrink: 0; }

/* Cards */
.sp-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; padding: 10px;
  background: #f9f6f1;
}
.sp-card { background: #fff; border-radius: 7px; overflow: hidden; box-shadow: 0 1px 6px rgba(26,15,10,0.08); }
.sp-card__img { height: 60px; position: relative; }
.sp-card__img--1 { background: url('https://images.unsplash.com/photo-1510707577719-ae7c14805e3a?w=300&auto=format&fit=crop&q=70') center/cover; }
.sp-card__img--2 { background: url('https://images.unsplash.com/photo-1461023058943-07fcbe16d735?w=300&auto=format&fit=crop&q=70') center/cover; }
.sp-card__img--3 { background: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=300&auto=format&fit=crop&q=70') center/cover; }
.sp-card__body { padding: 7px 8px; display: flex; flex-direction: column; gap: 4px; }
.sp-card__badge { width: 32px; height: 8px; background: #c47d4e; border-radius: 100px; opacity: 0.8; }
.sp-card__title { width: 80%; height: 6px; background: rgba(26,15,10,0.35); border-radius: 2px; }
.sp-card__text { width: 100%; height: 4px; background: rgba(26,15,10,0.12); border-radius: 2px; }
.sp-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 3px; }
.sp-card__price { width: 28px; height: 7px; background: rgba(196,125,78,0.65); border-radius: 2px; }
.sp-card__add { width: 14px; height: 14px; background: rgba(26,15,10,0.08); border-radius: 50%; }

@media (max-width: 900px) {
  .featured-project { grid-template-columns: 1fr; min-height: auto; }
  .featured-project__info { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .featured-project__visual { min-height: 260px; padding: 24px 20px 0; }
  .dash-mock__stats { grid-template-columns: repeat(3,1fr); }
}

/* ─── Website Types Card Grid ─── */
.wtype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wtype-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.wtype-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--text-muted);
}
.wtype-card:hover .wtype-card__watermark { color: rgba(44,44,42,0.06); }

.wtype-card__watermark {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(44,44,42,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
}

.wtype-card__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.wtype-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  position: relative;
  z-index: 1;
}

.wtype-card__price {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s;
}
.wtype-card:hover .wtype-card__price {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) { .wtype-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wtype-grid { grid-template-columns: 1fr; } }

/* ─── Studio Service Cards ─── */
.studio-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.studio-service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.studio-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.studio-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border);
}
.studio-service-card:hover::after { transform: scaleX(1); }

.studio-service-card__icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.studio-service-card:hover .studio-service-card__icon {
  background: var(--accent);
  color: white;
}

.studio-service-card__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.studio-service-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 900px) { .studio-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .studio-services-grid { grid-template-columns: 1fr; } }

/* ─── Portfolio Card ─── */
.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.portfolio-card__visual {
  width: 100%;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.portfolio-card__visual .browser-window { max-width: 700px; }

.portfolio-card__footer {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.portfolio-card__left { flex-shrink: 0; }

.portfolio-card__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 5px;
}

.portfolio-card__name {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}

.portfolio-card__type {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s ease;
}
.portfolio-card:hover .portfolio-card__cta { gap: 10px; }

@media (max-width: 768px) {
  .portfolio-card__visual { height: 280px; }
  .portfolio-card__footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .portfolio-card__tags { display: none; }
}

/* ─── Portfolio growing note ─── */
.portfolio-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 3px;
  padding: 20px 28px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.portfolio-note__dot { flex-shrink: 0; }
.portfolio-note p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.portfolio-note a {
  color: var(--accent);
  font-weight: 700;
}
.portfolio-note a:hover { opacity: 0.8; }

/* ─── Website Types List ─── */
.web-types { border-top: 1px solid var(--border); }

.web-type {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.web-type::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.web-type:hover { padding-left: 20px; }
.web-type:hover::before { transform: scaleY(1); }

.web-type__left { display: flex; align-items: flex-start; gap: 20px; }
.web-type__num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-muted); padding-top: 10px; flex-shrink: 0;
  transition: color 0.3s;
}
.web-type:hover .web-type__num { color: var(--accent); }
.web-type__name {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1; color: var(--text);
}
.web-type__right { display: flex; flex-direction: column; gap: 16px; }
.web-type__desc {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin: 0;
}
.web-type__price {
  display: inline-flex; align-self: flex-start;
  padding: 5px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s;
}
.web-type:hover .web-type__price { border-color: var(--accent); color: var(--accent); }

@media (max-width: 768px) {
  .web-type { grid-template-columns: 1fr; gap: 16px; }
  .web-type:hover { padding-left: 12px; }
}

/* ─── Pricing responsive ─── */
@media (max-width: 900px) {
  .pricing-row--featured { margin: 20px 0; padding: 40px 32px; }
  .pricing-row__top { grid-template-columns: 1fr; gap: 24px; }
  .pricing-row__right { align-items: flex-start; text-align: left; }
  .pricing-row__note { text-align: left; }
  .pricing-row__audience, .pricing-row__pills { padding-left: 0; }
  .maintenance-banner { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .payment-row { grid-template-columns: 1fr; gap: 16px; }
  .payment-meta { flex-direction: column; }
  .payment-meta__item { border-right: none; border-bottom: 1px solid var(--border); }
  .payment-meta__item:last-child { border-bottom: none; }
  .pricing-hero h1 { font-size: clamp(38px, 9vw, 64px); }
}

/* ==========================================
   DESIGN STYLES GRID (Studio page)
   ========================================== */

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

.style-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.style-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* Preview area */
.style-card__preview {
  height: 180px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
}
.style-card__preview--minimal { background: linear-gradient(135deg, #FAFAF9 0%, #F3F2F0 100%); }
.style-card__preview--dark    { background: linear-gradient(135deg, #0F0F0E 0%, #1C1C1A 100%); }
.style-card__preview--warm    { background: linear-gradient(135deg, #FFFBF0 0%, #FEF0D0 100%); }
.style-card__preview--tech    { background: linear-gradient(135deg, #050D20 0%, #0B1A35 100%); }

/* Mini website mockup inside each preview */
.style-mini {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.style-card__preview--minimal .style-mini {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
}
.style-card__preview--warm .style-mini {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(146,64,14,0.1);
}
.style-mini__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 10px;
}
.style-card__preview--minimal .style-mini__nav { border-bottom: 1px solid rgba(0,0,0,0.07); }

/* Info panel */
.style-card__body {
  padding: 24px 28px 28px;
}
.style-card__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.style-card__name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--text);
}
.style-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.style-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.style-card__tags span {
  padding: 4px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .style-grid { grid-template-columns: 1fr; }
  .style-card__preview { height: 140px; }
}

/* ==========================================
   PROCESS PAGE
   ========================================== */

/* ─── Stats strip ─── */
.process-stats-section {
  background: var(--bg-subtle);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.process-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.process-stat-item {
  padding: 28px 24px;
  background: var(--bg);
  text-align: center;
  transition: background 0.25s ease;
}
.process-stat-item:hover { background: var(--bg-subtle); }

.process-stat-item__num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.process-stat-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .process-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── First call grid ─── */
.first-call-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-top: 1px solid var(--border);
}

.first-call-item {
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s ease;
  cursor: default;
}
.first-call-item:last-child { border-right: none; }
.first-call-item:hover { background: var(--bg-subtle); }

.first-call-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.first-call-item__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.first-call-item__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .first-call-grid { grid-template-columns: 1fr; }
  .first-call-item { border-right: none; padding: 28px 24px; }
}
