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

:root {
  --red:        #8B1A1A;
  --red-dark:   #6E1414;
  --white:      #FFFFFF;
  --off-white:  #F5F4F2;
  --light-gray: #EFEFED;
  --border:     #E0DFDD;
  --text:       #1A1A1A;
  --muted:      #666666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.22s ease, border-color 0.22s ease,
              transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
  line-height: 1;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; font-weight: 600; border-radius: 8px; }

/* Arrow variant — animated → on hover */
.btn-arrow { position: relative; padding-right: 36px; }
.btn-arrow::after {
  content: '→';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  transition: transform 0.22s ease;
  font-size: 1em;
  line-height: 1;
}
.btn-arrow:hover::after { transform: translateY(-50%) translateX(4px); }

/* Red filled */
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 3px rgba(139,26,26,0.25);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139,26,26,0.32);
}
.btn-red:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(139,26,26,0.25);
}

/* Outline dark */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #c8c7c4;
  font-weight: 500;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(139,26,26,0.04);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }

/* Outline white (on dark bg) */
.btn-outline-white {
  background: #F5E8E8;
  color: #1A1A1A;
  border: none;
  border-radius: 100px;
}
.btn-outline-white:hover {
  background: #DFB8B8;
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-white:active { transform: translateY(0); }

/* ── Logo image ── */
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 62px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 90px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

/* ── Contact Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-caret { font-size: 0.7rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 12px;
  list-style: none;
  min-width: 180px;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
  transition: background 0.18s;
  line-height: 1.5;
}
.nav-dropdown-menu li a:hover { background: #F7F3EE; color: var(--red); }
.nav-dropdown-menu li a strong { display: block; font-weight: 600; font-size: 0.88rem; }

/* ── Hero background images ── */
.hero-img-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
  pointer-events: none;
}
.hero-img-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  max-width: 600px;
  height: 100%;
  object-fit: contain;
  object-position: top right;
  opacity: 0.13;
  pointer-events: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: #F7F3EE;
  padding: 0 60px 100px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow-x: clip;
  overflow-y: visible;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 36px;
  color: var(--text);
}
.hero-headline em {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* ── Section base ── */
.section { padding: 80px 60px; }
#how-it-works { padding: 80px 60px; }
.section-white { background: #fff; }
.section-gray  { background: #FDF7F7; }

/* Services section: beige top zone, white bottom zone */
#services { padding: 0; border-top: 4px solid #fff; }
.services-top {
  background: #F7F3EE;
  padding: 80px 60px 60px;
}
.services-bottom {
  background: #fff;
  padding: 60px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.services-bottom > * {
  width: 100%;
  max-width: 860px;
}
.featured-services-top {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 16px;
}
.section-heading p {
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
  max-width: 640px;
  margin: 0 auto;
}
.section-heading p strong { color: var(--text); font-weight: 600; }

/* ── Featured Service Cards ── */
.featured-services {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.featured-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.featured-card-body {
  padding: 30px 36px 22px;
}
.featured-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.featured-card-header svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--red);
}
.card-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.featured-card h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
  color: #892A2A;
}
.featured-card p {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0;
  padding-left: 58px;
}

/* ── Featured card photo (fused inside card) ── */
.featured-card-photo {
  line-height: 0;
}
.featured-card-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Standalone photo — no card, no crop ── */
.featured-photo-standalone {
  max-width: 860px;
  margin: 0 auto;
}
.featured-photo-standalone img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── "Anything else" heading ── */
.dark-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
}

/* ── Service Grid ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 28px 48px;
  min-height: 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light-gray);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.service-card-bullets {
  list-style: none;
  margin-top: 14px;
}
.service-card-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}
.service-card-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.service-card svg,
.service-card .card-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin: 0 auto 14px;
  display: block;
  object-fit: contain;
}

/* ── 2-column card overrides ── */
.grid-2 .service-card {
  padding: 48px 36px;
  min-height: 420px;
}
.grid-2 .service-card h3 {
  color: var(--red);
  font-size: 28px;
}
.grid-2 .service-card .card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

/* Photo-top cards: image flush to top and sides */
.service-card--photo-top {
  padding: 0;
  overflow: hidden;
}
.service-card--photo-top .service-card-photo {
  margin-top: 0;
  border-radius: 0;
}
.service-card--photo-top .service-card-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.service-card--photo-top .service-card-text {
  padding: 28px 36px 36px;
}

/* Service card photo (e.g. Format Conversion) */
.service-card-photo {
  margin-top: 28px;
}
.service-card-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.service-card h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
}
.service-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0;
  color: #000000;
}

/* ── Trust Section ── */
.section-trust { text-align: center; }
.trust-lock-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  background: #fff;
}
.trust-lock-ring img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.trust-quote {
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.13;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  max-width: 780px;
  margin: 0 auto 40px;
}
.trust-quote-accent {
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
}
.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 51px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.badge .badge-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.badge .badge-img-lg {
  width: 32px;
  height: 32px;
}
button.badge {
  background: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}
button.badge:hover {
  background: rgba(139, 26, 26, 0.1);
  border-color: var(--red);
}

/* ── CTA ── */
.section-cta {
  background: var(--red);
  padding: 88px 60px;
  text-align: center;
}
.section-cta h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 16px;
}
.section-cta p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Footer ── */
footer {
  background: #fff;
  padding: 36px 60px 20px;
  position: relative;
  overflow: hidden;
}
.footer-map {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Top: tagline + quick links — centered */
.footer-top {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.footer-tagline {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-tagline em {
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--red);
}

.footer-nav h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  margin-bottom: 12px;
}
.footer-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--red); }
.footer-nav-links .pipe {
  color: var(--border);
  font-size: 1rem;
}

/* Middle: brand+social left, contact right */
.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.footer-social-block { display: flex; flex-direction: column; gap: 8px; }
.footer-social-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-icons a:hover { background: var(--border); }
.social-icons a img { width: 16px; height: 16px; object-fit: contain; }

.footer-contact { font-size: 18px; font-weight: 500; line-height: 1; letter-spacing: 0; color: #000000; text-align: right; }
.footer-contact p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.footer-contact .pin-icon {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-bottom { padding-top: 16px; position: relative; z-index: 1; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.nav-links.open li { width: 100%; }
.nav-links.open a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ── Responsive: Tablet ── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 0 24px 80px; }
  .hero-headline { font-size: 2.8rem; }
  .hero-img-right { width: 55%; opacity: 0.1; }

  .section { padding: 60px 24px; }
  #how-it-works { padding: 60px 24px; }
  .services-top { padding: 60px 24px 40px; }
  .services-bottom { padding: 40px 24px 60px; }

  .section-heading h2 { font-size: 2rem; }
  .section-heading p { font-size: 18px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .service-card { min-height: auto; }

  .featured-card h3 { font-size: 22px; }
  .featured-card p { font-size: 16px; }

  .dark-heading { font-size: 1.6rem; }
  .service-card h3 { font-size: 20px; }
  .trust-quote { font-size: 22px; }
  .trust-quote-accent { font-size: 24px; }

  .section-cta { padding: 60px 24px; }
  .section-cta h2 { font-size: 36px; }
  .section-cta p { font-size: 16px; }

  footer { padding: 36px 24px 20px; }
  .footer-tagline { font-size: 22px; }
  .footer-nav h4 { font-size: 22px; }
  .footer-mid { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-contact { text-align: left; }
  .footer-contact p { justify-content: flex-start; }
  .footer-map { opacity: 0.08; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-logo img { height: 48px; }

  .hero { padding: 0 20px 60px; }
  .hero-headline { font-size: 2rem; }
  .hero-eyebrow { font-size: 1.1rem; }
  .hero-img-left { opacity: 0.1; }
  .hero-img-right { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }

  .section { padding: 48px 20px; }
  #how-it-works { padding: 48px 20px; }
  .services-top { padding: 48px 20px 32px; }
  .services-bottom { padding: 32px 20px 48px; }

  .section-heading h2 { font-size: 1.7rem; }
  .section-heading p { font-size: 16px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .service-card { min-height: auto; }
  .service-card { min-height: auto; }
  .service-card h3 { font-size: 20px; }
  .service-card p { font-size: 14px; }

  .featured-card h3 { font-size: 20px; }
  .featured-card p { font-size: 15px; padding-left: 0; }
  .card-icon-circle { width: 52px; height: 52px; }
  .card-icon-circle img { width: 28px; height: 28px; }

  .dark-heading { font-size: 1.4rem; }
  .trust-lock-ring { width: 80px; height: 80px; }
  .trust-lock-ring img { width: 38px; height: 38px; }
  .trust-quote { font-size: 18px; }
  .trust-quote-accent { font-size: 20px; }
  .trust-badges { flex-direction: column; align-items: center; gap: 10px; }

  .section-cta { padding: 48px 20px; }
  .section-cta h2 { font-size: 28px; }
  .section-cta p { font-size: 15px; }

  footer { padding: 32px 20px 16px; }
  .footer-tagline { font-size: 18px; }
  .footer-nav h4 { font-size: 18px; }
  .footer-nav-links { flex-wrap: wrap; gap: 10px; }
  .footer-mid { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-contact { text-align: left; font-size: 14px; }
  .footer-contact p { justify-content: flex-start; }
  .footer-logo img { height: 48px; }
  .footer-map { display: none; }
}
