/* ============================================================
   ZAB TWINS - Static Site Stylesheet
   Fonts: Montserrat (headings/nav), DM Sans (body)
   Colors: --primary--black:#040404, --main-blue:#0085ca,
           --primary--paragraphs:#707070, --white:#fff
   ============================================================ */

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

:root {
  --primary--black: #040404;
  --main-blue: #0085ca;
  --primary--paragraphs: #707070;
  --neutral-100: #f8f8f8;
  --neutral-200: #f1f1f1;
  --neutral-300: #ccc;
  --secondary-1: #252525;
  --secondary-2: #131313;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary--paragraphs);
  background: #fff;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--main-blue);
}

/* ── LAYOUT ── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: opacity .2s, background-color .2s;
  text-align: center;
}
.btn-primary {
  background: var(--main-blue);
  color: var(--primary--black);
  border-color: var(--main-blue);
}
.btn-primary:hover { opacity: .88; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }

/* ── NAV ── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}
.nav-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 999;
}
.nav-logo img { height: 44px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-left: 32px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--main-blue); }
.nav-cta {
  margin-left: 32px;
  background: var(--main-blue);
  color: var(--primary--black) !important;
  border: 1px solid #fff;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary--black);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  background-color: var(--primary--black);
  padding-top: 86px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 80px;
}
.hero-left {
  flex: 1;
  padding-bottom: 80px;
  max-width: 580px;
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--main-blue);
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 16px; }
.hero-desc {
  color: var(--primary--paragraphs);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-arrow-img { width: 80px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-right {
  flex: 0 0 auto;
  width: 40%;
  max-width: 500px;
  align-self: flex-end;
}
.hero-right img {
  width: 100%;
  object-fit: contain;
}

/* Dark page hero (for inner pages) */
.page-hero {
  background-color: var(--primary--black);
  padding: 220px 0 100px;
  position: relative;
}
.page-hero h6 { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 0; }
.page-hero p {
  color: var(--primary--paragraphs);
  margin-top: 20px;
  font-size: 18px;
  max-width: 600px;
}

/* ── SECTIONS (general) ── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--primary--black);
}
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--main-blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary--black);
  margin-bottom: 24px;
}
.section-title.white { color: #fff; }

/* ── RESULTS / STATS ── */
.results-section {
  background: #fff;
  padding: 44px 0;
}
.results-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--main-blue);
  text-align: center;
  margin-bottom: 32px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.result-item { display: flex; align-items: center; gap: 20px; }
.result-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--main-blue);
  line-height: 1;
}
.result-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary--black);
}

/* ── ABOUT ME SECTION ── */
.about-section { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-wrapper img.main-photo {
  width: 100%;
  position: relative;
  z-index: 1;
}
.about-img-wrapper img.bg-dots {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 70%;
  z-index: 0;
}
.about-text .section-label { color: var(--main-blue); }
.about-text h2 { color: var(--primary--black); margin-bottom: 24px; }
.about-text p { margin-bottom: 24px; }

/* ── TEAM ── */
.team-section {
  background: var(--primary--black);
  padding: 100px 0;
}
.team-section h6 { color: var(--main-blue); margin-bottom: 8px; }
.team-section h2 { color: #fff; margin-bottom: 60px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}
.team-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 13px;
  color: var(--primary--paragraphs);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--secondary-2);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h6 { color: var(--main-blue); margin-bottom: 16px; }
.cta-band h2 { color: #fff; max-width: 700px; margin: 0 auto 16px; }
.cta-band p { color: var(--primary--paragraphs); max-width: 600px; margin: 0 auto 40px; }

/* ── SERVICES ── */
.services-section { padding: 80px 0; background: var(--primary--black); }
.services-section .section-label { color: var(--main-blue); }
.services-section h2 { color: #fff; margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.service-card { text-align: center; }
.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.service-card h3 { color: #fff; margin-bottom: 16px; font-size: 20px; }
.service-card p { margin-bottom: 24px; }
.service-card a { color: var(--main-blue); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.service-card a:hover { text-decoration: underline; }

/* ── WHY US ── */
.why-section { padding: 100px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-label { color: var(--main-blue); }
.why-text h2 { color: var(--primary--black); margin-bottom: 24px; }
.why-img-wrapper { position: relative; }
.why-img-wrapper img.main-photo {
  width: 100%;
  position: relative;
  z-index: 1;
}
.why-img-wrapper img.bg-dots {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60%;
  z-index: 0;
}

/* Brian & Arek bios */
.bios-section { padding: 80px 0 100px; }
.bio-block { margin-bottom: 60px; }
.bio-block h3 { color: var(--primary--black); font-size: 32px; margin-bottom: 8px; }
.bio-block h4 { color: var(--main-blue); font-weight: 600; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-size: 18px; }
.bio-block p { max-width: 640px; }

/* ── OFFERINGS / FREE RESOURCES ── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.offering-card {
  border: 1px solid var(--neutral-300);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.offering-card img { width: 100%; max-height: 280px; object-fit: cover; }
.offering-card h3 { color: var(--primary--black); font-size: 22px; }
.offering-card p { flex: 1; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 0; background: #fff; }
.testimonials-section .section-label { color: var(--main-blue); }
.testimonials-section h2 { color: var(--primary--black); margin-bottom: 60px; }
.featured-testimonial {
  background: var(--neutral-100);
  padding: 60px;
  margin-bottom: 60px;
}
.featured-testimonial blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary--black);
  line-height: 1.5;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}
.featured-testimonial cite { color: var(--primary--paragraphs); font-style: normal; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.testimonial-card {
  border: 1px solid var(--neutral-300);
  padding: 40px 32px;
}
.testimonial-card blockquote {
  font-size: 16px;
  color: var(--primary--paragraphs);
  border: none;
  padding: 0;
  margin-bottom: 32px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h5 {
  color: var(--primary--black);
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.testimonial-author p { font-size: 14px; margin: 0; }
.testimonial-logo-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.testimonial-logo-row img { height: 40px; width: auto; object-fit: contain; }

/* Video testimonials */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 60px 0;
}
.video-embed {
  position: relative;
  padding-top: 56.25%;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── FAQ ── */
.faq-section { padding: 100px 0; background: #fff; }
.faq-section .section-label { color: var(--main-blue); }
.faq-section h2 { color: var(--primary--black); margin-bottom: 48px; }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--neutral-300);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--main-blue);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding-bottom: 28px;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--main-blue);
  margin-bottom: 8px;
}
.blog-card-date { font-size: 14px; color: var(--primary--paragraphs); margin-bottom: 12px; }
.blog-card h3 { color: var(--primary--black); font-size: 20px; margin-bottom: 20px; flex: 1; }
.blog-card a.read-more {
  color: var(--main-blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── BLOG POST ── */
.blog-post-hero {
  background: var(--primary--black);
  padding: 200px 0 80px;
}
.blog-post-hero .blog-card-tag { margin-bottom: 20px; }
.blog-post-hero h1 { margin-bottom: 32px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; color: var(--primary--paragraphs); font-size: 15px; }
.blog-post-body {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4 { color: var(--primary--black); margin: 32px 0 16px; }
.rich-text h4 { font-size: 18px; }
.rich-text p { margin-bottom: 24px; line-height: 1.8; color: var(--primary--paragraphs); }
.rich-text ul, .rich-text ol { padding-left: 24px; margin-bottom: 24px; }
.rich-text li { margin-bottom: 8px; line-height: 1.7; }
.rich-text img { margin: 32px 0; border-radius: 4px; }
.rich-text strong { color: var(--primary--black); }

/* ── INSTAGRAM SECTION ── */
.instagram-section { padding: 80px 0; }
.instagram-section .section-label { color: var(--main-blue); }
.instagram-section h2 { color: var(--primary--black); margin-bottom: 16px; }
.instagram-section > .container > p { max-width: 600px; margin-bottom: 32px; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 0 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: -80px;
}
.contact-form-wrapper {
  background: #fff;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.contact-form-wrapper h3 { color: var(--primary--black); margin-bottom: 32px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary--black);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--neutral-300);
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--primary--black);
  background: transparent;
  outline: none;
  transition: border-color .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--main-blue); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-faq { padding-top: 40px; }
.contact-faq h2 { color: var(--primary--black); margin-bottom: 32px; }

/* ── SERVICE PRODUCT PAGE ── */
.service-page-hero {
  background: var(--primary--black);
  padding: 200px 0 100px;
  text-align: center;
}
.service-page-hero img.service-icon {
  width: 100px;
  margin: 0 auto 32px;
}
.service-page-hero h1 { margin-bottom: 16px; }
.service-page-hero p { color: var(--primary--paragraphs); max-width: 600px; margin: 0 auto 40px; font-size: 18px; }
.about-service-section { padding: 80px 0; }
.about-service-section h2 { color: var(--primary--black); margin-bottom: 24px; }
.about-service-section p { margin-bottom: 16px; }
.about-service-section ul { padding-left: 24px; }
.about-service-section ul li { margin-bottom: 8px; line-height: 1.7; }
.consult-card {
  background: var(--neutral-100);
  padding: 60px;
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.consult-card h2 { color: var(--primary--black); }
.consult-card p { color: var(--primary--paragraphs); }

/* ── FOOTER ── */
.footer {
  background: var(--primary--black);
  border-top: 1px solid #2f2f2f;
  padding: 100px 0 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.footer-logo img { height: 50px; margin-bottom: 24px; }
.footer-col h5 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--primary--paragraphs);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #2f2f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary--paragraphs);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--main-blue); color: var(--main-blue); }
.footer-social svg { width: 18px; height: 18px; }
.footer-social-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid #2f2f2f;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--primary--paragraphs); font-size: 14px; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-inner { flex-direction: column-reverse; }
  .hero-right { width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-left { max-width: none; padding-bottom: 40px; }
  .results-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .about-inner, .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .consult-card { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 40px 24px; }
  .featured-testimonial { padding: 40px 24px; }
  .featured-testimonial blockquote { font-size: 18px; }
}

@media (max-width: 479px) {
  .container { padding: 0 16px; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .hero { min-height: auto; padding-top: 86px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .result-number { font-size: 40px; }
}
