/* ============================================
   Every Detail Painting — Main Stylesheet
   Brand: lime green (action) + sky blue (trust)
   ============================================ */

:root {
  /* Brand colors */
  --lime: #84cc16;
  --lime-dark: #65a30d;
  --lime-light: #d9f99d;
  --sky: #38bdf8;
  --sky-dark: #0284c7;
  --sky-light: #e0f2fe;

  /* Neutrals */
  --navy: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Accents */
  --gold: #facc15;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -8px rgba(15, 23, 42, 0.15);

  /* Type */
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--lime-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p + p { margin-top: 1em; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--sky) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 4px;
  color: var(--slate-500);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}
.dropdown-menu a:hover { background: var(--slate-50); color: var(--lime-dark); }
.nav-cta {
  background: var(--lime);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.menu-toggle { display: none; padding: 8px; color: var(--navy); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-links a:hover { background: var(--slate-50); }
  .menu-toggle { display: block; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: auto; }
  .nav-dropdown > a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, var(--sky-light) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, var(--lime-light) 0%, transparent 50%),
    var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--slate-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate-100) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-light);
  color: var(--lime-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 { margin: 20px 0 16px; }
.hero h1 .highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--lime-light) 50%, var(--lime-light) 100%);
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-700);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
}
.trust-stars span { color: var(--navy); }
.trust-divider { width: 1px; height: 28px; background: var(--slate-300); }
.trust-stat { color: var(--slate-500); font-size: 0.9rem; }
.trust-stat strong { color: var(--navy); display: block; font-size: 1.1rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sky-light) 0%, var(--lime-light) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-visual::after {
  content: 'Your photo here';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--slate-500);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-visual.has-image::after { display: none; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--sky));
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-text strong { display: block; color: var(--navy); font-family: var(--font-display); }
.hero-badge-text span { color: var(--slate-500); font-size: 0.85rem; }

@media (max-width: 900px) {
  .hero { padding: 48px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 500px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--lime-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--slate-300);
}
.btn-secondary:hover {
  border-color: var(--sky);
  color: var(--sky-dark);
  transform: translateY(-2px);
}
.btn-sky {
  background: var(--sky);
  color: white;
  box-shadow: var(--shadow);
}
.btn-sky:hover { background: var(--sky-dark); color: white; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================
   Sections
   ============================================ */
section { padding: 80px 24px; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--lime-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--slate-500); font-size: 1.1rem; }

/* Trust Bar */
.trust-bar {
  background: var(--navy);
  color: white;
  padding: 32px 24px;
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-bar-item strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-bar-item span { color: var(--slate-300); font-size: 0.9rem; }
@media (max-width: 700px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Service grid */
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--lime-light);
  color: var(--lime-dark);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--slate-500); margin-bottom: 16px; }
.service-card a {
  font-weight: 700;
  color: var(--lime-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a::after { content: '→'; transition: transform 0.2s ease; }
.service-card a:hover::after { transform: translateX(4px); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Process / Steps */
.bg-soft { background: var(--slate-50); }
.steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: white;
  color: var(--lime-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 3px solid var(--lime);
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: 0.95rem; }
@media (max-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* Locations grid */
.locations-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--slate-100);
  transition: all 0.2s ease;
  display: block;
  color: var(--slate-700);
}
.location-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--navy);
}
.location-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.location-card span { color: var(--slate-500); font-size: 0.85rem; }
@media (max-width: 900px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

/* Reviews / Testimonials */
.reviews {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--slate-100);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--lime-light);
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.review-text {
  color: var(--slate-700);
  font-size: 0.97rem;
  margin-bottom: 20px;
  position: relative;
}
.review-author { font-weight: 700; color: var(--navy); }
.review-author span { display: block; color: var(--slate-500); font-weight: 500; font-size: 0.85rem; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  color: white;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  opacity: 0.15;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.15;
}
.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: var(--slate-300); font-size: 1.1rem; }
.cta-banner-actions { text-align: right; }
@media (max-width: 800px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { text-align: left; }
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--slate-300);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--slate-300); margin-bottom: 16px; }
.footer-contact a { color: white; font-weight: 700; }
.footer h4 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--slate-300); font-size: 0.9rem; }
.footer ul a:hover { color: var(--lime); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--slate-500);
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   Inner page hero (smaller)
   ============================================ */
.page-hero {
  position: relative;
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--white) 100%);
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
}
.page-hero .breadcrumb {
  color: var(--slate-500);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--slate-500); }
.page-hero .breadcrumb a:hover { color: var(--lime-dark); }
.page-hero h1 { max-width: 800px; margin: 0 auto 16px; }
.page-hero .lede { max-width: 720px; margin: 0 auto 28px; color: var(--slate-700); font-size: 1.1rem; }
.page-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Service & Location content */
.content-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrap h2 { margin-top: 48px; margin-bottom: 16px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { margin-top: 32px; margin-bottom: 12px; }
.content-wrap p, .content-wrap ul li { color: var(--slate-700); font-size: 1.05rem; }
.content-wrap ul { padding-left: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.content-wrap ul li {
  padding-left: 32px;
  position: relative;
}
.content-wrap ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--lime);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 4px;
}
.content-wrap blockquote {
  border-left: 4px solid var(--sky);
  padding: 20px 24px;
  background: var(--sky-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.content-wrap blockquote::before { content: ''; }

/* Sidebar / aside contact card */
.contact-card {
  background: linear-gradient(135deg, var(--lime-light) 0%, var(--sky-light) 100%);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 48px 0;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--slate-700); margin-bottom: 20px; }
.contact-card-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Blog grid */
.blog-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--lime-light), var(--sky-light));
  display: grid;
  place-items: center;
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 600;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { color: var(--slate-500); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin-bottom: 8px; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--lime-dark); }
.blog-card p { color: var(--slate-500); font-size: 0.95rem; flex: 1; }
.blog-card-link { margin-top: 16px; font-weight: 700; color: var(--lime-dark); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-body p { margin-bottom: 18px; line-height: 1.75; }
.article-body h2 { margin: 40px 0 16px; }
.article-body h3 { margin: 32px 0 12px; }
.article-body ul { margin: 16px 0 24px; padding-left: 0; }
.article-body img { border-radius: var(--radius); margin: 24px 0; }
.article-meta { color: var(--slate-500); font-size: 0.9rem; margin-bottom: 8px; }

/* 404 */
.notfound {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-light) 100%);
}
.notfound-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--lime) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.notfound h1 { margin-bottom: 16px; }
.notfound p { color: var(--slate-500); margin-bottom: 32px; max-width: 480px; }

/* Form */
.form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s;
  background: white;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-light);
}
.form-field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease backwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
