/* ============================================
   Secure Start Partners - Shared Stylesheet
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Core palette - Deep slate with teal accents */
  --background: hsl(210 20% 98%);
  --foreground: hsl(222 47% 11%);

  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222 47% 11%);

  --primary: hsl(222 47% 11%);
  --primary-foreground: hsl(210 40% 98%);

  --secondary: hsl(210 20% 96%);
  --secondary-foreground: hsl(222 47% 11%);

  --muted: hsl(210 20% 96%);
  --muted-foreground: hsl(215 16% 47%);

  --accent: hsl(173 58% 39%);
  --accent-foreground: hsl(0 0% 100%);
  --accent-glow: hsl(187 72% 45%);

  --destructive: hsl(0 84% 60%);
  --destructive-foreground: hsl(210 40% 98%);

  --border: hsl(214 32% 91%);
  --input: hsl(214 32% 91%);
  --ring: hsl(173 58% 39%);
  --radius: 0.75rem;

  /* Hero */
  --hero-bg: hsl(222 47% 8%);
  --hero-foreground: hsl(210 40% 98%);

  /* Section alt */
  --section-alt: hsl(210 20% 96%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(222 47% 8%) 0%, hsl(222 47% 15%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(173 58% 39%) 0%, hsl(187 72% 45%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 20% 98%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(222 47% 11% / 0.1), 0 2px 4px -2px hsl(222 47% 11% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(222 47% 11% / 0.1), 0 4px 6px -4px hsl(222 47% 11% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(222 47% 11% / 0.1), 0 8px 10px -6px hsl(222 47% 11% / 0.1);
  --shadow-accent: 0 10px 40px -10px hsl(173 58% 39% / 0.4);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.min-h-screen {
  min-height: 100vh;
}

/* ---- Gradient & Effect Classes ---- */
.hero-section {
  background: var(--gradient-hero);
}

.accent-gradient {
  background: var(--gradient-accent);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-accent:active {
  transform: scale(0.98);
}

.btn-hero {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-accent);
  font-size: 1rem;
  padding: 1.5rem 2rem;
  height: auto;
}

.btn-hero:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  height: auto;
  font-weight: 600;
}

.btn-ghost:hover {
  background: hsl(173 58% 39% / 0.1);
}

.btn-lg {
  height: 2.75rem;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
}

/* ---- SVG Icons (inline) ---- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  width: 100%;
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding-top: 55px;
  padding-bottom: 55px;
}

.header-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-top: 15px;
}

.header-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .header-links {
    display: flex;
  }
}

.header-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: hsl(210 40% 98% / 0.8);
  transition: color 0.2s;
}

.header-links a:hover,
.header-links a.active {
  color: var(--hero-foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hero-foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  animation: fadeIn 0.3s ease-out;
}

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

.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: hsl(210 40% 98% / 0.8);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--hero-foreground);
  background: hsl(210 40% 98% / 0.1);
}

.mobile-menu .btn-accent {
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand-tagline {
  color: hsl(210 40% 98% / 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: hsl(210 40% 98% / 0.6);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--accent);
}

.footer-socials svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: hsl(210 40% 98% / 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid hsl(210 40% 98% / 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: hsl(210 40% 98% / 0.5);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: hsl(210 40% 98% / 0.5);
  transition: color 0.2s;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--hero-foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(210 40% 98% / 0.7);
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ============================================
   PAGE HERO (About, Resources, Contact)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-hero .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--hero-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.25rem;
  color: hsl(210 40% 98% / 0.7);
}

/* ============================================
   SECTION: VALUE PROPOSITION
   ============================================ */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.bg-background {
  background-color: var(--background);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-section-alt {
  background-color: var(--section-alt);
}

.bg-muted-30 {
  background-color: hsl(210 20% 96% / 0.3);
}

/* Benefits Grid (ValueProposition) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

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

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.benefit-card p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  padding-top: 0.5rem;
}

.section-footer {
  text-align: center;
}

.section-footer p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.section-footer strong {
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================
   SECTION: WHY SECURE START
   ============================================ */
.reasons-grid-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reasons-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reasons-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 1.5rem auto 0;
}

@media (min-width: 640px) {
  .reasons-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reason-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.reason-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(173 58% 39% / 0.3);
}

.reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(173 58% 39% / 0.1);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: hsl(173 58% 39% / 0.2);
}

.reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.reason-card h3 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   SECTION: WHO WE WORK WITH (Client Profiles)
   ============================================ */
.gradient-bg-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--background), var(--section-alt));
}

.gradient-bg-section .decorative-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsl(173 58% 39% / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.gradient-bg-section .decorative-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(222 47% 11% / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.client-card {
  position: relative;
}

.client-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(to right, hsl(173 58% 39% / 0.5), hsl(222 47% 11% / 0.5));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(4px);
}

.client-card:hover .client-card-glow {
  opacity: 1;
}

.client-card-inner {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid hsl(214 32% 91% / 0.5);
}

.client-card-icon {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.client-card:hover .client-card-icon {
  transform: scale(1.1) rotate(3deg);
}

.client-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.client-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  font-weight: 500;
}

.client-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.client-card-inner > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding-right: 2rem;
}

.outcome-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: hsl(173 58% 39% / 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   SECTION: SERVICES OVERVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: hsl(173 58% 39% / 0.3);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-bullets li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   SECTION: HOW WE WORK
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(222 47% 11% / 0.2);
  margin-bottom: 1rem;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(222 47% 11% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--muted-foreground);
}

/* ============================================
   SECTION: FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta .decorative-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(48px);
  opacity: 0.1;
}

.final-cta .decorative-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(48px);
  opacity: 0.1;
}

.final-cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--hero-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta h2 {
    font-size: 3rem;
  }
}

.final-cta p {
  font-size: 1.25rem;
  color: hsl(210 40% 98% / 0.7);
  margin-bottom: 2.5rem;
}

/* ============================================
   ABOUT PAGE: FOUNDERS
   ============================================ */
.founders-section {
  max-width: 64rem;
  margin: 0 auto;
}

.founder-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.founder-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .founder-row {
    flex-direction: row;
  }

  .founder-row.reverse {
    flex-direction: row-reverse;
  }
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo-inner {
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--muted);
  border: 4px solid hsl(173 58% 39% / 0.2);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .founder-photo-inner {
    width: 20rem;
    height: 20rem;
  }
}

.founder-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-bio {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .founder-bio {
    text-align: left;
  }
}

.founder-bio h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.founder-bio .role {
  font-size: 1.125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  margin-bottom: 1.5rem;
}

.founder-linkedin:hover {
  color: var(--accent);
}

.founder-linkedin svg {
  width: 1.25rem;
  height: 1.25rem;
}

.founder-linkedin span {
  font-size: 0.875rem;
  font-weight: 500;
}

.founder-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-bio-text p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .resource-card {
    flex-direction: row;
  }
}

.resource-card:hover {
  border-color: hsl(173 58% 39% / 0.3);
  box-shadow: var(--shadow-lg);
}

.resource-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: hsl(173 58% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.resource-card:hover .resource-icon {
  background: hsl(173 58% 39% / 0.2);
}

.resource-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.resource-content {
  flex: 1;
}

.resource-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.resource-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.resource-download:hover {
  gap: 0.75rem;
}

.resource-download svg {
  width: 1rem;
  height: 1rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(173 58% 39% / 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-option-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-option-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-option-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option-icon.accent-bg {
  background: var(--gradient-accent);
}

.contact-option-icon.accent-light {
  background: hsl(173 58% 39% / 0.1);
}

.contact-option-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-option-icon.accent-bg svg {
  color: var(--accent-foreground);
}

.contact-option-icon.accent-light svg {
  color: var(--accent);
}

.contact-option-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-option-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-email-link {
  color: var(--accent);
  font-weight: 600;
}

.contact-email-link:hover {
  text-decoration: underline;
}

.response-time-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--section-alt);
}

.response-time-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.response-time-box strong {
  color: var(--foreground);
  font-weight: 600;
}

/* Thank-you state */
.thank-you {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.thank-you h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.thank-you p {
  color: var(--muted-foreground);
}

/* ============================================
   404 PAGE
   ============================================ */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  text-align: center;
}

.not-found h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.not-found a {
  color: var(--primary);
  text-decoration: underline;
}

.not-found a:hover {
  opacity: 0.9;
}

/* ============================================
   UTILITY: Screen reader only
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
