:root {
  --primary-color: #ff3366;
  --primary-dark: #e62d5a;
  --ink: #111827;
  --muted: #4b5563;
  --light: #f8fafc;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}

h1, h2, h3 {
  font-family: "Noto Serif", Georgia, serif;
  letter-spacing: -0.02em;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(17,24,39,0.08);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.45rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  display: block;
}

.brand-lockup span {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-links a:hover { color: var(--primary-color); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.35rem; }
.nav-links .nav-cta,
.nav-links .nav-cta:hover {
  color: #fff;
}

.section { padding: 5rem 0; }
.section-light { background: var(--light); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-h2 {
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
  color: var(--muted);
  max-width: 64ch;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.hero-stack img:first-child { grid-row: span 2; }

.trust-strip {
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  padding: 1rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--primary-color);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.section-h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 70ch;
  margin: 0 auto;
}

.buzz-highlight {
  color: var(--primary-color);
}

.callout-underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  text-decoration-skip-ink: auto;
  font-weight: inherit;
  padding: 0;
}

.sample-row {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sample-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
}

.journey-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.journey-step {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -0.6rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(17, 24, 39, 0.15);
  pointer-events: none;
  line-height: 1;
}

@media (max-width: 767px) {
  .process-step:not(:last-child)::after { display: none; }
}

.look-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.look-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease;
}

.look-tile {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: visible;
  aspect-ratio: 1 / 1;
  perspective: 900px;
}

.look-flip {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

.look-tile .look-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.look-front {
  transform: rotateY(0deg);
}

.look-back {
  transform: rotateY(180deg);
}

.look-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.look-copy .section-lead {
  margin-left: 0;
}

.look-gallery-wrap {
  justify-self: center;
  width: min(92%, 700px);
  margin-inline: auto;
}

.look-toggle-ui {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.look-toggle-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

.look-gallery-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin: 0 0 0.6rem 0;
  transition: color 0.25s ease;
}

.look-gallery-label.is-before {
  color: var(--muted);
}

.look-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.look-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.look-switch-ui {
  width: 100%;
  height: 100%;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.25s ease;
}

.look-switch-ui::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.look-switch input:checked + .look-switch-ui {
  background: var(--primary-color);
}

.look-switch input:checked + .look-switch-ui::before {
  transform: translateX(24px);
}

.look-grid.show-before .look-flip {
  transform: rotateY(180deg);
}

.look-tile:nth-child(1) { --stagger: 0; }
.look-tile:nth-child(2) { --stagger: 1; }
.look-tile:nth-child(3) { --stagger: 2; }
.look-tile:nth-child(4) { --stagger: 3; }
.look-tile:nth-child(5) { --stagger: 4; }
.look-tile:nth-child(6) { --stagger: 5; }

.price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(255,51,102,0.14);
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.price-tier {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.price-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px solid rgba(17,24,39,0.07);
  padding-top: 0.9rem;
  flex: 1;
}

.price-includes li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.2rem 0;
  list-style: none;
}

.price-includes li::before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8rem;
}

.enterprise-note {
  margin-top: 1.5rem;
  text-align: center;
  background: var(--light);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
}

.enterprise-note a { color: var(--primary-color); font-weight: 700; text-decoration: none; }
.enterprise-note a:hover { text-decoration: underline; }

.about-img {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.expert-list {
  margin-top: 1.1rem;
  padding-left: 0;
  list-style: none;
}

.expert-list li {
  margin-bottom: 0.55rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.97rem;
  color: var(--muted);
}

.expert-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

.expert-list li strong { color: var(--ink); }

.contact-testimonial {
  margin: 1.5rem auto 0;
  max-width: 52ch;
  border-left: 3px solid var(--primary-color);
  padding: 0.6rem 0 0.6rem 1rem;
  text-align: left;
}

.contact-testimonial p {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 0.3rem;
  font-size: 0.97rem;
}

.contact-testimonial cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.cite-detail { color: var(--muted); font-weight: 400; }

#about .col-lg-7 {
  padding-left: clamp(0.4rem, 1.6vw, 1.4rem);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(17,24,39,0.1);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.form-label { font-weight: 600; margin-bottom: 0.3rem; }

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 150ms ease;
}

.site-footer a:hover { color: #fff; }

.footer-name {
  display: block;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  color: #64748b;
  margin-bottom: 0.5rem;
}

.footer-coi {
  font-size: 0.82rem;
  color: #475569;
  margin-bottom: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #334155;
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 0;
  transition: background 150ms ease, color 150ms ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.footer-col-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-credibility a { line-height: 1.4; }

.footer-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-badge-img {
  display: block;
  height: 52px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 150ms ease;
}

.footer-badges a[aria-label*="PPA"] .footer-badge-img,
.footer-badges a[aria-label*="Professional"] .footer-badge-img {
  height: 72px;
}

.footer-badges a:hover .footer-badge-img { opacity: 1; }

.footer-legal {
  margin-top: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #1e293b;
  color: #475569;
  font-size: 0.82rem;
}

.footer-legal a {
  display: inline;
  color: #475569;
  margin-bottom: 0;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

@media (max-width: 991px) {
  .top-nav { position: static; }
  .nav-inner { justify-content: space-between; padding-left: 0.9rem; padding-right: 0.9rem; min-height: 54px; }
  .look-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  #about .col-lg-7 { padding-left: calc(var(--bs-gutter-x) * 0.5); }
  .section { padding: 3rem 0; }
}

@media (max-width: 767px) {
  /* Nav: logo + name only, hide all links */
  .nav-links { display: none; }
  .brand-lockup { width: auto; }
  .nav-inner { justify-content: flex-start; min-height: 50px; }

  /* Typography */
  .section { padding: 2.5rem 0; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-h2 { font-size: 1rem; }
  .section-h2 { font-size: clamp(1.65rem, 6vw, 2.2rem); }
  .section-lead { font-size: 0.97rem; }

  /* Center-align all main copy blocks */
  .hero-section .col-lg-7,
  #problem .col-xl-9,
  #how-it-works .text-center,
  #pricing .text-center,
  #about .col-lg-7,
  #contact .text-center { text-align: center !important; }

  .hero-h2,
  .section-lead { margin-left: auto; margin-right: auto; }

  .expert-list { text-align: left; display: inline-block; }

  .look-copy { text-align: center; }
  .look-copy .section-lead { margin-left: auto; margin-right: auto; }
  .look-toggle-ui { align-items: center; }

  .trust-items { align-items: center; }

  /* Hero buttons: smaller, same row */
  .hero-section .d-flex { justify-content: center; }
  .hero-section .btn-lg { font-size: 0.88rem; padding: 0.5rem 1.1rem; }

  /* Buttons generally smaller vs headings */
  .btn { font-size: 0.88rem; }
  .btn-lg { font-size: 0.88rem; padding: 0.55rem 1.2rem; }

  /* Trust strip */
  .trust-items { gap: 0.75rem; flex-direction: column; padding: 0 0.5rem; }

  /* Cards */
  .price-card { padding: 1.4rem 1.1rem 1.1rem; }
  .price-main { font-size: 1.6rem; }
  .contact-card { padding: 1rem 0.75rem; }
  .look-layout { gap: 1.5rem; }

  /* Process carets off */
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 576px) {
  /* Hero images: 3 equal columns in one row */
  .hero-stack { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .hero-stack img:first-child { grid-row: auto; }
  .hero-stack img { aspect-ratio: 2 / 3; border-radius: 8px; }

  /* Look grid stays 2-col */
  .look-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Brand lockup tighter */
  .brand-lockup span { font-size: 0.9rem; }
  .brand-lockup img { width: 30px; height: 30px; }

  /* Footer badges */
  .footer-badges { gap: 1rem; }
  .footer-badge-img { height: 38px; }
  .footer-badges a[aria-label*="Professional"] .footer-badge-img { height: 52px; }
}

@media (min-width: 992px) {
  #the-look {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .look-layout {
    grid-template-columns: minmax(300px, 420px) minmax(520px, 760px);
    column-gap: clamp(2rem, 4vw, 3.5rem);
    justify-content: center;
  }

  .look-grid {
    max-height: min(66vh, 620px);
    grid-auto-rows: 1fr;
  }

  .look-grid img {
    aspect-ratio: 1 / 1;
    height: 100%;
  }
}
