/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #5B7C99;
  --blue-light: #5B8699;
  --blue-pale: #E5F7FF;
  --blue-deep: #405E6B;
  --green: #6B9B80;
  --green-light: #9CB5A5;
  --green-pale: #E8F0EC;
  --cream: #FBF8F5;
  --cream-dark: #F2EDE8;
  --warm-accent: #997B5B;
  --warm-gray: #4A5568;
  --warm-gray-light: #718096;
  --dark: #2D3E4F;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--warm-gray);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(91, 124, 153, 0.10);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--blue);
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.hero-logo {
  height: 280px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(91, 124, 153, 0.08));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95em;
  font-weight: 600;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 180px 40px 80px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-pale);
  z-index: 0;
}

/* Watercolor blobs - hidden */
.watercolor-blob {
  display: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content .hero-logo {
  height: auto;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  filter: none;
}

.hero-tagline {
  font-size: 1.3em;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.05em;
  color: var(--warm-gray-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-image {
  position: relative;
}

.hero-image-placeholder {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--green-pale) 50%, #E5F7FF 100%);
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--warm-gray-light);
  font-size: 1.1em;
  box-shadow: 0 25px 70px rgba(91, 124, 153, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

/* Decorative frame around image */
.hero-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 2px solid var(--blue-light);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(91, 124, 153, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 124, 153, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* === SECTIONS === */
.section {
  padding: 100px 40px;
  position: relative;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15em;
  color: var(--warm-gray-light);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* === INTRO SECTION === */
.intro {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-light), var(--green-light), var(--green-pale));
}

.intro::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 173, 118, 0.05) 100%);
  clip-path: polygon(0 30%, 2% 28%, 4% 25%, 6% 23%, 8% 22%, 10% 22%, 12% 23%, 14% 25%, 16% 28%, 18% 32%, 20% 37%, 22% 42%, 24% 48%, 26% 53%, 28% 58%, 30% 62%, 32% 65%, 34% 67%, 36% 67%, 38% 66%, 40% 65%, 42% 62%, 44% 58%, 46% 53%, 48% 48%, 50% 42%, 52% 37%, 54% 32%, 56% 28%, 58% 25%, 60% 23%, 62% 22%, 64% 22%, 66% 23%, 68% 25%, 70% 28%, 72% 32%, 74% 37%, 76% 42%, 78% 48%, 80% 53%, 82% 58%, 84% 62%, 86% 65%, 88% 67%, 90% 67%, 92% 66%, 94% 65%, 96% 62%, 98% 58%, 100% 53%);
  z-index: 1;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p:first-child {
  font-size: 1.35em;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro-text p:last-child {
  font-size: 1.1em;
  line-height: 1.9;
}

/* === PLACEMENT SECTION === */
.placement {
  background: var(--blue-pale);
  position: relative;
  overflow: hidden;
}

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

.placement-content { z-index: 1; }

.placement-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(91, 124, 153, 0.25);
}

.placement-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  text-align: left;
}

.placement-list {
  list-style: none;
  margin: 28px 0;
}

.placement-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--blue-pale);
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.placement-list li:last-child { border-bottom: none; }

.placement-list .icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}

.placement-note {
  font-size: 0.95em;
  color: var(--warm-gray-light);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--blue-pale);
  line-height: 1.7;
}

.placement-note em { color: var(--blue); font-style: normal; font-weight: 600; }

.placement-image-placeholder {
  background: linear-gradient(150deg, #CBE5F2 0%, #E5F7FF 100%);
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--warm-gray-light);
  box-shadow: 0 20px 60px rgba(91, 124, 153, 0.15);
}

/* === APPROACH SECTION === */
.approach {
  background: linear-gradient(180deg, rgba(229, 247, 255, 0.5) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.approach::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, rgba(196, 149, 106, 0.04) 100%);
  clip-path: polygon(0 20%, 2% 18%, 4% 15%, 6% 13%, 8% 12%, 10% 12%, 12% 13%, 14% 15%, 16% 18%, 18% 22%, 20% 27%, 22% 32%, 24% 38%, 26% 43%, 28% 48%, 30% 52%, 32% 55%, 34% 57%, 36% 57%, 38% 56%, 40% 55%, 42% 52%, 44% 48%, 46% 43%, 48% 38%, 50% 32%, 52% 27%, 54% 22%, 56% 18%, 58% 15%, 60% 13%, 62% 12%, 64% 12%, 66% 13%, 68% 15%, 70% 18%, 72% 22%, 74% 27%, 76% 32%, 78% 38%, 80% 43%, 82% 48%, 84% 52%, 86% 55%, 88% 57%, 90% 57%, 92% 56%, 94% 55%, 96% 52%, 98% 48%, 100% 43%);
  z-index: 0;
}

.approach-items {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(91, 124, 153, 0.15);
}

.approach-item:last-child { border-bottom: none; }

.approach-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(91, 124, 153, 0.2);
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.4em;
}

.approach-item p {
  font-size: 1.1em;
  line-height: 1.6;
  padding-top: 8px;
}

.approach-quote {
  text-align: center;
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  font-style: italic;
  color: var(--blue);
  line-height: 1.6;
}

/* === HELP SECTION === */
.help {
  background: var(--white);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.help-card {
  background: var(--blue-pale);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(91, 124, 153, 0.15);
  border-color: var(--blue);
  background: var(--white);
}

.help-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-pale), var(--green-pale));
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}

.help-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.help-card p {
  font-size: 0.88em;
  color: var(--warm-gray-light);
  line-height: 1.5;
}

.help-disclaimer {
  text-align: center;
  font-size: 0.92em;
  color: var(--warm-gray-light);
  font-style: italic;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--blue-pale);
}

/* === CTA SECTION === */
.cta {
  background: linear-gradient(135deg, #3A5669 0%, #5B7C99 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(91, 134, 153, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(107, 155, 128, 0.12) 0%, transparent 50%);
}

.cta .section-inner { position: relative; z-index: 1; }

.cta h2 {
  color: var(--white);
  font-size: 2.4em;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15em;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
  background: var(--blue-pale);
  color: var(--blue-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* === FOOTER === */
.footer {
  background: #2D3E4F;
  color: rgba(255,255,255,0.6);
  padding: 50px 40px 40px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(91, 134, 153, 0.5) 50%, transparent 100%);
}

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

.footer .logo { color: var(--white); font-size: 1.1em; }
.footer .logo span { color: var(--blue-light); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9em;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-copy {
  font-size: 0.85em;
  margin-top: 20px;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* === ABOUT PAGE SPECIFIC === */
.about-header {
  padding: 180px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-header h1 {
  font-size: 2.8em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

.about-image {
  position: relative;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--green-pale) 50%, #E5F7FF 100%);
  border-radius: 20px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--warm-gray-light);
  font-size: 1.1em;
  box-shadow: 0 25px 70px rgba(91, 124, 153, 0.18);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  animation: shimmer 8s ease-in-out infinite;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 2px solid var(--blue-light);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}

.about-content h2 {
  font-size: 2.2em;
  margin-bottom: 28px;
  color: var(--dark);
}

.about-content p {
  font-size: 1.05em;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--warm-gray);
}

/* === CONTACT PAGE SPECIFIC === */
.contact-header {
  padding: 180px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-light), var(--green-light), var(--green-pale));
}

.contact-header h1 {
  font-size: 2.8em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-header p {
  font-size: 1.2em;
  color: var(--warm-gray-light);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(91, 124, 153, 0.10);
  border: 1px solid rgba(91, 124, 153, 0.08);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--blue-pale);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91, 124, 153, 0.1);
  background: var(--white);
}

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

.contact-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blue-pale);
  text-align: center;
}

.contact-info p {
  font-size: 1.05em;
  margin-bottom: 16px;
  color: var(--warm-gray);
}

.contact-info-note {
  font-size: 0.95em;
  color: var(--warm-gray-light);
  font-style: italic;
  margin-top: 24px;
}

/* === PROCESS SECTION === */
.process {
  background: var(--blue-pale);
  position: relative;
}

.process-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.process-item {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(91, 124, 153, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(91, 124, 153, 0.15);
  border-color: var(--blue);
}

.process-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(91, 124, 153, 0.2);
}

.process-item h3 {
  font-size: 1.4em;
  margin-bottom: 16px;
  color: var(--dark);
}

.process-item p {
  font-size: 1.05em;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content .hero-logo { max-width: 380px; margin: 0 auto 20px; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .placement-grid { grid-template-columns: 1fr; }
  .placement-content h2 { text-align: center; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-content h2 { text-align: left; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .process-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 14px 24px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2em; }
  .menu-toggle { display: flex; z-index: 1001; }
  .section { padding: 70px 24px; }
  .hero { padding: 160px 24px 60px; min-height: auto; }
  .hero-content .hero-logo { max-width: 340px; }
  .hero-tagline { font-size: 1.1em; }
  .section-title { font-size: 1.9em; }
  .help-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .about-header { padding: 160px 24px 60px; }
  .about-header h1 { font-size: 2.2em; }
  .about-grid { gap: 40px; }
  .about-content p { font-size: 1em; }
  .contact-header { padding: 160px 24px 60px; }
  .contact-header h1 { font-size: 2.2em; }
  .contact-form-container { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-content .hero-logo { max-width: 300px; }
  .help-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 32px; font-size: 0.95em; }
  .section-title { font-size: 1.6em; }
  .about-header h1 { font-size: 1.8em; }
  .contact-header h1 { font-size: 1.8em; }
  .process-items { gap: 28px; }
  .process-item { padding: 30px 20px; }
}
