/* ===========================
   CHARLYN MAE TEODORO — PREMIUM SITE
   Design: Refined Medical Professional
   Palette: Deep Navy + Warm Ivory + Sage Green accents
   =========================== */

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

:root {
  --navy:      #0d1f35;
  --navy-mid:  #162d4a;
  --navy-light:#1e3a5f;
  --ivory:     #faf8f3;
  --ivory-mid: #f2ede3;
  --sage:      #5a8a72;
  --sage-light:#7aaa90;
  --gold:      #c8a96e;
  --text:      #1a1a2e;
  --text-mid:  #4a5568;
  --text-light:#718096;
  --white:     #ffffff;
  --border:    rgba(13,31,53,0.10);

  --ff-serif: 'DM Serif Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13,31,53,0.08);
  --shadow-lg: 0 12px 48px rgba(13,31,53,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-family: var(--ff-serif); font-style: italic; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,31,53,0.2); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(13,31,53,0.04); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* SECTION LABELS */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sage);
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 400;
}
.dot { color: var(--sage); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--navy-light); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 4px;
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--sage);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -100px; left: 10%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--sage-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90,138,114,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(90,138,114,0); }
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .reveal-line {
  display: block;
}
.hero-title .italic-serif {
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-actions .btn-primary { background: var(--sage); border-color: var(--sage); }
.hero-actions .btn-primary:hover { background: var(--sage-light); border-color: var(--sage-light); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee-wrap {
  background: var(--ivory-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.marquee-track .sep { color: var(--sage); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
}
.about-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.avatar-initials {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--white);
}
.about-card-name {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  text-align: center;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-card-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.about-card-location,
.about-card-tz {
  font-size: 0.83rem;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 4px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}
.about-tags span {
  background: var(--ivory-mid);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  border: 1px solid var(--border);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.exp-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.exp-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-content p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.about-highlights {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}
.highlight-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--navy); }
.services .section-label { color: var(--sage-light); }
.services .section-title { color: var(--white); }
.services .section-title em { color: var(--gold); }
.services .section-sub { color: rgba(255,255,255,0.55); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.07);
}
.service-card--featured {
  background: rgba(90,138,114,0.15);
  border-color: rgba(90,138,114,0.35);
}
.service-featured-label {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 40px;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 100%; height: 100%;
  stroke: var(--sage-light);
}
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-light);
  font-size: 0.8rem;
}

.tools-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.tools-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tools-list span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 40px;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio { background: var(--ivory-mid); }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.workflow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.workflow-card:hover { transform: translateY(-3px); }
.workflow-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.workflow-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--ivory-mid);
  line-height: 1;
  font-weight: 400;
}
.workflow-header h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--navy);
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.step-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid currentColor;
  color: var(--border);
  margin-top: 5px;
}
.step-dot.active { background: var(--sage); border-color: var(--sage); }

/* ===========================
   WHY ME
   =========================== */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-title { margin-bottom: 16px; }
.why-left p { color: var(--text-mid); margin-bottom: 32px; font-size: 0.97rem; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-item { position: relative; }
.why-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: var(--ivory-mid);
  line-height: 1;
  margin-bottom: 8px;
}
.why-content h4 {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-content p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--navy-light);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(90,138,114,0.2) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner-text h2 em { color: var(--gold); }
.cta-banner-text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
}
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 16px; }
.contact-left > p { color: var(--text-mid); margin-bottom: 32px; font-size: 0.97rem; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.ci-icon { font-size: 1rem; width: 24px; text-align: center; }
.contact-info-item a { color: var(--sage); }
.contact-info-item a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,138,114,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
}
.contact-form .btn { margin-top: 6px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.back-top {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.back-top:hover { color: var(--white); }

/* ===========================
   ANIMATIONS
   =========================== */
.reveal-line,
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
.reveal-line:nth-child(1) { animation-delay: 0.1s; }
.reveal-line:nth-child(2) { animation-delay: 0.25s; }
.reveal-line:nth-child(3) { animation-delay: 0.4s; }
.hero-sub.reveal-up { animation-delay: 0.55s; }
.hero-actions.reveal-up { animation-delay: 0.7s; }
.hero-stats.reveal-up { animation-delay: 0.85s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .workflow-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; gap: 24px; }
  .about-visual { max-width: 360px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 24px; }
  .stat-div { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 20px 60px; }
  .container { padding: 0 20px; }
  .cta-banner-inner { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}
