@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0F1F3D;
  --navy-mid: #1A3460;
  --teal: #1B7A6E;
  --teal-light: #2AA08F;
  --teal-pale: #E8F5F3;
  --gold: #C8A96E;
  --grey-light: #F5F6F8;
  --grey-mid: #E2E5EA;
  --grey-text: #6B7280;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-soft: 0 4px 24px rgba(15,31,61,0.08);
  --shadow-card: 0 8px 40px rgba(15,31,61,0.10);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::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(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ======== NAVIGATION ======== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-soft); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--navy); letter-spacing: -0.2px;
}
.nav-logo-sub {
  font-size: 10px; color: var(--teal); font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--grey-text);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy); background: var(--grey-light);
}
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; color: var(--navy);
}
.nav-hamburger svg { display: block; }

.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 24px; flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 20px; border-radius: 10px;
  font-size: 16px; font-weight: 500; color: var(--navy);
  border: 1px solid var(--grey-mid); text-align: center;
  transition: all 0.2s;
}
.nav-mobile a:hover { background: var(--grey-light); }
.nav-mobile .nav-cta-mobile {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ======== HERO ======== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1B4A6B 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}

.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(27,122,110,0.15);
}
.hero-shape-1 { width: 600px; height: 600px; right: -150px; top: -100px; }
.hero-shape-2 { width: 300px; height: 300px; right: 200px; bottom: 50px; background: rgba(200,169,110,0.1); }
.hero-shape-3 { width: 200px; height: 200px; left: 5%; top: 30%; background: rgba(255,255,255,0.04); }

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  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 {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,122,110,0.25); border: 1px solid rgba(42,160,143,0.4);
  color: #5DD6C8; font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #5DD6C8;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; color: var(--white); line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #5DD6C8, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 40px; max-width: 480px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-primary {
  background: var(--teal-light); color: var(--white);
  box-shadow: 0 4px 20px rgba(42,160,143,0.4);
}
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,160,143,0.45); }
.btn-outline {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.hero-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500;
}
.hero-trust-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(27,122,110,0.3); border: 1px solid rgba(42,160,143,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 14px;
}

.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1s; margin-left: 32px; }
.hero-card:nth-child(3) { animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hcard-label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.hcard-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); }
.hcard-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.hcard-bar { display: flex; gap: 4px; margin-top: 16px; }
.hcard-bar-item {
  flex: 1; border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.hcard-bar-item.filled { background: var(--teal-light); }
.hcard-bar-item.filled-gold { background: var(--gold); }

.hcard-services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hcard-service-tag {
  background: rgba(27,122,110,0.25); border: 1px solid rgba(42,160,143,0.3);
  color: #5DD6C8; font-size: 11px; font-weight: 500;
  padding: 6px 10px; border-radius: 6px; text-align: center;
}

/* ======== SECTIONS ======== */
.section { padding: 100px 24px; }
.section-sm { padding: 60px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 20px;
}
.section-title span { color: var(--teal); }
.section-desc {
  font-size: 16px; color: var(--grey-text); line-height: 1.75;
  max-width: 580px;
}
.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ======== INTRO STRIP ======== */
.intro-strip {
  background: var(--grey-light);
  padding: 60px 24px;
}
.intro-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.intro-image-block {
  position: relative;
}
.intro-image {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.intro-image-pattern {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    linear-gradient(45deg, rgba(27,122,110,0.5) 0%, transparent 70%);
}
.intro-image-icon {
  font-size: 80px; opacity: 0.3;
}

.intro-image-photo {
  background: var(--navy);
}
.intro-founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.intro-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
}
.intro-badge-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--teal);
}
.intro-badge-text { font-size: 12px; color: var(--grey-text); line-height: 1.3; }

/* ======== SERVICE PREVIEW CARDS ======== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  margin-top: 16px; transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ======== WHY CHOOSE ======== */
.why-section {
  background: var(--navy);
  padding: 100px 24px;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item {
  text-align: center; padding: 32px 24px;
}
.why-number {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  background: linear-gradient(135deg, #5DD6C8, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
}
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ======== PROCESS ======== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 16px; position: relative;
}
.process-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--teal);
  position: relative; z-index: 1; margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.process-step h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ======== CTA SECTION ======== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  padding: 100px 24px; text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--grey-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ======== FOOTER ======== */
footer {
  background: var(--navy);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ======== SERVICES PAGE ======== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 24px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(27,122,110,0.15);
}
.page-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #5DD6C8; margin-bottom: 16px; display: block; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.services-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.service-card-lg {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card-lg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card-lg:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: transparent; }
.service-card-lg:hover::after { transform: scaleX(1); }

.service-icon-lg {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.service-card-lg h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.service-card-lg p { font-size: 15px; color: var(--grey-text); line-height: 1.7; margin-bottom: 20px; }
.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--navy); font-weight: 500;
}
.service-bullets li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ======== PRICING PAGE ======== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--teal); background: var(--navy);
}
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.pricing-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.pricing-card.featured .pricing-icon { background: rgba(27,122,110,0.3); }
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pricing-card.featured .pricing-plan { color: #5DD6C8; }
.pricing-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pricing-card.featured h3 { color: var(--white); }
.pricing-price {
  margin: 20px 0; display: flex; align-items: flex-end; gap: 4px;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1;
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-period { font-size: 14px; color: var(--grey-text); margin-bottom: 6px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-note { font-size: 12px; color: var(--grey-text); margin-bottom: 28px; }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.4); }

.pricing-divider { height: 1px; background: var(--grey-mid); margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--navy); line-height: 1.5;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.pricing-card.featured .feature-check { background: rgba(42,160,143,0.25); color: #5DD6C8; }
.btn-pricing { width: 100%; justify-content: center; }
.btn-teal { background: var(--teal-light); color: var(--white); box-shadow: 0 4px 16px rgba(42,160,143,0.35); }
.btn-teal:hover { background: var(--teal); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.pricing-disclaimer {
  text-align: center; margin-top: 32px;
  background: var(--grey-light); border-radius: var(--radius);
  padding: 20px 32px; font-size: 14px; color: var(--grey-text); line-height: 1.6;
}
.pricing-disclaimer strong { color: var(--navy); }

/* ======== FAQ ======== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-mid); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--navy); text-align: left; cursor: pointer; transition: background 0.2s;
}
.faq-question:hover { background: var(--grey-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--grey-text); line-height: 1.75;
}

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-trust { grid-template-columns: 1fr; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-badge { bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-steps {
    grid-template-columns: 1fr; gap: 32px;
  }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .pricing-card.featured { order: -1; }
}

@media (max-width: 480px) {
  .section { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .service-card-lg { padding: 28px; }
  .pricing-card { padding: 28px; }
}

/* ======== DEMO REFINEMENTS: founder, local SEO, contact ======== */
.svg-icon { position: relative; }
.svg-icon span,
.svg-icon::before,
.svg-icon::after { content:''; display:block; position:absolute; border-color:currentColor; }
.svg-icon span { width:14px; height:14px; border:2px solid currentColor; border-radius:50%; }
.svg-icon.globe span { border-radius:50%; }
.svg-icon.globe::before { width:16px; height:2px; background:currentColor; left:8px; top:15px; opacity:.65; }
.svg-icon.globe::after { width:2px; height:16px; background:currentColor; left:15px; top:8px; opacity:.65; }
.svg-icon.briefcase span { width:16px; height:12px; border:2px solid currentColor; border-radius:3px; }
.svg-icon.briefcase::before { width:8px; height:4px; border:2px solid currentColor; border-bottom:0; left:12px; top:8px; border-radius:3px 3px 0 0; }
.svg-icon.pin span { width:14px; height:14px; border:2px solid currentColor; border-radius:50% 50% 50% 0; transform:rotate(-45deg); }
.svg-icon.pin::before { width:4px; height:4px; background:currentColor; border-radius:50%; left:14px; top:14px; }

.founder-section { background: var(--white); padding: 100px 24px; }
.founder-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:72px; align-items:center; }
.founder-photo-card { position:relative; max-width:430px; }
.founder-photo-placeholder { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--teal)); display:flex; align-items:center; justify-content:center; overflow:hidden; box-shadow: var(--shadow-card); position:relative; }
.founder-photo { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.founder-photo-placeholder::before { content:''; position:absolute; inset:28px; border:1px solid rgba(255,255,255,.16); border-radius:18px; }
.founder-photo-placeholder span { width:120px; height:120px; border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.24); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:42px; font-weight:700; letter-spacing:-1px; }
.founder-mini-card { position:absolute; right:-24px; bottom:28px; background:var(--white); border:1px solid var(--grey-mid); border-radius:var(--radius); padding:18px 20px; box-shadow:var(--shadow-card); max-width:220px; }
.founder-mini-card strong { display:block; font-family:var(--font-display); color:var(--teal); font-size:28px; line-height:1; }
.founder-mini-card span { display:block; color:var(--grey-text); font-size:13px; line-height:1.45; margin-top:6px; }
.founder-desc { margin-bottom:20px; }
.founder-copy { color:var(--grey-text); font-size:16px; line-height:1.8; margin-bottom:28px; }
.founder-tags { display:flex; flex-wrap:wrap; gap:10px; }
.founder-tags span { background:var(--teal-pale); color:var(--teal); border:1px solid rgba(27,122,110,.15); border-radius:999px; padding:8px 12px; font-size:13px; font-weight:600; }

.local-section { background:var(--grey-light); padding:80px 24px; }
.local-card { background:var(--white); border:1px solid var(--grey-mid); border-radius:var(--radius-lg); padding:48px; display:grid; grid-template-columns:1.2fr .8fr; gap:48px; align-items:center; box-shadow:var(--shadow-soft); }
.local-card p { color:var(--grey-text); line-height:1.8; font-size:16px; }
.local-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.local-list span { background:var(--grey-light); border:1px solid var(--grey-mid); border-radius:10px; padding:12px 14px; color:var(--navy); font-size:14px; font-weight:600; text-align:center; }

.contact-section { background:var(--white); padding:100px 24px; }
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:64px; align-items:start; }
.contact-info-card { margin-top:32px; background:var(--grey-light); border:1px solid var(--grey-mid); border-radius:var(--radius-lg); padding:28px; display:grid; gap:18px; }
.contact-info-card div { display:grid; gap:4px; }
.contact-info-card strong { color:var(--navy); font-size:13px; text-transform:uppercase; letter-spacing:.8px; }
.contact-info-card span { color:var(--grey-text); font-size:15px; }
.contact-form { background:var(--grey-light); border:1px solid var(--grey-mid); border-radius:var(--radius-lg); padding:32px; display:grid; grid-template-columns:1fr 1fr; gap:18px; box-shadow:var(--shadow-soft); }
.contact-form label { display:grid; gap:8px; color:var(--navy); font-size:13px; font-weight:700; }
.contact-form input, .contact-form textarea { width:100%; border:1px solid var(--grey-mid); border-radius:10px; padding:13px 14px; font:inherit; color:var(--navy); background:var(--white); outline:none; transition:border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(27,122,110,.12); }
.contact-form .full { grid-column:1 / -1; }

@media (max-width: 900px) {
  .founder-grid, .local-card, .contact-grid { grid-template-columns:1fr; gap:36px; }
  .founder-photo-card { max-width:100%; }
  .founder-mini-card { right:16px; }
}
@media (max-width: 640px) {
  .founder-section, .contact-section { padding:72px 20px; }
  .local-section { padding:60px 20px; }
  .local-card, .contact-form { padding:24px; }
  .contact-form, .local-list { grid-template-columns:1fr; }
}
