/* ═══════════════════════════════════════
   INDEX.CSS — Out Shine Web Design Homepage
═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  align-content: start;
  padding: 3.25rem 5rem 5rem;
  gap: 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid var(--teal-light);
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 1700px;
  overflow: hidden;
}
.hero-text { position: relative; z-index: 2; text-align: center;}
.hero-text .eyebrow { margin-bottom: 1.25rem; }
.hero-text h1 { margin-bottom: 1.25rem; text-align: center;}
.hero-text .lead { margin: 0 auto 2.5rem; text-align: center;}
.hero-text .lead em { font-style: italic; color: var(--blush-cta); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; text-align: center;}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
/* .hero-work-card* is a shared component: the portfolio grid and blog listing
   grid (see portfolio.html, css/blog.css) both reuse it in a plain CSS grid,
   with no carousel wrapper — don't remove it when touching the homepage hero. */
.hero-work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(17,45,82,0.1);
  box-shadow: 0 12px 48px rgba(17,45,82,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}
.hero-work-card:hover,
.hero-work-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(17,45,82,0.2);
}
.hero-work-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.hero-work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-work-card--placeholder .hero-work-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
}
.hero-work-card--placeholder .hero-work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-work-card-body {
  padding: 2.125rem 2.55rem 2.55rem;
  text-align: center;
}
.hero-work-card-name {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 1.275rem;
}
.hero-work-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  font-size: 1.22rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush-cta);
}
.hero-work-card-cta svg {
  width: 25.5px;
  height: 25.5px;
  transition: transform 0.3s ease;
}
.hero-work-card:hover .hero-work-card-cta svg {
  transform: translateX(4px);
}

/* ── HERO FAN CAROUSEL (homepage only — portfolio/blog keep the grid above) ── */
.hero-fan {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  height: clamp(360px, 64vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-fan-card {
  position: absolute;
  width: clamp(230px, 44vw, 380px);
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(17,45,82,0.1);
  box-shadow: 0 12px 40px rgba(17,45,82,0.16);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, opacity 0.4s ease;
}
.hero-fan-card:nth-child(1) { transform: translateX(-37%) translateY(-4.5rem) rotate(-8deg) scale(0.95); z-index: 1; }
.hero-fan-card:nth-child(2) { transform: translateX(37%) translateY(4.5rem) rotate(8deg) scale(0.95); z-index: 2; }
.hero-fan-card.is-hovered {
  transform: translateX(0%) translateY(0rem) rotate(0deg) scale(1.06);
  z-index: 3;
  box-shadow: 0 26px 64px rgba(17,45,82,0.26);
}
.hero-fan-card:nth-child(1).is-pushed { transform: translateX(-45%) translateY(-5rem) rotate(-12deg) scale(0.9); opacity: 0.85; }
.hero-fan-card:nth-child(2).is-pushed { transform: translateX(45%) translateY(5rem) rotate(12deg) scale(0.9); opacity: 0.85; }
.hero-fan-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}
.hero-fan-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.hero-fan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-fan-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
  text-align: center;
}
.hero-fan-card-name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.hero-fan-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush-cta);
}
.hero-fan-card-cta svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.hero-fan-card.is-hovered .hero-fan-card-cta svg { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .hero-fan-card { transition-duration: 0.15s; }
}

/* ── WHAT WE DO ── */
.what-we-do {
  background: var(--bg);
  padding: var(--section-pad);
}
.what-we-do-header { margin-bottom: 3rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: linear-gradient(170deg, var(--cream) 70%, var(--blush) 100%);
  border: 1px solid rgba(17,85,98,0.1);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(17,85,98,0.12);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--blush-cta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card-icon svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}
.proof-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(var(--teal-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--teal-rgb), 0.12);
}
.proof-item {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.proof-item:hover { border-color: rgba(var(--teal-rgb), 0.3); }
.proof-score {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
  white-space: nowrap;
}
.proof-score span { font-size: 1.1rem; color: var(--blush-cta); }
.proof-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 150px;
  line-height: 1.45;
}
.cta-banner {
  margin-top: 3rem;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blush) 100%);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
}

/* ── WHAT WE OFFER ── */
.what-we-offer { background: var(--cream); }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: .5rem;
}
.offer-left .check-list { margin: 1.5rem 0 2rem; }
.offer-left .btn-primary {
  display: block;
  width: fit-content;
  margin: 3.5rem auto 0;
}
.offer-left .check-list li {
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(17,45,82,0.08);
}
.offer-left .check-list li .check-content { flex: 1; }
.offer-left .check-list li:last-child {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}
.offer-left .check-list li strong {
  color: var(--teal);
  font-weight: 600;
}
.offer-left .check-list li::before {
  width: 24px;
  height: 24px;
  background-size: 13px;
  margin-top: 0.05rem;
  box-shadow: 0 3px 10px rgba(202,144,132,0.4);
}
.offer-right { position: relative; }
.offer-image-wrap {
  position: relative;
  border-radius: 16px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid rgba(17,45,82,0.1);
  box-shadow: 0 20px 50px rgba(17,45,82,0.18);
}
.offer-image-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(var(--teal-rgb),0.18);
  border-radius: 11px;
  pointer-events: none;
  z-index: 2;
}
.offer-image-wrap picture {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.offer-image-wrap picture img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}
.profile-box {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 1.1rem 1.35rem;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 3;
}
.profile-box-logo { height: 24px; width: auto; margin-bottom: 0.6rem; }
.profile-box-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--teal);
  line-height: 1.2;
}
.profile-box-title {
  font-size: 0.72rem;
  color: var(--blush-cta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── PERFORMANCE ── */
.performance { background: var(--teal); color: var(--cream); }
.performance .eyebrow { color: rgba(255,255,255,1); }
.performance h2 { color: var(--cream); margin-bottom: 3rem; }
.perf-intro { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,1); margin-bottom: 3rem; max-width: 550px; }
.perf-stats {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}
.perf-stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.perf-stat-row:first-child { padding-top: 0; }
.perf-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.perf-icon-box {
  flex: 0 0 240px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
}
.perf-icon-circle {
  width: 56px; height: 56px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perf-icon-circle svg { width: 26px; height: 26px; }
.perf-icon-box span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.perf-statement {
  flex: 1;
  border-left: 2px solid var(--blush);
  padding-left: 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,1);
}
.perf-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.perf-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.perf-badge svg {
  width: 20px; height: 20px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 1.5;
}
.perf-badges--light {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(var(--teal-rgb), 0.12);
}
.perf-badges--light .perf-badge { color: var(--teal); }
.perf-badges--light .perf-badge svg { stroke: var(--blush-cta); }
.perf-bottom {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.perf-bottom-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: 1px solid rgba(17,85,98,0.08);
  text-align: center;
}
.faq-section h2 { margin-bottom: 3rem; }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.faq-accordion-item {
  background: var(--teal);
  border-radius: 8px;
  overflow: hidden;
}
.faq-accordion-bar {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--cream);
  line-height: 1.4;
}
.faq-accordion-bar::-webkit-details-marker { display: none; }
.faq-accordion-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blush);
}
.faq-accordion-toggle::before,
.faq-accordion-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-accordion-toggle::before { width: 12px; height: 1.5px; }
.faq-accordion-toggle::after { width: 1.5px; height: 12px; }
.faq-accordion-item[open] .faq-accordion-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-accordion-answer {
  background: var(--cream);
  border: 1.5px solid #000;
  padding: 1.25rem 1.75rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}
.faq-accordion-answer a { color: var(--teal); font-weight: 500; }
.faq-accordion-answer ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-accordion-answer ul:last-child { margin-bottom: 0; }
.faq-accordion-answer li {
  position: relative;
  padding-left: 1.5rem;
}
.faq-accordion-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 768px) {
  .faq-accordion-bar {
    padding: 1.1rem 1.25rem;
    font-size: 1.2rem;
  }
  .faq-accordion-answer { padding: 0 1.25rem 1.25rem; }
}

/* ── PRICING SECTION ── */
.pricing-section { background: var(--bg); }
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.pricing-header h2 { margin-bottom: 0; }
.pricing-note {
  margin-top: 1rem;
  max-width: 55ch;
  font-size: 1.151rem;
  line-height: 1.6;
}
.pricing-note a { color: var(--teal); font-weight: 500; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid rgba(17,85,98,0.12);
  border-radius: 8px;
  padding: 2.5rem;
}
.pricing-card.featured {
  border-color: var(--teal);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.pricing-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush-cta);
  margin-bottom: 0.75rem;
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.price-display { margin-bottom: 2rem; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-period { font-size: 1rem; color: var(--ink-soft); margin-left: 0.2rem; }
.price-sub { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.35rem; }
.pricing-list { list-style: none; margin-bottom: 2rem; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(17,85,98,0.06);
  color: var(--ink);
}
.pricing-list li:last-child { border-bottom: none; }
.pi-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blush-cta);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pi-x {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(17,17,17,0.1);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23999' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pi-x + span { color: var(--ink-soft); }

/* ── PRE-FOOTER CTA ── */
.pre-footer-cta {
  background: var(--cream);
  text-align: center;
  padding: 6rem 5rem;
  border-top: 1px solid rgba(17,85,98,0.08);
}
.pre-footer-cta h2 { margin-bottom: 1.5rem; }
.pre-footer-cta .lead { margin: 0 auto 2.5rem; text-align: center; }

/* ══════════════════════
   TABLET (≤ 1100px)
══════════════════════ */
@media (max-width: 1100px) {
  .hero { padding: 4rem 3rem; gap: 2.5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { gap: 3rem; }
}

/* ══════════════════════
   MOBILE (≤ 768px)
══════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 3rem;
    min-height: auto;
    gap: 0;
  }
  .hero::after { display: none; }
  .hero-wave { height: 112vmax; }
  .hero-wave svg { height: 100%; }
  .hero-visual { margin-top: 1.75rem; }
  .hero-work-card { border-radius: 16px; }
  .hero-work-card-body { padding: 1.5rem 1.5rem 1.75rem; }
  .hero-work-card-name { font-size: 1.6rem; margin-bottom: 0.85rem; }
  .hero-work-card-cta { font-size: 0.9rem; gap: 0.5rem; }
  .hero-work-card-cta svg { width: 20px; height: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }

  /* Hero fan carousel */
  .hero-fan { height: clamp(300px, 78vw, 420px); }
  .hero-fan-card:nth-child(1) { transform: translateX(-30%) translateY(-3rem) rotate(-6deg) scale(0.94); }
  .hero-fan-card:nth-child(2) { transform: translateX(30%) translateY(3rem) rotate(6deg) scale(0.94); }
  .hero-fan-card:nth-child(1).is-pushed { transform: translateX(-37%) translateY(-3.4rem) rotate(-9deg) scale(0.89); }
  .hero-fan-card:nth-child(2).is-pushed { transform: translateX(37%) translateY(3.4rem) rotate(9deg) scale(0.89); }
  .hero-fan-card-body { padding: 1rem 1.1rem 1.25rem; }

  /* What We Do */
  .cards-grid { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.95rem; }
  .proof-strip { gap: 2rem 3rem; padding: 1.75rem 1rem; }
  .proof-score { font-size: 1.8rem; }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* What We Offer */
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offer-left .btn-primary {
    margin: 2rem 0 0;
  }
  .offer-left .check-list li .check-content { display: block; }
  .offer-left .check-list li strong { display: block; }
  .offer-left .check-list li .check-desc { display: block; margin-top: 0.2rem; }

  .offer-right { order: -1; }
  .offer-image-wrap picture img {
    height: 280px;
    object-fit: cover;
    object-position: 50% 25%;
  }
  .profile-box-name {text-align: center; margin-bottom: 0.25rem; }
  .profile-box-title { text-align: center; }
  .profile-box-logo { margin: 0 auto 0.6rem; display: block; }
  .profile-box {
  padding: 0.65rem 1rem;
  min-width: 140px;
  }
  .profile-box-logo {
    height: 18px;
  }
  .profile-box-name { font-size: 1rem; }
  .profile-box-title { font-size: 0.78rem; }
  /* Performance */
  .perf-stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  .perf-icon-box { flex: none; }
  .perf-icon-box span { font-size: 0.9rem; }
  .perf-statement { border-left: none; padding-left: 0; font-size: 0.95rem; }
  .perf-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .perf-badge { font-size: 0.9rem; }
  .perf-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
  .perf-bottom-icon { width: 80px; height: 80px; }

  /* Pricing */
  .pricing-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .pricing-note { margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card-label { font-size: 0.75rem; }
  .pricing-list li { font-size: 0.95rem; }
  .price-sub { font-size: 0.85rem; }

  /* Pre-footer */
  .pre-footer-cta { padding: 4rem 1.5rem; }
}

/* ══════════════════════
   SMALL MOBILE (≤ 400px)
══════════════════════ */
@media (max-width: 400px) {
  /* Hero */
  .hero { padding: 1.25rem 1rem 2.5rem; }
  .hero-visual { margin-top: 1.25rem; }
  .hero-work-card-body { padding: 1.25rem 1.25rem 1.5rem; }
  .hero-work-card-name { font-size: 1.3rem; margin-bottom: 0.65rem; }
  .hero-work-card-cta { font-size: 0.82rem; gap: 0.4rem; }
  .hero-work-card-cta svg { width: 18px; height: 18px; }

  .price-amount { font-size: 2.5rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
}

/* ── HERO ANIMATIONS ── */
.hero-text > * {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.hero-text .eyebrow { animation-delay: 0.1s; }
.hero-text h1 { animation-delay: 0.22s; }
.hero-text .lead { animation-delay: 0.34s; }
.hero-text .hero-actions { animation-delay: 0.46s; }
.hero-visual { opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards; }