/* ============================================================
   Amber Studio — Public Website Styles
   amberstudio.ai
   ============================================================ */

/* ── Reset & Base ────────────────────────────────────────── */

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

:root {
  /* Colors */
  --amber:        #C97B2E;
  --amber-deep:   #A85F18;
  --amber-soft:   #F0C98A;
  --amber-pale:   #FEF3E2;
  --cream:        #FBF7F1;
  --white:        #FFFFFF;
  --charcoal:     #1F2933;
  --ink:          #2D2A26;
  --muted:        #6B6259;
  --border:       #E8DDD0;
  --border-light: #F0EAE1;

  /* Typography */
  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-gap: 6rem;
  --container:   72rem;
  --gutter:      1.5rem;

  /* Radius */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(28, 24, 21, 0.08);
  --shadow:    0 4px 16px rgba(28, 24, 21, 0.10);
  --shadow-lg: 0 8px 32px rgba(28, 24, 21, 0.12);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--amber-deep);
}

/* ── Layout ──────────────────────────────────────────────── */

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

section {
  padding: var(--section-gap) 0;
}

/* ── Typography ──────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

p {
  color: var(--muted);
  max-width: 60ch;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro p {
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 123, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}

.btn-outline:hover {
  background: var(--amber-pale);
  color: var(--amber-deep);
  border-color: var(--amber-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--amber-soft);
  color: var(--charcoal);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--border-light);
  gap: 0.25rem;
}

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

.mobile-menu a {
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  padding: 5.5rem 0 5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-subtext {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 50ch;
  margin-top: 1.25rem;
  line-height: 1.65;
  padding-left: 0.875rem;
  border-left: 2px solid var(--amber-soft);
}

.hero-trust {
  margin-top: 2rem;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: none;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  padding: 1rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card:last-child {
  margin-bottom: 0;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.hero-card-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: none;
}

.hero-card--accent {
  background: var(--amber-pale);
  border-color: var(--amber-soft);
}

/* ── Problem ─────────────────────────────────────────────── */

.problem {
  background: var(--white);
}

.problem-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 68ch;
  margin-top: 0.875rem;
  line-height: 1.7;
}

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

.problem-item {
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.problem-icon {
  font-size: 1.4rem;
  margin-bottom: 0.875rem;
  color: var(--amber-soft);
  font-weight: 400;
}

.problem-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.problem-item p {
  font-size: 0.9rem;
  max-width: none;
}

/* ── What We Do ──────────────────────────────────────────── */

.what-we-do {
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.what-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.what-list-icon {
  width: 28px;
  height: 28px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: var(--amber);
}

.what-list-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.what-list-text span {
  font-size: 0.875rem;
  color: var(--muted);
}

.what-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.what-right-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.not-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.not-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.not-icon {
  color: var(--amber-soft);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Services ────────────────────────────────────────────── */

.services {
  background: var(--cream);
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  margin-top: 3rem;
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.services-carousel:active {
  cursor: grabbing;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--amber-soft);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-number {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--amber-soft);
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.375rem;
  color: var(--charcoal);
}

.service-benefit {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--amber);
  max-width: none;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.service-card > p:not(.service-benefit) {
  font-size: 0.875rem;
  max-width: none;
  margin-bottom: 1.125rem;
}

.service-format {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-light);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: var(--shadow);
}

/* ── Packages ────────────────────────────────────────────── */

.packages {
  background: var(--white);
}

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

.package-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--cream);
  position: relative;
}

.package-card--featured {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.package-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.package-for {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: none;
}

.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.package-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: none;
  margin-bottom: 1.5rem;
}

.package-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.package-includes-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.package-includes li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink);
  align-items: flex-start;
}

.package-check {
  color: var(--amber);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.package-outcome {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
  max-width: none;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ── Process ─────────────────────────────────────────────── */

.process {
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border: 2px solid var(--amber-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  margin: 0 auto 1.25rem;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.process-step p {
  font-size: 0.875rem;
  max-width: none;
  text-align: center;
  margin: 0 auto;
}

/* ── Why Amber ───────────────────────────────────────────── */

.why-amber {
  background: var(--white);
}

.why-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 64ch;
  margin-top: 0.875rem;
  line-height: 1.7;
}

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

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  max-width: none;
}

.why-divider {
  width: 32px;
  height: 3px;
  background: var(--amber-soft);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── Founder ─────────────────────────────────────────────── */

.founder {
  background: var(--amber-pale);
  border-top: 1px solid var(--amber-soft);
  border-bottom: 1px solid var(--amber-soft);
}

.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.founder-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: none;
}

.founder-bio {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.founder-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  max-width: none;
}

.founder-role {
  font-size: 0.875rem;
  color: var(--amber-deep);
  max-width: none;
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--amber);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  border-color: var(--amber);
  color: var(--amber);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ── CTA Section ─────────────────────────────────────────── */

.cta-section {
  background: var(--charcoal);
  padding: var(--section-gap) 0;
}

.cta-section .section-label {
  color: var(--amber-soft);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.cta-section .text-center p {
  color: rgba(255, 255, 255, 0.65);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.footer-mark {
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
}

.footer-right {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.375rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--amber-soft);
}

/* ── Utilities ───────────────────────────────────────────── */

.amber { color: var(--amber); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  :root { --section-gap: 4.5rem; }

  .service-card {
    flex: 0 0 calc(50% - 0.625rem);
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  :root { --section-gap: 3.5rem; }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

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

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

  .service-card {
    flex: 0 0 85vw;
    min-width: unset;
  }

  .carousel-controls {
    display: flex;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}
