/* =====================================================================
   LOOMSITES — STYLES.CSS
   Recreated to exactly match the Figma Make export's colors, fonts,
   and spacing. Organized top-to-bottom to match index.html.
   ===================================================================== */

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

/* ── EXACT COLORS FROM THE FIGMA EXPORT ──
   These are the precise hex values used in the original design.
   Change a value here to update it everywhere it's used. */
:root {
  --bg-lavender: #f0f1fb;   /* the soft lavender page background (hero, services, how-it-works, footer) */
  --bg-white:    #ffffff;   /* white sections (why, portfolio, testimonials background panels) */
  --ink:         #0d0f2a;   /* near-black navy, used for headlines */
  --body-text:   #5a6090;   /* slate-blue gray, used for paragraph text */
  --body-text-2: #2a2d50;   /* slightly darker gray, used for service bullet points */
  --blue:        #2355f5;   /* MAIN BRAND BLUE */
  --purple:      #6d28d9;   /* MAIN BRAND PURPLE — blue and purple are used together in gradients */
  --purple-2:    #7c3aed;   /* secondary purple used in some gradients */
  --yellow:      #facc15;   /* accent yellow — used for the badge dot and underline swoosh */
  --yellow-text: #92710a;   /* dark gold, used for "eyebrow" labels above headlines */
  --yellow-text-2:#7a5f0a;  /* dark gold, used in the callout box text */
  --border-blue: rgba(35,85,245,0.1);   /* default thin border color used throughout */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-lavender);
  color: var(--ink);
  overflow-x: hidden;
}

/* Headline font — used for all big bold uppercase headlines (h1, h2, stat numbers) */
.hero-headline, .section-h2, .why-h2, .contact-h2,
.stat-value, .service-title, .success-icon + h3, .logo-badge {
  font-family: 'Barlow Condensed', sans-serif;
}

/* =====================================================================
   NAV
   ===================================================================== */
#siteNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}

/* "scrolled" class is added by java.js once the user scrolls past 40px,
   which fades in the frosted-glass background behind the nav bar */
#siteNav.scrolled {
  background: rgba(240,241,251,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-blue);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-badge {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .85rem;
}

.logo-badge-sm { width: 28px; height: 28px; font-size: .72rem; }

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links-desktop a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta-desktop {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .1s;
}

.nav-cta-desktop:hover { opacity: 0.9; }
.nav-cta-desktop:active { transform: scale(0.95); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 8px 24px 24px;
  background: rgba(240,241,251,0.98);
  border-top: 1px solid var(--border-blue);
}

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

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  padding: 4px 0;
}

.mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  /* the soft radial blue/purple glow blended into the lavender background */
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(35,85,245,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(109,40,217,0.10) 0%, transparent 50%),
    var(--bg-lavender);
}

/* faint dot-grid texture across the hero background */
.hero-dotgrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(35,85,245,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 128px;
  width: 100%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(250,204,21,0.15);
  color: var(--yellow-text);
  border: 1px solid rgba(250,204,21,0.4);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

.hero-headline {
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

/* "real people" gradient text in the headline */
.hero-gradient-text {
  background: linear-gradient(135deg, #2355f5 0%, #7c3aed 55%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* "real business" with the hand-drawn yellow underline swoosh beneath it */
.hero-underline-wrap {
  position: relative;
  display: inline-block;
}

.hero-underline-svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: auto;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  transition: opacity .2s, transform .1s;
}

.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.95); }
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--blue);
  border: 1.5px solid rgba(35,85,245,0.2);
  background: rgba(35,85,245,0.05);
  transition: background .2s;
}

.btn-outline:hover { background: rgba(35,85,245,0.1); }

/* hero right side: the team photo card */
.hero-right { position: relative; }

.hero-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e4e6f8;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35,85,245,0.25) 0%, rgba(109,40,217,0.15) 50%, transparent 100%);
}

/* the floating white "Currently Available" card on the bottom of the photo */
.hero-floating-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(35,85,245,0.12);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hfb-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 2px;
}

.hfb-text {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.hfb-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
}

/* decorative soft blurred circles behind the photo card */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

.hero-blob-1 { width: 128px; height: 128px; top: -32px; right: -32px; background: var(--purple); opacity: 0.25; }
.hero-blob-2 { width: 96px; height: 96px; bottom: -32px; left: -32px; background: var(--blue); opacity: 0.2; }

/* =====================================================================
   STATS BAR
   These are example numbers from the original template — NOT real
   LoomSites stats yet. To update: edit the four <p class="stat-value">
   and <p class="stat-label"> pairs directly in index.html under the
   "STATS" comment.
   ===================================================================== */
.stats {
  background: var(--bg-white);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-blue);
}

.stat-item-last { border-right: none; }

.stat-value {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--body-text);
}

/* =====================================================================
   SHARED SECTION STYLES
   ===================================================================== */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow-text);
  margin-bottom: 14px;
}

.section-h2 {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-sub-center {
  font-size: 1rem;
  color: var(--body-text);
  margin-top: 16px;
}

/* =====================================================================
   SERVICES — "Two ways we can help"
   ===================================================================== */
.services {
  padding: 112px 0;
  background: var(--bg-lavender);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(35,85,245,0.1); }

.service-blue   { border: 1.5px solid rgba(35,85,245,0.15); }
.service-purple { border: 1.5px solid rgba(109,40,217,0.15); }

.service-icon-wrap {
  display: inline-flex;
  padding: 12px;
  border-radius: 12px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-blue .service-icon-wrap   { background: rgba(35,85,245,0.1); }
.service-purple .service-icon-wrap { background: rgba(109,40,217,0.1); }

.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-blue .service-tag   { background: rgba(35,85,245,0.08); color: var(--blue); }
.service-purple .service-tag { background: rgba(109,40,217,0.08); color: var(--purple); }

.service-title {
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.service-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 28px;
}

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-points li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--body-text-2);
}

.service-blue .service-points li::marker,
.service-blue .service-points li { }
.service-blue .service-points li   { }
.service-points li { display: flex; gap: 10px; align-items: flex-start; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.service-blue .service-link   { color: var(--blue); }
.service-purple .service-link { color: var(--purple); }

/* =====================================================================
   WHY IT MATTERS
   ===================================================================== */
.why {
  padding: 112px 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-h2 {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 24px;
}

.why-p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 20px;
  max-width: 480px;
}

.why-callout {
  margin-top: 40px;
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(250,204,21,0.1);
  border: 1.5px solid rgba(250,204,21,0.35);
  max-width: 480px;
}

.why-callout-icon { font-size: 1.1rem; flex-shrink: 0; }

.why-callout p {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--yellow-text-2);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: border-color .2s, box-shadow .2s;
}

.why-card:hover {
  border-color: rgba(35,85,245,0.28);
  box-shadow: 0 8px 28px rgba(35,85,245,0.08);
}

.why-card-icon {
  display: inline-flex;
  padding: 10px;
  border-radius: 8px;
  background: rgba(35,85,245,0.08);
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--body-text);
}

/* =====================================================================
   HOW IT WORKS — "Simple. Transparent. Human."
   NOTE: numbered 01-04 because this is a real ordered process —
   each step happens after the one before it.
   ===================================================================== */
.how {
  padding: 112px 0;
  background: var(--bg-lavender);
  border-top: 1px solid rgba(35,85,245,0.08);
}

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

.step { position: relative; }

.step-num {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(35,85,245,0.12), rgba(109,40,217,0.1));
  border: 1.5px solid rgba(35,85,245,0.18);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.step p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--body-text);
}

/* =====================================================================
   PORTFOLIO — "Sites we're proud of"
   NOTE: these are example/placeholder client projects from the original
   template, not real LoomSites work yet. To update: edit the three
   .port-card blocks in index.html (image src, client name, type badge,
   and description) once you have real projects to show.
   ===================================================================== */
.portfolio {
  padding: 112px 0;
  background: var(--bg-white);
}

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.portfolio-cta {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

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

.port-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(35,85,245,0.1);
  border-color: rgba(35,85,245,0.25);
}

.port-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e4e6f8;
  overflow: hidden;
}

.port-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform .5s;
}

.port-card:hover .port-img-wrap img { transform: scale(1.05); }

.port-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,15,42,0.45) 100%);
}

.port-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;
  backdrop-filter: blur(4px);
}

.port-badge-purple { background: rgba(109,40,217,0.85); }
.port-badge-blue   { background: rgba(35,85,245,0.85); }

.port-body { padding: 24px; }

.port-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.port-body p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--body-text);
}

/* =====================================================================
   TESTIMONIALS — "Straight from our clients"
   NOTE: these are example/placeholder testimonials from the original
   template, not real LoomSites reviews yet. To update: edit the three
   .testimonial-card blocks in index.html (quote, name, role) once you
   have real client feedback to show.
   ===================================================================== */
.testimonials {
  padding: 112px 0;
  background: var(--bg-lavender);
  border-top: 1px solid rgba(35,85,245,0.08);
}

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

.testimonial-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars { color: #facc15; font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: .9rem;
  line-height: 1.7;
  font-style: italic;
  color: #3a3d62;
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(35,85,245,0.08);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  font-size: .78rem;
  color: var(--body-text);
}

/* =====================================================================
   CONTACT — "Ready to build something real?"
   ===================================================================== */
.contact {
  position: relative;
  padding: 112px 0;
  background: var(--bg-white);
}

.contact-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(109,40,217,0.07) 0%, transparent 60%);
}

.contact-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-h2 {
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-form {
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--body-text);
}

.form-group input,
.form-group textarea {
  background: #f8f9ff;
  border: 1.5px solid rgba(35,85,245,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }

.form-group textarea { resize: none; min-height: 110px; }

/* "What Do You Need?" selectable pill buttons */
.type-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.type-option {
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: #f8f9ff;
  color: var(--body-text);
  border: 1.5px solid rgba(35,85,245,0.15);
  transition: all .2s;
}

/* "selected" class is toggled by java.js when a pill is clicked */
.type-option.selected {
  border: 1.5px solid var(--blue);
  background: rgba(35,85,245,0.08);
  color: var(--blue);
}

.form-submit {
  width: 100%;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}

.form-submit:hover { opacity: 0.9; }
.form-submit:active { transform: scale(0.98); }

/* success message shown after the form is submitted — hidden until java.js shows it */
.contact-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.contact-success.visible { display: block; }

.success-icon { font-size: 2.5rem; margin-bottom: 16px; }

.contact-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-success p { font-size: .9rem; color: var(--body-text); }

.contact-details {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--body-text);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  padding: 48px 0;
  background: var(--bg-lavender);
  border-top: 1px solid var(--border-blue);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-tagline {
  font-size: .9rem;
  color: var(--body-text);
  margin-left: 8px;
}

.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-size: .9rem;
  color: var(--body-text);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-copyright { font-size: .78rem; color: #9095c0; }

/* =====================================================================
   MOBILE RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links-desktop, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: block; }

  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }

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

  .form-row { grid-template-columns: 1fr; }
  .type-options { grid-template-columns: 1fr; }

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