:root {
  --green: #2563EB;
  --green-light: #3B82F6;
  --cream: #FFFBF7;
  --cream-dark: #FFF3E8;
  --gold: #F7941D;
  --gold-dark: #E07B0A;
  --gold-light: #FFF0E0;
  --text: #2c2c2c;
  --text-muted: #666;
  --white: #ffffff;
  --fb-blue: #0084FF;
  --header-bg: rgba(255, 251, 247, 0.98);
  --footer-bg: linear-gradient(160deg, #2563EB 0%, #1D4ED8 100%);
  --shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(247, 148, 29, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-fb {
  background: var(--fb-blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green);
  z-index: 2;
  padding: 4px;
}

.nav-cta-desktop { z-index: 2; }

.nav-cta-mobile { display: none; }

/* ── Section labels ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-label--center {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.reviews-intro {
  text-align: center;
  margin-bottom: 40px;
}

section { padding: 80px 0; }

/* ── Hero ── */
.hero {
  padding-top: 128px;
  padding-bottom: 80px;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 20px;
}

/* ── 3D Icons ── */
.icon-3d {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.icon-3d--inline {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn .icon-3d--inline {
  width: 18px;
  height: 18px;
}

.hero-badge .icon-3d {
  width: 20px;
  height: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stars .rating {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
}

.star { color: var(--gold); font-size: 0.9rem; }

.hero-proof-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-avatars {
  display: flex;
  margin-left: 4px;
}

.hero-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.hero-avatars img:first-child { margin-left: 0; }

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cod-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  max-width: 200px;
  box-shadow: var(--shadow);
}

.cod-badge .cod-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
}

.cod-badge strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.cod-badge p {
  font-size: 0.7rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* ── Commitment ── */
.commitment { background: var(--cream); padding-top: 0; }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.commitment-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.commitment-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.commitment-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}

.commitment-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Process ── */
.process { background: var(--cream-dark); }

.process-header { text-align: center; margin-bottom: 48px; }

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 12px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(26, 48, 38, 0.2);
  z-index: 0;
}

.process-step {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Desktop: show all steps in a row, hide carousel controls */
.process-carousel .carousel-btn,
.process-carousel .carousel-dots {
  display: none;
}

.process-carousel {
  padding: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--cream-dark);
}

.step-card {
  background: var(--white);
  padding: 20px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}

.step-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
}

/* ── Portfolio ── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.portfolio-tabs {
  display: flex;
  gap: 24px;
  list-style: none;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.portfolio-tabs::-webkit-scrollbar { display: none; }

.portfolio-tabs li {
  padding-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.portfolio-tabs li.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  display: block;
}

.portfolio-card--linked {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}

.portfolio-card--linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(247, 148, 29, 0.2);
  border-color: var(--gold);
}

.portfolio-card--linked:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card--linked:hover h3 {
  color: var(--gold-dark);
}

.portfolio-card--linked:hover .portfolio-card-hint {
  color: var(--green);
}

.portfolio-card-media {
  position: relative;
  overflow: hidden;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.72);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.25s;
}

.portfolio-card-hint {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-card-body {
  padding: 20px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--cream-dark);
  color: var(--green);
  margin-bottom: 8px;
}

.portfolio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.portfolio-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Carousel shared ── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 8px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-track.no-transition {
  transition: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--green);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover { background: var(--cream-dark); }

.carousel-btn .icon-3d {
  width: 22px;
  height: 22px;
  filter: none;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots button.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ── Proof of Delivery ── */
.proof { background: var(--cream); }

.proof-header { text-align: center; margin-bottom: 40px; }

.proof-card {
  flex: 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.proof-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── Reviews ── */
.reviews { background: var(--cream-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

.reviews-summary {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.reviews-summary .fb-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.reviews-summary .big-rating {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.reviews-summary .stars { margin: 8px 0; }

.reviews-summary p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reviews-carousel-wrap {
  min-width: 0;
}

.review-card {
  flex: 0 0 auto;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-header .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-header .date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-card .review-stars { margin-bottom: 10px; }

.review-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About & CTA ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-cta-box {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--green);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  max-width: 320px;
  box-shadow: var(--shadow);
}

.about-cta-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ── Our Stores ── */
.stores {
  background: var(--cream);
}

.stores-header {
  text-align: center;
  margin-bottom: 48px;
}

.stores-title {
  text-align: center;
}

.stores-subtitle {
  max-width: 560px;
  margin: 8px auto 0;
  text-align: center;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.store-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.store-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.store-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
}

.store-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-address-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}

.store-address-link:hover {
  color: var(--green);
}

.store-address-link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: color 0.2s;
}

.store-phone-link:hover {
  color: var(--gold);
}

.store-address-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.store-contact-placeholder {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.85;
}

.store-directions-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ── Footer ── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 0 0;
  border-top: 4px solid var(--gold);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(247, 148, 29, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fb-logo .icon-3d {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.footer-contact .icon-3d--contact {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-toggle .icon-3d {
  width: 28px;
  height: 28px;
  filter: none;
}

.messenger-fab .icon-3d {
  width: 34px;
  height: 34px;
  filter: none;
}

.footer-social a:hover { background: rgba(255, 255, 255, 0.2); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom a {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-bottom a:hover { opacity: 1; }

/* ── Messenger FAB ── */
.messenger-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: transform 0.2s;
}

.messenger-fab:hover { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .stores-grid { grid-template-columns: 1fr; }
  .hero-grid,
  .about-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-box { right: 0; }
  .cod-badge { right: 0; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .container { padding: 0 16px; }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--gold);
  }

  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }

  .nav-cta-mobile {
    display: block;
    margin-top: 8px;
  }

  .nav-cta-mobile .btn { width: 100%; }

  .hero {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .logo-img {
    height: 44px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.58rem;
  }

  .hero-grid { gap: 32px; }

  .hero-image-wrap { order: -1; }

  .hero-image-wrap img { height: 280px; }

  .cod-badge {
    right: 12px;
    bottom: 12px;
    max-width: 160px;
    padding: 12px 16px;
  }

  .hero-buttons .btn { flex: 1 1 100%; }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .commitment-grid { grid-template-columns: 1fr; }

  .process-header { margin-bottom: 32px; }

  .process-carousel {
    padding: 0 40px;
  }

  .process-carousel .carousel-btn,
  .process-carousel .carousel-dots {
    display: flex;
  }

  .process-steps::before { display: none; }

  .step-card { padding: 20px 16px; }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-header .btn { width: 100%; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .portfolio-card img { height: 200px; }

  .carousel-wrap { padding: 0 40px; }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .proof-card img { height: 180px; }

  .reviews-intro { margin-bottom: 28px; }

  .reviews-summary { padding: 28px 24px; }

  .reviews-summary .btn { width: 100%; }

  .reviews-carousel-wrap .carousel-wrap {
    padding: 0 40px;
  }

  .about-features { grid-template-columns: 1fr; }

  .about-visual img { height: 320px; }

  .store-card-image img { height: 220px; }

  .about-cta-box {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -48px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .messenger-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }

  .hero h1 { font-size: 1.75rem; }

  .section-title { font-size: 1.35rem; }

  .carousel-wrap { padding: 0 36px; }

  .proof-card img { height: 160px; }

  .review-card { padding: 20px; }
}
