/* ============================================================
   McCoy Leadership — Main Stylesheet
   Brand: McCoy Blue #0072BC | Sky Blue #19B1E7
   Charcoal #58585A | Silver #A7A9AC
   Warm & Relational aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --blue:        #0072BC;
  --sky:         #19B1E7;
  --charcoal:    #58585A;
  --silver:      #A7A9AC;
  --black:       #000000;
  --white:       #FFFFFF;
  --warm-bg:     #F8F6F2;
  --warm-light:  #FDF9F4;
  --blue-dark:   #005a96;
  --text:        #3a3a3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:   'Source Sans 3', 'Helvetica Neue', sans-serif;
  --shadow:      0 4px 24px rgba(0,114,188,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --radius:      10px;
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--blue);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--charcoal); }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--charcoal); }
p  { margin-bottom: 1rem; color: var(--charcoal); }
strong { color: var(--text); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,114,188,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sky {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.btn-sky:hover {
  background: #15a0d4;
  border-color: #15a0d4;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,114,188,0.10);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
}
.nav-logo .logo-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > span:hover,
.nav-menu > li > a.active {
  color: var(--blue);
  background: rgba(0,114,188,0.07);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,114,188,0.12);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 0.5rem;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: rgba(0,114,188,0.07);
  color: var(--blue);
}

.nav-cta {
  margin-left: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* Nav phone */
.nav-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-phone::before {
  content: '📞';
  font-size: 0.75rem;
}

/* ── Page Hero Sections ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #005090 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero .section-label { color: var(--sky); }
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0.75rem auto 0; position: relative; }

/* ── Home Hero ──────────────────────────────────────────── */
.home-hero {
  background: linear-gradient(135deg, #004e8a 0%, var(--blue) 50%, #0089d6 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(25,177,231,0.18) 0%, transparent 70%);
}
.home-hero-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-hero-text .section-label { color: rgba(255,255,255,0.7); }
.home-hero-text h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.25rem;
}
.home-hero-text h1 em {
  font-style: italic;
  color: var(--sky);
}
.home-hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
}
.hero-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hero-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.hero-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

/* ── Section Patterns ───────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

.bg-warm { background: var(--warm-bg); }
.bg-warm-light { background: var(--warm-light); }
.bg-blue { background: var(--blue); }
.bg-blue-grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,114,188,0.08);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  background: rgba(0,114,188,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ── Grid Layouts ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ── Trust Bar / Certifications ─────────────────────────── */
.trust-bar {
  background: var(--warm-bg);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,114,188,0.08);
  border-bottom: 1px solid rgba(0,114,188,0.08);
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.trust-item .trust-icon {
  font-size: 1.8rem;
}
.trust-item span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,177,231,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact .contact-icon { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Service Icon Bars ───────────────────────────────────── */
.service-list { margin: 1.25rem 0; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.service-list li::before {
  content: '✦';
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

/* ── Testimonial Cards ───────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sky);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--sky);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
  position: relative;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
}

/* ── DISC Type Cards ─────────────────────────────────────── */
.disc-type {
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.disc-type-d { background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%); border-top: 4px solid #e05050; }
.disc-type-i { background: linear-gradient(135deg, #fffdf0 0%, #fff3c0 100%); border-top: 4px solid #e8b800; }
.disc-type-s { background: linear-gradient(135deg, #f0fff4 0%, #d4edd9 100%); border-top: 4px solid #3a9c5a; }
.disc-type-c { background: linear-gradient(135deg, #f0f4ff 0%, #dce5ff 100%); border-top: 4px solid #0072BC; }

.disc-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  opacity: 0.15;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  line-height: 1;
}
.disc-type h3 { color: var(--text); font-size: 1.15rem; margin-bottom: 0.25rem; }
.disc-type .disc-subtitle { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); margin-bottom: 1rem; opacity: 0.8; }
.disc-trait-list { list-style: none; padding: 0; }
.disc-trait-list li { font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.4rem; display: flex; gap: 0.5rem; }
.disc-trait-list li::before { content: '→'; color: var(--blue); flex-shrink: 0; }

/* ── Stats Row ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-top: 0.35rem;
}

/* ── Speaking Topics ─────────────────────────────────────── */
.topic-pill {
  background: rgba(0,114,188,0.08);
  border: 1px solid rgba(0,114,188,0.2);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
  margin: 0.3rem;
  transition: all var(--transition);
}
.topic-pill:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Process Steps ───────────────────────────────────────── */
.step-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-body h4 { color: var(--blue); margin-bottom: 0.4rem; }

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(0,114,188,0.1);
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin: 0.75rem 0;
}
.pricing-card .price-label { font-size: 0.85rem; color: var(--charcoal); }
.pricing-card ul { margin: 1.5rem 0; text-align: left; }
.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,114,188,0.08);
  font-size: 0.92rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card ul li::before { content: '✓'; color: var(--sky); font-weight: 700; }

/* ── Accordion / FAQ ─────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(0,114,188,0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-q .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 0 1.25rem; font-size: 0.95rem; color: var(--charcoal); }

/* ── Contact Form ────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,114,188,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,114,188,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

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

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 0;
    border-top: 1px solid rgba(0,114,188,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a,
  .nav-menu > li > span {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,114,188,0.04);
    margin-left: 1rem;
    padding: 0.25rem 0;
    display: none;
  }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-cta { display: none; }

  .home-hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; padding: 5rem 1.5rem 3rem; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
