:root {
  --color-brand: #7b5cf0;
  --color-brand-deep: #5b3dd1;
  --color-brand-light: #c4b5fd;
  --color-brand-tint: #ede9fe;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f7ff;
  --bg-card: #ffffff;
  --border: #e9e8f5;
  --text-heading: #1a1040;
  --text-body: #4b5563;
  --text-muted: #9ca3af;
  --section-pad: 96px;
  --shadow-card: 0 4px 24px rgba(123, 92, 240, 0.08);
}

[data-theme="dark"] {
  --bg-primary: #0d0b1a;
  --bg-secondary: #16132b;
  --bg-card: #241e42;
  --border: #2e2850;
  --text-heading: #f0eeff;
  --text-body: #a09cc0;
  --text-muted: #6b6490;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  transition: background-color 0.3s ease, color 0.3s ease;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  color: var(--text-heading);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section.stats-strip {
  padding-top: 25px;
}

.section.alt {
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--text-body);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-brand-deep);
}

.btn-ghost {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: transparent;
}

.pill {
  border-radius: 999px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.2s ease;
  background: color-mix(in srgb, var(--bg-primary) 94%, transparent);
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--bg-primary) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.nav-wrap {
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 380px;
  height: 120px;
  overflow: visible;
}

.logo img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center;
  transform: none;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--color-brand);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.theme-icon {
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.theme-toggle:hover {
  transform: rotate(12deg);
  border-color: var(--color-brand);
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-heading);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--bg-primary) 97%, transparent);
  backdrop-filter: blur(12px);
  z-index: 40;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu a:not(.btn) {
  display: block;
  font-size: 1.2rem;
  padding: 12px 0;
}

.mobile-menu .btn {
  display: inline-flex;
  margin-top: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 25px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 620px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-blob {
  position: absolute;
  right: -100px;
  top: 30px;
  width: min(560px, 60vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 92, 240, 0.14), transparent 66%);
  pointer-events: none;
}

[data-theme="dark"] .hero-blob {
  background: radial-gradient(circle, rgba(123, 92, 240, 0.24), transparent 66%);
}

.hero-visual {
  position: relative;
  animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.browser-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.browser-top {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-brand-light);
}

.browser-body {
  padding: 20px;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: var(--color-brand-tint);
  margin-bottom: 12px;
}

.mock-line.dark {
  width: 65%;
}

.mock-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mock-grid div {
  height: 90px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-brand) 12%, var(--bg-card));
}

.float-icon {
  position: absolute;
  font-weight: 700;
  color: var(--color-brand);
  opacity: 0.8;
}

.float-icon.one {
  top: -18px;
  right: 24px;
}

.float-icon.two {
  left: -14px;
  bottom: 60px;
}

.marquee {
  margin-top: 50px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-card) 50%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 14px 0;
  animation: marquee 48s linear infinite;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 8px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.stat strong {
  display: block;
  color: var(--color-brand);
  font-size: 1.7rem;
  font-family: "Sora", sans-serif;
}

.services-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card,
.price-card {
  padding: 24px;
}

.popular {
  border: 2px solid var(--color-brand);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--color-brand-tint);
  color: var(--color-brand-deep);
  font-weight: 600;
}

[data-theme="dark"] .badge {
  background: color-mix(in srgb, var(--color-brand) 24%, transparent);
  color: #d8d0ff;
}

.list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.list li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  color: var(--accent-green);
  font-weight: 700;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.addon-card {
  border-radius: 12px;
  padding: 20px;
  background: var(--color-brand-tint);
}

[data-theme="dark"] .addon-card {
  background: #16132b;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 11%;
  right: 11%;
  border-top: 2px dashed var(--border);
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-brand);
  font-family: "Sora", sans-serif;
  margin-bottom: 12px;
}

.portal {
  background: #1a1040;
  color: #ddd6fe;
  border-radius: 16px;
  padding: 34px;
}

.portal * {
  color: inherit;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.portal-mockup {
  border-radius: 14px;
  border: 1px solid rgba(196, 181, 253, 0.25);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.portal-panel {
  padding: 14px;
  border-bottom: 1px solid rgba(196, 181, 253, 0.2);
}

.portal-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.portal-box {
  border-radius: 10px;
  height: 84px;
  background: rgba(196, 181, 253, 0.16);
}

.price {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: var(--text-heading);
  margin: 8px 0;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.city-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-brand);
  background: var(--color-brand);
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.city-pill:hover {
  transform: scale(1.03);
  background: var(--color-brand-deep);
}

.city-pill.muted {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.stars {
  color: var(--accent-amber);
  margin-bottom: 10px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text-heading);
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-btn span:last-child {
  color: var(--color-brand);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-btn span:last-child {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  color: var(--text-body);
}

.faq-item.open .faq-answer {
  max-height: 220px;
  opacity: 1;
  padding-bottom: 16px;
}

.final-cta {
  background: var(--color-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: #ddd6fe;
}

.final-cta .btn {
  background: #fff;
  color: var(--color-brand);
}

.final-cta .ink-peek {
  position: absolute;
  right: 26px;
  bottom: -34px;
  width: min(220px, 38vw);
  opacity: 0.96;
  border-radius: 20px;
}

.footer {
  background: #0d0b1a;
  color: #b8b2d8;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  color: #f0eeff;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin: 6px 0;
  color: #b8b2d8;
}

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

.social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  border: 1px solid #3a3460;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.footer-bottom {
  border-top: 1px solid #2e2850;
  margin-top: 34px;
  padding: 16px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.contact-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field.full {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-heading);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-body);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 25%, transparent);
}

.error-text {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 16px;
}

.success-state {
  text-align: center;
  padding: 26px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-green) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-green) 40%, transparent);
  display: none;
}

.success-state img {
  width: 90px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Desktop nav alignment fix ── */
@media (min-width: 961px) {
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 340px;
    height: 92px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .logo img {
    width: 100%;
    height: 100%;
  }

  .desktop-nav {
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  .header-right {
    height: 100%;
    align-items: center;
    flex-shrink: 0;
  }

  .header-right .btn {
    line-height: 1;
  }
}

/* ── Tablet landscape ── */
@media (max-width: 1024px) {
  .hero-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-blob {
    right: -180px;
  }
}

/* ── Tablet / mobile nav ── */
@media (max-width: 960px) {
  :root {
    --section-pad: 48px;
  }

  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .section.stats-strip {
    padding-top: 18px;
  }

  .desktop-nav,
  .header-right .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    gap: 10px;
  }

  .logo {
    width: 245px;
    height: 76px;
  }

  .theme-toggle,
  .mobile-menu-btn {
    width: 46px;
    height: 46px;
  }

  .header-right {
    margin-left: auto;
    gap: 8px;
  }

  .mobile-menu.open {
    top: 84px;
  }

  .hero {
    padding-bottom: 18px;
  }

  .marquee {
    margin-top: 32px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
  }

  .addons-grid,
  .timeline,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat::after {
    display: none;
  }

  .stat {
    padding: 10px 6px;
  }

  .field.full {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portal {
    padding: 24px;
  }

  .portal-grid {
    gap: 20px;
  }

  .final-cta .ink-peek {
    position: static;
    display: block;
    margin: 20px auto 0;
    width: min(180px, 50vw);
  }
}

/* ── Small phones ── */
@media (max-width: 600px) {
  :root {
    --section-pad: 36px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section.stats-strip {
    padding-top: 14px;
  }

  .nav-wrap {
    height: 80px;
    gap: 6px;
  }

  .logo {
    width: 206px;
    height: 60px;
  }

  .logo img {
    width: 100%;
    height: 100%;
  }

  .header-right {
    gap: 6px;
    align-items: center;
  }

  .mobile-menu.open {
    top: 80px;
  }

  .mobile-menu a:not(.btn) {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 18px;
  }

  .hero {
    padding-bottom: 14px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-visual,
  .hero-blob {
    display: none;
  }

  .marquee {
    margin-top: 18px;
  }

  .marquee-track {
    gap: 16px;
    font-size: 0.8rem;
    padding: 9px 0;
  }

  .stat strong {
    font-size: 1.25rem;
  }

  .stat span {
    font-size: 0.82rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .stats .stat:last-child {
    grid-column: 1 / -1;
    max-width: 220px;
    margin: 0 auto;
  }

  .stat {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-card);
    padding: 12px 8px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.9rem;
    border-radius: 9px;
    width: auto;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .contact-card .btn {
    width: 100%;
  }

  .plan-card,
  .price-card {
    padding: 16px;
  }

  .price {
    font-size: 1.6rem;
  }

  .addon-card {
    padding: 14px;
  }

  .step {
    padding: 14px;
  }

  .portal {
    padding: 16px;
    border-radius: 10px;
  }

  .portal-box {
    height: 60px;
  }

  .section-title {
    margin-bottom: 10px;
  }

  .section-sub {
    margin-bottom: 22px;
    font-size: 0.88rem;
  }

  .city-pill {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .section.final-cta {
    padding: 24px 0;
  }

  .final-cta .container {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
  }

  .final-cta .container > :not(.ink-peek) {
    grid-column: 1;
    margin: 0;
  }

  .final-cta .container .btn {
    justify-self: start;
  }

  .final-cta .ink-peek {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: min(92px, 24vw);
    margin: 0;
    opacity: 0.92;
    justify-self: end;
    align-self: center;
  }

  .cities-grid {
    gap: 8px;
  }

  .faq-btn {
    font-size: 0.88rem;
    padding: 14px 0;
    gap: 10px;
  }

  .faq-btn span:first-child {
    flex: 1;
  }

  .footer {
    padding-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid > div:not(:first-child) {
    display: none;
  }

  .footer-grid > div:first-child img {
    height: 62px !important;
  }

  .footer-grid > div:first-child p {
    margin-top: 8px !important;
    max-width: none !important;
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.82rem;
    margin-top: 14px;
    padding: 12px 0 16px;
  }

  .social a {
    width: 34px;
    height: 34px;
  }

  .contact-card {
    padding: 16px 12px;
  }

  input,
  select,
  textarea {
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 9px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    margin-bottom: 10px;
  }

  .card {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(123, 92, 240, 0.06);
  }

  .card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .reveal {
    transform: translateY(20px);
  }
}

/* ── Tiny phones (iPhone SE, etc.) ── */
@media (max-width: 380px) {
  :root {
    --section-pad: 36px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat strong {
    font-size: 1.2rem;
  }

  .stat span {
    font-size: 0.78rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .logo {
    width: 190px;
    height: 56px;
  }

}
