@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
  --navy:     #103a63;
  --blue:     #2363a7;
  --sand:     #fad0a0;
  --white:    #ffffff;
  --mid:      #969ca3;
  --warm-gray:#7c7a7b;
  --light-bg: #f7f4f0;
  --light-sand:#fef6ec;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 3.5vw, 36px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 18px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
section { padding: 72px 0; }

/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid #ede9e4;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--warm-gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a.active { color: var(--navy); font-weight: 500; }
.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--sand);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.88; text-decoration: none; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); text-decoration: none; }

.btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline:hover, .btn-outline.featured { background: var(--blue); color: white; text-decoration: none; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}
.section-sub {
  font-size: 16px;
  color: var(--warm-gray);
  font-weight: 300;
  max-width: 560px;
  margin-top: 10px;
}

/* ── HERO ── */
.hero-wrap { background: var(--navy); }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 32px 90px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--sand); font-style: italic; }
.hero p { color: #b8c8d8; font-size: 17px; font-weight: 300; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 32px;
}
.hero-stat { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.hero-stat-num { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 38px; color: var(--sand); line-height: 1; }
.hero-stat-label { font-size: 13px; color: #8aa0b8; font-weight: 300; margin-top: 4px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e8e3dd;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(35,99,167,0.1); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--light-sand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--warm-gray); font-weight: 300; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; }
.why-dot { width: 10px; height: 10px; background: var(--sand); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.why-point h4 { margin-bottom: 4px; font-size: 17px; }
.why-point p { font-size: 14px; color: var(--warm-gray); font-weight: 300; margin: 0; }
.why-quote { background: var(--navy); border-radius: 14px; padding: 40px; }
.why-quote blockquote { font-family: 'Lato', sans-serif; font-weight: 400; font-size: 22px; color: var(--white); line-height: 1.5; font-style: italic; margin-bottom: 20px; }
.why-quote cite { font-size: 13px; color: #8aa0b8; font-style: normal; }

/* ── PRICING ── */
.pricing-section { background: var(--light-sand); }
.pricing-header { text-align: center; }
.pricing-header .section-sub { margin: 10px auto 0; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #e8e3dd;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border: 2px solid var(--blue); }
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-card h3 { font-size: 18px; margin-bottom: 6px; }
.price { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 40px; color: var(--blue); margin: 14px 0 4px; line-height: 1; }
.price span { font-family: 'Lato', sans-serif; font-size: 14px; color: var(--warm-gray); font-weight: 300; }
.pricing-features { list-style: none; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { font-size: 13px; color: var(--warm-gray); display: flex; gap: 10px; font-weight: 300; }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 500; flex-shrink: 0; }

/* ── CTA BAND ── */
.cta-band { background: var(--blue); padding: 64px 0; text-align: center; }
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 28px; font-weight: 300; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 60px 0; }
.page-hero h1 { color: white; margin-bottom: 10px; }
.page-hero p { color: #8aa0b8; font-weight: 300; font-size: 16px; max-width: 500px; margin: 0; }

/* ── SERVICES PAGE ── */
.service-detail { padding: 64px 0; border-bottom: 1px solid #ede9e4; }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.service-detail-grid.flip { direction: rtl; }
.service-detail-grid.flip > * { direction: ltr; }
.service-detail .section-label { margin-bottom: 8px; }
.service-detail h2 { margin-bottom: 16px; }
.service-includes { margin-top: 24px; }
.service-includes h4 { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.service-includes ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-includes li { font-size: 14px; color: var(--warm-gray); display: flex; gap: 10px; font-weight: 300; }
.service-includes li::before { content: '→'; color: var(--sand); font-weight: 500; flex-shrink: 0; }
.service-visual { background: var(--light-bg); border-radius: 14px; padding: 36px 32px; }
.service-visual .big-stat { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 52px; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.service-visual .stat-desc { font-size: 14px; color: var(--warm-gray); font-weight: 300; }
.service-visual .divider { height: 1px; background: #e0dbd4; margin: 24px 0; border: none; }
.service-visual .price-line { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 32px; color: var(--navy); line-height: 1; margin-bottom: 8px; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--light-bg); padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.about-photo {
  background: var(--mid);
  border-radius: 14px;
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; font-weight: 300; text-align: center; padding: 20px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.about-content .founder-title { font-size: 13px; color: var(--blue); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.about-content h1 { margin-bottom: 24px; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cred { background: var(--white); border: 1px solid #e0dbd4; border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--warm-gray); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.value-card { background: var(--white); border-radius: 10px; padding: 24px; border: 1px solid #e8e3dd; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--warm-gray); font-weight: 300; margin: 0; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card { border-radius: 12px; overflow: hidden; border: 1px solid #e8e3dd; transition: box-shadow 0.2s; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(35,99,167,0.1); text-decoration: none; }
.blog-thumb { height: 160px; display: flex; align-items: flex-end; padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; text-transform: uppercase; }
.blog-body { padding: 20px; background: var(--white); }
.blog-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-body p { font-size: 13px; color: var(--warm-gray); font-weight: 300; line-height: 1.6; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: var(--mid); }
.blog-coming { opacity: 0.55; }

/* Blog post page */
.blog-post { max-width: 720px; margin: 0 auto; padding: 64px 32px; }
.blog-post h1 { margin-bottom: 16px; }
.blog-post-meta { font-size: 13px; color: var(--mid); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #ede9e4; }
.blog-post-body h2 { margin: 40px 0 16px; font-size: 26px; }
.blog-post-body h3 { margin: 32px 0 12px; font-size: 20px; }
.blog-post-body p { margin-bottom: 20px; color: var(--text-body); }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 20px 24px; }
.blog-post-body li { margin-bottom: 8px; color: var(--text-body); }
.blog-post-body blockquote { border-left: 4px solid var(--sand); padding: 16px 24px; margin: 24px 0; background: var(--light-sand); border-radius: 0 8px 8px 0; font-style: italic; color: var(--navy); }
.post-cta { background: var(--light-sand); border-radius: 12px; padding: 32px; margin-top: 48px; text-align: center; }
.post-cta h3 { margin-bottom: 10px; }
.post-cta p { font-size: 14px; color: var(--warm-gray); margin-bottom: 20px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: var(--warm-gray); font-weight: 300; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-detail .icon { font-size: 15px; margin-top: 2px; }
.contact-detail span { font-size: 14px; color: var(--warm-gray); font-weight: 300; }
.lead-magnet { background: var(--light-sand); border: 1px solid #e8ddd0; border-radius: 10px; padding: 24px; margin-top: 32px; }
.lead-magnet .section-label { margin-bottom: 8px; }
.lead-magnet p { font-size: 13px; color: var(--warm-gray); font-weight: 300; margin: 0; }
.contact-form { background: var(--light-bg); border-radius: 14px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 12px; font-weight: 500; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e0dbd4; border-radius: 7px;
  font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--white); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--blue); }
.form-row textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 13px;
  background: var(--blue); color: white; border: none;
  border-radius: 7px; font-family: 'Lato', sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy); }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--warm-gray); font-size: 14px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 36px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 17px; color: rgba(255,255,255,0.6); }
.footer-right { text-align: right; }
.footer-right p { font-size: 12px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-right a { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-right a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1/1; max-width: 240px; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.flip { direction: ltr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-right { text-align: center; }
  .nav-links { gap: 16px; }
}
