/* ═══ HERO — CINEMATIC VIDEO ═══ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: block;
  contain: layout style paint;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-logo-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.hero-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 88px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 24px);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-top: 8px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 18px 56px;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.hero-cta-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-indicator span {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ═══ AREA TICKER ═══ */
.area-ticker {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.area-ticker-track {
  display: flex;
  gap: 64px;
  width: fit-content;
  animation: tickerScroll 25s linear infinite;
}

.area-ticker-track span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ BEFORE / AFTER ═══ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.before-after-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.before-after-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.before-after-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--white);
}
.before-after-label.before { background: rgba(0,0,0,0.6); }
.before-after-label.after { background: var(--accent); }

@media (max-width: 768px) {
  .before-after { grid-template-columns: 1fr; gap: 12px; }
  .before-after-card img { height: 200px; }
}

/* ═══ SERVICE SPLIT SECTIONS ═══ */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }
.service-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-split-image img,
.service-split-image video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.service-split-text .label { margin-bottom: 16px; }
.service-split-text h2 {
  margin-bottom: 20px;
}
.service-split-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-split-text .btn { margin-top: 8px; }

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .service-split { grid-template-columns: 1fr; gap: 32px; }
  .service-split.reverse { direction: ltr; }
  .service-split-image img,
  .service-split-image video { height: 280px; }
  .service-gallery { grid-template-columns: 1fr; }
  .service-gallery img { height: 240px; }
}

/* ═══ PAGE HERO (Sub-pages) ═══ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-content .label { margin-bottom: 20px; display: block; font-size: 13px; letter-spacing: 0.25em; }

.page-hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero-content h1 .accent { color: var(--accent); }

.page-hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══ SERVICES SECTION ═══ */
.services-section { background: var(--white); }

.services-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-card-clean {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-clean:hover {
  transform: translateY(-6px);
}

.service-card-clean-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card-clean-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-clean:hover .service-card-clean-img img {
  transform: scale(1.05);
}

.service-card-clean-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card-clean-body p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow-accent {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s, color 0.3s;
}

.link-arrow-accent:hover {
  gap: 12px;
  color: var(--accent-hover);
}

/* ═══ LABEL ACCENT ═══ */
.label-accent {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* ═══ DIFFERENCE SECTION — Dark Split ═══ */
.difference-section {
  background: var(--navy);
  padding: 100px 0;
}

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

.difference-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.difference-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.difference-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 1.05;
  margin: 20px 0 24px;
}

.difference-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ═══ ACCENT BUTTONS ═══ */
.btn-accent-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}

.btn-accent-fill:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 57, 47, 0.3);
}

/* ═══ RECENT PROJECTS ═══ */
.projects-section { background: var(--white); }

.projects-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  line-height: 1;
  margin-top: 12px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-item:hover img {
  transform: scale(1.05);
}

/* ═══ TESTIMONIALS — Dark ═══ */
.testimonials-dark {
  background: var(--navy);
  overflow: hidden;
}

.testimonial-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track-wrap::before,
.testimonial-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy) 0%, transparent 100%); }
.testimonial-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%); }

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: testimonialScroll 40s linear infinite;
}

.testimonial-track:hover { animation-play-state: paused; }

@keyframes testimonialScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.testimonial-card-dark {
  background: var(--white);
  border: 1px solid var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 380px;
  flex-shrink: 0;
}

.testimonial-card-dark .testimonial-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card-dark .testimonial-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-divider {
  width: 60px;
  height: 1px;
  background: var(--sky-light);
  margin-bottom: 16px;
}

.testimonial-card-dark .testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.testimonial-card-dark .testimonial-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 2px;
}

/* ═══ BOOKING / QUOTE FORM SECTION ═══ */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.booking-section .container { position: relative; z-index: 2; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.booking-info p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.booking-info .booking-pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.booking-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s;
}

.booking-phone:hover { color: rgba(255,255,255,0.7); }

.booking-info .label-accent { color: var(--accent); }

.booking-info .section-headline { color: var(--white); }

.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ═══ FAQ ═══ */
.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sky-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active { border-left: 3px solid var(--accent); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron { transform: rotate(90deg); }

.faq-answer { max-height: 0; overflow: hidden; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ SERVICE DETAIL (sub-pages) ═══ */
.service-detail { background: var(--white); }
.service-detail-content { max-width: 800px; margin: 0 auto; }

.service-detail-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-detail-content h2 .accent { color: var(--accent); }

.service-detail-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-content ul { margin-bottom: 20px; }

.service-detail-content ul li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray);
  padding: 6px 0;
}

.service-detail-content ul li::before {
  content: '\2713\0020';
  color: var(--accent);
  font-weight: 600;
}

/* ═══ SERVICE SUB-NAV ═══ */
.service-subnav {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--sky-light);
  padding: 12px 0;
}


.service-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px;
}

.service-subnav-inner::-webkit-scrollbar { display: none; }

.service-subnav-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--sky-light);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.service-subnav-btn.active,
.service-subnav-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ═══ SMS POPUP ═══ */
.sms-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sms-overlay.active { opacity: 1; pointer-events: all; }

.sms-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 420px;
  width: 90%;
  padding: 40px;
  position: relative;
  border-top: 4px solid var(--accent);
  transform: scale(0.92);
}

.sms-modal.plinko-modal {
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  background: #0d1117;
  border-top: none;
  border-radius: 20px;
  border: 1px solid rgba(74,154,175,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px rgba(74,154,175,0.08);
}

.sms-modal.plinko-modal .sms-close {
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.sms-modal.plinko-modal .sms-close:hover { color: #fff; }

.sms-overlay.active .sms-modal { transform: scale(1); }

/* ─── PLINKO GAME ─── */
.plinko-phase { transition: opacity 0.4s ease; }

.plinko-header {
  text-align: center;
  padding: 24px 24px 10px;
  background: linear-gradient(180deg, rgba(74,154,175,0.08) 0%, transparent 100%);
}

.plinko-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 5px 14px;
}

.plinko-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin: 8px 0 4px;
  line-height: 1.1;
}

.plinko-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.plinko-board-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#plinko-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 360;
  border-radius: 12px;
  border: 1px solid rgba(74,154,175,0.1);
}

.plinko-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 16px auto 20px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0d1117;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.plinko-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: plinko-btn-shimmer 2.5s infinite;
}

@keyframes plinko-btn-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.plinko-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}

.plinko-btn:disabled {
  animation: none;
}
.plinko-btn:disabled::before {
  animation: none;
  display: none;
}

/* Phase 2: Win + Form */
.plinko-win-banner {
  text-align: center;
  padding: 32px 24px 24px;
  background: linear-gradient(180deg, rgba(201,168,76,0.1) 0%, rgba(74,154,175,0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plinko-win-tag {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.plinko-win-pct {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plinko-win-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.plinko-claim-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 16px 24px 12px;
}

.plinko-modal .sms-form { padding: 0 24px; }

.plinko-modal .sms-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 14px;
}

.plinko-modal .sms-input:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(74,154,175,0.15);
}

.plinko-modal .sms-input option { color: #1a1a1a; }

.plinko-modal .form-checkbox label {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}
.plinko-modal .form-checkbox label a { color: var(--sky-blue); }

.plinko-trust {
  text-align: center;
  padding: 12px 24px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.sms-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.sms-close:hover { color: var(--navy); }

.sms-logo {
  text-align: center;
  margin-bottom: 20px;
}

.sms-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

.sms-logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sms-modal h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sms-modal > p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sms-input {
  width: 100%;
  border: 1px solid var(--sky-light);
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  transition: all 0.3s;
}

.sms-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.sms-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
}

.sms-submit:hover { background: var(--accent-hover); }

.sms-trust {
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--gray-light);
  text-align: center;
}

/* ═══ COOKIE NOTICE ═══ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--sky-light);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2500;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.cookie-bar.active { transform: translateY(0); }

.cookie-bar p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray);
}

.cookie-bar .btn { font-size: 12px; padding: 8px 16px; }

/* ═══ ABOUT SECTION ═══ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; }

.about-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ═══ FOUNDERS ═══ */
.founders-section {
  position: relative;
  background: var(--navy);
  padding: 100px 0 120px;
  overflow: hidden;
}

.founders-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(74,154,175,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.founders-header {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.founders-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--sky-blue);
  display: block;
  margin-bottom: 20px;
}

.founders-line {
  width: 60px;
  height: 1px;
  background: var(--sky-blue);
  margin: 0 auto;
  opacity: 0.4;
}

.founders-portraits {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.founder-profile {
  flex: 0 1 380px;
  text-align: center;
}

.founder-portrait {
  position: relative;
  width: 280px;
  height: 360px;
  margin: 0 auto 36px;
}

.founder-portrait-inner {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
}

.founder-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%) contrast(1.05);
}

.founder-profile:hover .founder-portrait-inner img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05);
}

.founder-portrait-frame {
  position: absolute;
  inset: -4px;
  border-radius: 204px 204px 24px 24px;
  border: 1px solid rgba(74,154,175,0.2);
  pointer-events: none;
  transition: border-color 0.5s;
}

.founder-profile:hover .founder-portrait-frame {
  border-color: rgba(74,154,175,0.5);
}

.founder-detail {
  padding: 0 8px;
}

.founder-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.founder-role {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sky-blue);
  padding: 6px 16px;
  border: 1px solid rgba(74,154,175,0.3);
  border-radius: 4px;
}

.founder-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px auto;
}

.founder-bio {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 320px;
  margin: 0 auto;
}

.founders-ampersand {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 120px;
  color: rgba(74,154,175,0.1);
  line-height: 1;
  align-self: center;
  margin-top: -40px;
  user-select: none;
}

/* ═══ ABOUT STORY ═══ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text .section-headline {
  font-size: clamp(40px, 5.5vw, 64px);
}

.story-text p {
  font-size: 18px !important;
  line-height: 1.85 !important;
}

.story-images {
  position: relative;
  height: 520px;
}

.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.story-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.story-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid rgba(26,26,26,0.9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.story-img-secondary img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ═══ ABOUT SHOWCASE ═══ */
.about-showcase {
  overflow: hidden;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.about-showcase-item {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.about-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9);
}

.about-showcase-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.about-showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
  pointer-events: none;
  transition: opacity 0.5s;
}

.about-showcase-item:hover::after { opacity: 0; }

/* ═══ STATS ═══ */
.stats-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}


.stats-grid {
  display: grid;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-box {
  padding: 32px 16px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ═══ REVIEWS PAGE ═══ */
.star-display { text-align: center; padding: 48px 0; }

.star-display .big-rating {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}

.star-display .stars {
  color: #F59E0B;
  font-size: 28px;
  letter-spacing: 4px;
  margin-top: 8px;
}

.star-display p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sky-light);
}

.review-card-lg .stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }

.review-card-lg .review-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card-lg .reviewer {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.review-card-lg .reviewer-loc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 2px;
}

/* ═══ CONTACT / QUOTE PAGE ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info-block { margin-bottom: 28px; }

.contact-info-block h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-info-block p,
.contact-info-block a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
}

.contact-info-block a:hover { color: var(--accent); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--sky-light);
}

.contact-map iframe { width: 100%; height: 300px; display: block; }

/* ═══ SERVICE PLANS ═══ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--sky-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-frequency {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.plan-discount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-features {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* ═══ BUNDLE SPECIAL ═══ */
.bundle-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
}

.bundle-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.bundle-banner p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ═══ TWO COLUMN GRID ═══ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══ TECH SECTION ═══ */
.tech-section {
  background: var(--navy);
}

/* ═══ STEP CARDS ═══ */
.steps-grid {
  display: grid;
  gap: 32px;
}

.step-card {
  position: relative;
  padding: 0 0 0 0;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 12px;
}

.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ INCLUDED LIST (Window Cleaning) ═══ */
.included-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.included-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-sky);
}

.included-item:first-child {
  border-top: 1px solid var(--border-sky);
}

.included-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.included-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ═══ PROCESS STAGES (Xero System) ═══ */
.process-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 64px auto 0;
}

.process-stage {
  text-align: center;
  flex: 1;
}

.process-stage-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--white);
  opacity: 0.15;
  margin-bottom: 8px;
}

.process-stage-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

.process-stage-arrow {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-stages { flex-direction: column; gap: 16px; }
  .process-stage-arrow { width: 1px; height: 24px; }
  .step-number { font-size: 36px; }
}

/* ═══ VIDEO SHOWCASE (Hugo Builders style) ═══ */
.video-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.video-showcase-main {
  position: relative;
  overflow: hidden;
}

.video-showcase-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-showcase-cta {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.video-showcase-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
}

.video-grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .video-showcase { grid-template-columns: 1fr; min-height: auto; }
  .video-showcase-main { aspect-ratio: 16/9; }
  .video-showcase-cta { padding: 32px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ═══ VIDEO LOOP PLAYER ═══ */
.video-loop-player {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 9/14;
  max-height: 70vh;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-dark);
}

.video-loop-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-loop-cta {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.video-loop-cta.active {
  opacity: 1;
  pointer-events: auto;
}

.video-loop-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.video-loop-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.video-loop-name {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.video-loop-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.video-loop-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 28px 0;
}

.video-loop-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.video-loop-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white);
  margin-top: 6px;
  text-decoration: none;
  transition: color 0.2s;
}

.video-loop-phone:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .video-loop-player {
    aspect-ratio: 9/16;
    max-height: 75vh;
    border-radius: 12px;
  }
  .video-loop-logo { width: 60px; }
  .video-loop-line { margin: 20px 0; }
}

@media (max-width: 480px) {
  .video-loop-player {
    max-height: 70vh;
    border-radius: 10px;
  }
  .video-loop-logo { width: 50px; margin-bottom: 14px; }
  .video-loop-sub { font-size: 10px; }
  .video-loop-line { margin: 16px 0; }
}

/* ═══ HARDSCAPING PROJECT GRID ═══ */
.hs-project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.hs-project-feature {
  border-radius: 12px;
  overflow: hidden;
}

.hs-project-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-project-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs-project-side img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hs-project-grid { grid-template-columns: 1fr; }
  .hs-project-feature img { aspect-ratio: 4/3; }
  .hs-project-side { flex-direction: row; }
  .hs-project-side img { aspect-ratio: 1/1; }
}
