/* ============================================================
   home.css — index.html only
   GrowMyStudio
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,122,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,112,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
}
.hero-eyebrow-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: .4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.4} 50%{transform:scale(1.6);opacity:0} }

.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); font-weight: 800; margin-bottom: 1.5rem; color: var(--text); }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin-bottom: 2.25rem; line-height: 1.75; }
.hero-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.1rem; font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-note::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--border); }

/* Hero stats bar */
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.hero-stat-label { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30,95,95,.14);
  aspect-ratio: 9/10;
  position: relative;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,95,95,.5) 0%, transparent 50%); }
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.badge-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.badge-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.badge-sub { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.hero-float {
  position: absolute;
  top: 28px; right: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,222,128,.2); }
.float-text { font-size: .75rem; font-weight: 600; color: var(--text); white-space: nowrap; }

/* SVG float animations */
@keyframes svgFloatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes svgFloatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes svgFloatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes svgFloatD { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── LOGOS BAR ── */
.logos {
  padding: 32px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.logos-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.logos-label { font-size: .78rem; font-weight: 600; color: var(--muted); white-space: nowrap; letter-spacing: .05em; text-transform: uppercase; }
.logos-row { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.logo-pill { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .82rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }

/* ── PAIN ── */
.pain { padding: 100px 5%; background: var(--teal); position: relative; overflow: hidden; }
.pain::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
.pain .eyebrow { color: rgba(255,255,255,.45); }
.pain .section-h { color: white; }
.pain .section-sub { color: rgba(255,255,255,.6); max-width: 600px; margin-bottom: 3.5rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pain-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 32px; transition: background .2s, transform .2s; }
.pain-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.pain-card-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 1.5rem; }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: .6rem; }
.pain-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 5%; background: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 4rem; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 30px; left: calc(16.7% + 14px); right: calc(16.7% + 14px); height: 1px; background: var(--border); z-index: 0; }
.how-step { position: relative; z-index: 1; }
.how-num { width: 60px; height: 60px; border-radius: 50%; background: var(--teal-pale); border: 4px solid var(--white); box-shadow: 0 0 0 1px var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: var(--teal); margin-bottom: 1.5rem; }
.how-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.how-step p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── SERVICES ── */
.services { padding: 100px 5%; background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 4rem; }
.svc { background: var(--white); border-radius: var(--r); padding: 32px; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.svc:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(30,95,95,.1); }
.svc:hover::after { transform: scaleX(1); }
.svc-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.5rem; }
.svc h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.svc p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── ABOUT ── */
.about { padding: 100px 5%; background: var(--bg2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-visual { position: relative; }
.about-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 60px rgba(30,95,95,.12); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--svg { background: transparent; box-shadow: none; overflow: visible; }
.about-chip { position: absolute; bottom: -20px; right: -20px; background: var(--teal); color: white; border-radius: 16px; padding: 20px 24px; box-shadow: 0 12px 32px rgba(30,95,95,.25); }
.about-chip-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-chip-label { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 4px; }
.about-content h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 1.25rem; }
.about-content p { color: var(--muted); font-size: .95rem; line-height: 1.75; margin-bottom: .85rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.25rem; padding-top: 2.25rem; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--teal); }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 3px; }

/* ── FAQ ── */
.faq { padding: 100px 5%; background: var(--white); }
.faq-list { margin-top: 4rem; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: 0 8px 32px rgba(30,95,95,.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); gap: 16px; user-select: none; transition: background .2s; }
.faq-item.open .faq-q { background: var(--teal-pale); color: var(--teal); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; transition: background .2s, transform .3s; color: var(--muted); }
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s; }
.faq-a-inner { padding: 0 28px 22px; font-size: .95rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── CTA ── */
.cta-wrap { padding: 100px 5%; background: var(--bg2); }
.cta-box { max-width: 760px; margin: 0 auto; background: var(--teal); border-radius: 28px; padding: 72px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.cta-box::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(232,112,90,.15); pointer-events: none; }
.cta-box h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,.65); margin-bottom: 2.25rem; font-size: 1rem; position: relative; z-index: 1; }
.btn-cta { background: var(--coral); color: #fff; padding: 1rem 2.25rem; border-radius: 11px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 24px rgba(232,112,90,.4); transition: background .2s, transform .2s, box-shadow .2s; position: relative; z-index: 1; }
.btn-cta:hover { background: var(--coral-d); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(232,112,90,.45); }
.cta-note { margin-top: 1.1rem; font-size: .78rem; color: rgba(255,255,255,.4); position: relative; z-index: 1; }

/* ── CONTACT FORM ── */
.contact { padding: 100px 5%; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.contact-left h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; margin-top: .4rem; }
.contact-left p { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; line-height: 1.75; }
.promises { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.promise { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); }
.promise-check { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-pale); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; flex-shrink: 0; }
.cform { display: flex; flex-direction: column; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.fg input, .fg select, .fg textarea { border: 1.5px solid var(--border); border-radius: var(--rs); padding: .75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text); background: var(--bg); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,95,95,.1); }
.fg textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--coral); color: #fff; border: none; cursor: pointer; padding: .9rem 2rem; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; }
.btn-submit:hover { background: var(--coral-d); transform: translateY(-1px); }
.form-privacy { font-size: .75rem; color: var(--muted); }
.success-msg { display: none; text-align: center; padding: 2rem; color: var(--teal); }
.success-msg.show { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.success-msg h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.success-msg p { font-size: .875rem; color: var(--muted); }

/* ── MOBILE STICKY CTA ── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; padding: 12px 20px; background: rgba(249,250,247,.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--border); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; background: var(--coral); color: #fff; padding: .85rem; border-radius: 11px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; box-shadow: 0 4px 20px rgba(232,112,90,.3); gap: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 100px 5% 80px; }
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-desc { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { aspect-ratio: 16/9; }
  .hero-float { display: none; }
  .pain-grid, .how-grid, .services-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .about-chip { bottom: 16px; right: 16px; }
  .cta-box { padding: 48px 32px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .logos-row { gap: 1rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
  .cform { padding: 24px 20px; }
  .hero-stats { gap: 1.25rem; }
}
