/*!
Theme Name: pinpung
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pinpung
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

pinpung is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
  ========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
:root {
  --orange: #fb9b00;
  --orange-2: #ffb32d;
  --orange-3: #ffe0a8;
  --white: #ffffff;
  --silver: #f4f6f8;
  --silver-2: #e5e9ee;
  --silver-3: #b7c0cb;
  --dark: #14161a;
  --muted: #69717d;
  --line: rgba(20,22,26,.08);
  --glass: rgba(255,255,255,.78);
  --shadow: 0 28px 80px rgba(20,22,26,.13);
  --shadow-soft: 0 18px 42px rgba(20,22,26,.08);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 88% 4%, rgba(251,155,0,.22), transparent 30%),
    radial-gradient(circle at 8% 35%, rgba(183,192,203,.24), transparent 34%),
    linear-gradient(180deg, #fff, #f7f9fb 46%, #fff);
  overflow-x: hidden;
}

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

img, video {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  /* overflow: hidden; */
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20,22,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,22,26,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, #000, transparent 76%);
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .09;
  mix-blend-mode: multiply;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(20,22,26,.18) 0 1px, transparent 1px 7px);
}

/* NAV */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 34px rgba(20,22,26,.12);
}

.nav-inner {
  width: min(1200px, calc(100% - 48px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 38px;
  object-fit: contain;
}

.logo-fallback {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 14px 34px rgba(251,155,0,.25);
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu a {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  position: relative;
  transition: .25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-2), var(--orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--orange-2);
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-btn {
  padding: 11px 22px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #ffbc00, #ff721f);
  box-shadow: 0 12px 28px rgba(251,155,0,.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #14161a;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--orange);
}

/* COMMON */
.inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 20px;
  isolation: isolate;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-title {
  margin: 16px 0 0;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 900;
}

.section-copy {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  font-weight: 550;
}

.gradient-text {
  padding-bottom: 15px;
  display: inline-block;
  background: linear-gradient(100deg, #f08d30, #ffb32d, #ffd04e, #fb9b00);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientRiver 4s linear infinite;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -170%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: rotate(20deg);
  transition: left .68s ease;
}

.btn:hover::after { left: 130%; }

.btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 20px 44px rgba(251,155,0,.32);
}

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

/* HERO */
.hero {
  position: relative;
  padding: 156px 20px 92px;
  min-height: 86vh;
  display: grid;
  place-items: center;
  color: #fff;
  isolation: isolate;
  background: #08090b;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(120deg, rgba(0,0,0,.88), rgba(0,0,0,.58) 48%, rgba(0,0,0,.28)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=85") center/cover;
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -210px;
  top: 4%;
  z-index: -2;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.46), transparent 66%);
  filter: blur(12px);
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero-ring {
  position: absolute;
  width: 540px;
  height: 540px;
  right: 3%;
  top: 22%;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.22);
  z-index: -1;
  animation: spin 28s linear infinite;
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: 70px;
  border-radius: inherit;
  border: 1px solid rgba(251,155,0,.34);
  animation: spin 18s linear infinite reverse;
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: floaty 4.8s ease-in-out infinite;
}

.hero-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(251,155,0,.18);
}

.hero h1 {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(54px, 6vw, 80px);
  line-height: .88;
  letter-spacing: -.01em;
  font-weight: 900;
  text-shadow: 0 18px 70px rgba(0,0,0,.55);
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.floating-metric {
  position: absolute;
  z-index: 3;
  min-width: 162px;
  padding: 15px 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 58px rgba(0,0,0,.20);
  animation: metricFloat 5.4s ease-in-out infinite;
}

.floating-metric small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.floating-metric b {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 30px;
  letter-spacing: -.06em;
}

.fm-1 {
  right: min(8vw, 108px);
  bottom: 21%;
}

.fm-2 {
  right: min(22vw, 310px);
  top: 25%;
  animation-delay: -1.4s;
}

.fm-3 {
  right: min(3vw, 46px);
  top: 42%;
  animation-delay: -2.6s;
}

/* INTRO */
.intro {
  background: #fff;
  padding-top: 72px;
}

.intro-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
}

.intro-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(251,155,0,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,246,248,.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.20), transparent 68%);
}

.intro-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}

.intro-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 650;
  position: relative;
  z-index: 2;
}

.expertise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.expertise-item {
  min-height: 150px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: .28s ease;
  max-width: 200px;
}

.expertise-item:hover {
  transform: translateY(-8px);
  border-color: rgba(251,155,0,.34);
  box-shadow: 0 28px 70px rgba(251,155,0,.14);
}

.expertise-item b {
  display: block;
  color: var(--orange);
  font-size: 20px;
  line-height: .95;
  letter-spacing: -.06em;
}

.expertise-item span {
  display: block;
  margin-top: 12px;
  color: #515a65;
  font-weight: 900;
  line-height: 1.45;
}

/* SERVICES */
.services {
  background:
    radial-gradient(circle at 12% 10%, rgba(251,155,0,.14), transparent 30%),
    linear-gradient(135deg, #f8fafc, #fff);
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.services-head .section-copy {
  max-width: 460px;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(20,22,26,.08);
  box-shadow: 0 16px 42px rgba(20,22,26,.07);
  overflow: hidden;
  transition: .35s cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
  isolation: isolate;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 4;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 8%, rgba(251,155,0,.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(244,246,248,.78));
  opacity: 0;
  transition: .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 46%;
  height: 190%;
  top: -45%;
  left: -80%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: rotate(18deg);
}

.service-card:hover {
  transform: translateY(-12px) rotateX(3deg) rotateY(-3deg);
  border-color: rgba(251,155,0,.34);
  box-shadow:
    0 34px 92px rgba(20,22,26,.16),
    0 0 46px rgba(251,155,0,.13);
}

.service-card:hover::before { opacity: 1; }

.service-card:hover::after {
  animation: cardShine .9s ease forwards;
}

.service-no {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 16px 34px rgba(251,155,0,.26);
}

.service-card h3 {
  margin: 28px 0 0;
  max-width: 440px;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.03;
  letter-spacing: -.052em;
  font-weight: 900;
}

.service-card p {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 650;
}

.service-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(20,22,26,.08);
}

.service-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-2), var(--orange), #ffe7a5);
  transform: scaleX(.18);
  transform-origin: left;
  transition: .45s cubic-bezier(.16,1,.3,1);
}

.service-card:hover .service-line span {
  transform: scaleX(1);
}

/* PROCESS */
.process {
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.24), transparent 68%);
  filter: blur(10px);
  animation: glow 4.2s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,155,0,.28);
  animation: spin linear infinite;
}

.r1 { width: 430px; height: 430px; animation-duration: 20s; }
.r2 { width: 548px; height: 548px; animation-duration: 28s; animation-direction: reverse; border-style: dashed; }

.phone {
  position: relative;
  z-index: 4;
  width: 306px;
  height: 610px;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(145deg, #fff, var(--silver-3) 42%, #6f7782);
  box-shadow: 0 38px 100px rgba(20,22,26,.26), inset 0 0 0 1px rgba(255,255,255,.5);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 99px;
  background: #15171b;
  z-index: 5;
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(to top, rgba(251,155,0,.44), transparent 44%),
    url("https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=900&q=85") center/cover;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.1), transparent 35%, rgba(0,0,0,.46)),
    radial-gradient(circle at 74% 18%, rgba(251,155,0,.36), transparent 34%);
}

.phone-ui {
  position: absolute;
  inset: 58px 22px 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  color: #fff;
}

.phone-pill {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.phone-ui h3 {
  margin: 0;
  font-size: 36px;
  line-height: .95;
  letter-spacing: -.06em;
}

.phone-ui p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  line-height: 1.5;
}

.data-card {
  position: absolute;
  z-index: 6;
  min-width: 168px;
  padding: 15px 17px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(20,22,26,.13);
  animation: metricFloat 5.6s ease-in-out infinite;
}

.data-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.data-card b {
  display: block;
  margin-top: 5px;
  color: var(--dark);
  font-size: 28px;
  letter-spacing: -.05em;
}

.dc1 { top: 104px; left: 0; }
.dc2 { right: 0; bottom: 150px; animation-delay: -1.5s; }
.dc3 { left: 34px; bottom: 84px; animation-delay: -2.4s; }

.process-steps {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(20,22,26,.06);
  transition: .28s ease;
}

.step:hover {
  transform: translateX(8px);
  border-color: rgba(251,155,0,.32);
  box-shadow: 0 24px 60px rgba(251,155,0,.12);
}

.step i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #8f99a6, var(--silver-3));
}

.step:nth-child(2) i,
.step:nth-child(4) i {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 12px 26px rgba(251,155,0,.22);
}

.step h4 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.02em;
}

.step p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}


/* IMAGE ORB CLUSTER - replaces phone visual */
.phone-stage {
  min-height: 650px;
  perspective: 1200px;
}

.phone,
.screen,
.phone-ui,
.phone-glow,
.ring {
  display: none !important;
}

.image-orb-stage {
  position: relative;
  width: min(620px, 100%);
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.image-orb-stage::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(251,155,0,.18), transparent 58%),
    conic-gradient(from 120deg, rgba(251,155,0,.46), rgba(255,255,255,.18), rgba(183,192,203,.36), rgba(251,155,0,.28));
  filter: blur(.4px);
  opacity: .86;
  animation: orbHaloSpin 22s linear infinite;
  z-index: -3;
}

.image-orb-stage::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  border: 1px dashed rgba(251,155,0,.34);
  box-shadow:
    inset 0 0 34px rgba(251,155,0,.08),
    0 0 44px rgba(251,155,0,.10);
  animation: spin 28s linear infinite reverse;
  z-index: -2;
}

.image-orb-main {
  position: relative;
  z-index: 4;
  width: min(390px, 74vw);
  aspect-ratio: 4 / 5;
  border-radius: 42px;
  overflow: hidden;
  background: var(--silver);
  border: 10px solid rgba(255,255,255,.74);
  box-shadow:
    0 36px 100px rgba(20,22,26,.22),
    0 0 0 1px rgba(20,22,26,.06),
    0 0 68px rgba(251,155,0,.20);
  animation: mainCardFloat 5.8s ease-in-out infinite;
  transform-style: preserve-3d;
}

.image-orb-main img,
.image-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-orb-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.42), transparent 55%),
    radial-gradient(circle at 78% 18%, rgba(251,155,0,.35), transparent 32%);
  pointer-events: none;
}

.image-orb-main .orb-label {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}

.image-orb-main .orb-label small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.image-orb-main .orb-label b {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: .94;
  letter-spacing: -.06em;
}

.image-orb {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  border-radius: 30px;
  background: var(--silver);
  border: 7px solid rgba(255,255,255,.78);
  box-shadow:
    0 24px 70px rgba(20,22,26,.16),
    0 0 30px rgba(251,155,0,.12);
  animation: miniCardFloat 5.4s ease-in-out infinite;
  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease,
    filter .35s ease,
    border-radius .35s ease;
}

.image-orb:hover {
  transform: translateY(-12px) scale(1.08) rotate(1.5deg);
  border-radius: 38px;
  box-shadow:
    0 34px 92px rgba(20,22,26,.22),
    0 0 52px rgba(251,155,0,.24);
  filter: saturate(1.12) contrast(1.05);
  z-index: 8;
}

.image-orb:hover img {
  transform: scale(1.12);
}

.image-orb img {
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.orb-1 {
  width: 180px;
  height: 128px;
  top: 42px;
  left: 28px;
  transform: rotate(-8deg);
}

.orb-2 {
  width: 152px;
  height: 190px;
  top: 76px;
  right: 18px;
  animation-delay: -1.2s;
  transform: rotate(7deg);
}

.orb-3 {
  width: 210px;
  height: 148px;
  right: -2px;
  bottom: 142px;
  animation-delay: -2.4s;
  transform: rotate(8deg);
}

.orb-4 {
  width: 160px;
  height: 204px;
  left: 8px;
  bottom: 86px;
  animation-delay: -3.1s;
  transform: rotate(-7deg);
}

.orb-badge {
  position: absolute;
  z-index: 9;
  min-width: 158px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(20,22,26,.13);
  animation: metricFloat 5.6s ease-in-out infinite;
}

.orb-badge small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.orb-badge b {
  display: block;
  margin-top: 5px;
  color: var(--dark);
  font-size: 28px;
  letter-spacing: -.05em;
}

.ob-1 {
  left: 0;
  top: 230px;
}

.ob-2 {
  right: 0;
  bottom: 64px;
  animation-delay: -1.7s;
}

.spark-dot {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(251,155,0,.13), 0 0 28px rgba(251,155,0,.5);
  animation: sparkDrift 5s ease-in-out infinite;
}

.sd-1 { top: 26%; left: 14%; }
.sd-2 { top: 18%; right: 18%; animation-delay: -1.3s; }
.sd-3 { bottom: 20%; left: 24%; animation-delay: -2.1s; }
.sd-4 { bottom: 30%; right: 12%; animation-delay: -3.2s; }

@keyframes orbHaloSpin {
  to { transform: rotate(360deg); }
}

@keyframes cardCornerPulse_unused {
  0%, 100% { border-radius: 42px; }
  50% { border-radius: 52px; }
}

@keyframes mainCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(1.4deg); }
}

@keyframes miniCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  33% { transform: translate3d(0, -16px, 0) rotate(1.2deg); }
  66% { transform: translate3d(9px, -7px, 0) rotate(-1deg); }
}

@keyframes sparkDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.86); opacity: .55; }
  50% { transform: translate3d(18px, -20px, 0) scale(1.12); opacity: 1; }
}

@media (max-width: 720px) {
  .image-orb-stage {
    min-height: 520px;
    transform: scale(.86);
    transform-origin: center;
    margin: -36px 0 -54px;
  }

  .orb-1 { left: 18px; top: 44px; }
  .orb-2 { right: 18px; top: 82px; }
  .orb-3 { right: 10px; bottom: 116px; }
  .orb-4 { left: 14px; bottom: 84px; }

  .orb-badge {
    min-width: 136px;
  }

  .ob-1 { left: 4px; top: 218px; }
  .ob-2 { right: 4px; bottom: 42px; }
}

/* CTA */
.cta {
  background:
    radial-gradient(circle at 85% 12%, rgba(251,155,0,.26), transparent 34%),
    linear-gradient(135deg, #101114, #23272f);
  color: #fff;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -210px;
  top: -220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.30), transparent 68%);
  filter: blur(12px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
  overflow: hidden;
}

.cta-card h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -.065em;
}

.cta-card p {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-weight: 650;
  font-size: 17px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* FOOTER */
.footer {
  padding: 64px 20px;
  text-align: center;
  color: var(--dark);
  background:
    radial-gradient(circle at 50% 0%, rgba(251,155,0,.18), transparent 34%),
    linear-gradient(135deg, #fff, #edf1f5);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 132px;
  margin: 0 auto 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #57616d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  transition: .24s ease;
}

.footer-links a:hover { color: var(--orange); }

.footer p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-bubble {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: rgba(20,22,26,.88);
  border: 1px solid rgba(251,155,0,.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  color: white;
  transition: .28s ease;
  animation: floaty 5.2s ease-in-out infinite;
}

.contact-bubble:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #ffb32d, #fb9b00);
}

.bubble-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(251,155,0,.32);
}

.bubble-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bubble-text small {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bubble-text strong {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 900;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(.96);
  filter: blur(12px);
  transition:
    opacity .86s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    filter .86s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@keyframes gradientRiver {
  from { background-position: 0% center; }
  to { background-position: 240% center; }
}

@keyframes heroBreath {
  from { transform: scale(1.05); filter: saturate(1.04) contrast(1.02); }
  to { transform: scale(1.14) translate3d(-1.2%, 1%, 0); filter: saturate(1.18) contrast(1.08); }
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(.95); opacity: .72; }
  to { transform: translate3d(-120px, 120px, 0) scale(1.16); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(0, -12px, 0) rotate(1deg); }
}

@keyframes metricFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  33% { transform: translate3d(0, -14px, 0) rotate(1.3deg); }
  66% { transform: translate3d(8px, -6px, 0) rotate(-1deg); }
}

@keyframes glow {
  0%, 100% { opacity: .65; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes cardShine {
  0% { left: -80%; opacity: 0; }
  30% { opacity: .88; }
  100% { left: 130%; opacity: 0; }
}

@media (max-width: 1080px) {
  .intro-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .expertise-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-head {
    display: block;
  }

  .services-head .section-copy {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .menu { display: none; }

  .menu-toggle { display: block; }

  .menu.is-open {
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
  }

  .menu.is-open a {
    display: block;
    color: #20242b;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(20,22,26,.05);
  }

  .menu.is-open .contact-btn {
    color: #fff !important;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
  }

  .menu a::after { display: none; }

  .floating-metric {
    display: none;
  }

  .service-card:nth-child(n) {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

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

  .expertise-strip {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 560px;
    transform: scale(.84);
    transform-origin: center;
    margin: -40px 0;
  }

  .phone {
    width: 282px;
    height: 562px;
  }

  .data-card {
    min-width: 150px;
  }

  .dc1 { left: -12px; }
  .dc2 { right: -12px; }
  .dc3 { left: 8px; }

.cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: stretch;
  }

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

  .contact-bubble {
    left: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
    CLEAN PREMIUM IMAGE STACK
    toned down from busy floating cards
========================================================= */
.phone-stage {
  min-height: 620px !important;
  display: grid !important;
  place-items: center !important;
  perspective: 1200px;
}

.image-orb-stage {
  position: relative !important;
  width: min(560px, 100%) !important;
  min-height: 560px !important;
  display: grid !important;
  place-items: center !important;
  isolation: isolate;
}

.image-orb-stage::before {
  width: 470px !important;
  height: 470px !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(251,155,0,.14), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(244,246,248,.1)) !important;
  filter: blur(8px) !important;
  opacity: .9 !important;
  animation: softAura 8s ease-in-out infinite !important;
}

.image-orb-stage::after {
  width: 390px !important;
  height: 390px !important;
  border: 1px solid rgba(251,155,0,.16) !important;
  border-radius: 44px !important;
  transform: rotate(-8deg) !important;
  animation: none !important;
  box-shadow: none !important;
  opacity: .75 !important;
}

.spark-dot {
  display: none !important;
}

.image-orb-main {
  width: min(390px, 76vw) !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 38px !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow:
    0 34px 90px rgba(20,22,26,.18),
    0 0 0 10px rgba(255,255,255,.42) !important;
  animation: cleanMainFloat 6.5s ease-in-out infinite !important;
}

.image-orb-main::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(120deg, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(to top, rgba(0,0,0,.46), transparent 58%) !important;
  opacity: 1 !important;
  border-radius: inherit !important;
}

.image-orb-main::after {
  display: none !important;
}

.image-orb-main .orb-label {
  z-index: 4 !important;
  bottom: 30px !important;
  left: 30px !important;
  right: 30px !important;
}

.image-orb-main .orb-label b {
  font-size: clamp(30px, 4vw, 46px) !important;
}

.image-orb {
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.82) !important;
  box-shadow:
    0 20px 54px rgba(20,22,26,.14),
    0 0 0 8px rgba(255,255,255,.38) !important;
  animation: cleanSideFloat 7s ease-in-out infinite !important;
  opacity: .96 !important;
}

.image-orb:hover {
  transform: translateY(-8px) scale(1.045) rotate(0deg) !important;
  border-radius: 28px !important;
  box-shadow:
    0 30px 78px rgba(20,22,26,.18),
    0 0 38px rgba(251,155,0,.18) !important;
}

.orb-1 {
  width: 168px !important;
  height: 118px !important;
  top: 76px !important;
  left: 18px !important;
  transform: rotate(-6deg) !important;
}

.orb-2 {
  width: 148px !important;
  height: 178px !important;
  top: 116px !important;
  right: 8px !important;
  transform: rotate(6deg) !important;
}

.orb-3 {
  width: 176px !important;
  height: 122px !important;
  right: 18px !important;
  bottom: 120px !important;
  transform: rotate(5deg) !important;
}

.orb-4 {
  display: none !important;
}

.orb-badge {
  border-radius: 22px !important;
  min-width: 148px !important;
  padding: 13px 15px !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow:
    0 18px 48px rgba(20,22,26,.12),
    0 0 0 1px rgba(255,255,255,.76) !important;
  animation: cleanBadgeFloat 6.8s ease-in-out infinite !important;
}

.orb-badge b {
  font-size: 24px !important;
}

.ob-1 {
  left: 34px !important;
  top: auto !important;
  bottom: 154px !important;
}

.ob-2 {
  right: 34px !important;
  bottom: 54px !important;
}

@keyframes softAura {
  0%, 100% { transform: scale(.96); opacity: .72; }
  50% { transform: scale(1.05); opacity: .95; }
}

@keyframes cleanMainFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(-1deg); }
  50% { transform: translate3d(0,-12px,0) rotate(.8deg); }
}

@keyframes cleanSideFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

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

@media (max-width: 720px) {
  .phone-stage {
    min-height: 560px !important;
    transform: none !important;
    margin: 0 !important;
  }

  .image-orb-stage {
    min-height: 510px !important;
    transform: scale(.9) !important;
  }

  .image-orb-stage::after {
    width: 330px !important;
    height: 330px !important;
  }

  .orb-1 {
    left: 0 !important;
    top: 70px !important;
  }

  .orb-2 {
    right: 0 !important;
    top: 110px !important;
  }

  .orb-3 {
    right: 6px !important;
    bottom: 112px !important;
  }

  .ob-1 {
    left: 18px !important;
    bottom: 138px !important;
  }

  .ob-2 {
    right: 18px !important;
    bottom: 34px !important;
  }
}


/* =========================================================
    CLEAN CAMPAIGN FLOW GALLERY
    no overlap, more editorial, less chaos
========================================================= */
.phone-stage {
  min-height: 650px !important;
  display: grid !important;
  place-items: center !important;
  transform: none !important;
  margin: 0 !important;
}

.phone,
.screen,
.phone-ui,
.phone-glow,
.ring,
.image-orb-stage,
.image-orb-main,
.image-orb,
.orb-badge,
.spark-dot {
  display: none !important;
}

.flow-gallery-stage {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  gap: 18px;
  isolation: isolate;
}

.flow-glow {
  position: absolute;
  inset: 10% 4% auto auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.18), transparent 66%);
  filter: blur(12px);
  z-index: -2;
  animation: flowGlow 7s ease-in-out infinite;
}

.flow-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 46px 38px 90px 38px;
  z-index: -3;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(244,246,248,.78)),
    radial-gradient(circle at 90% 18%, rgba(251,155,0,.16), transparent 34%);
  border: 1px solid rgba(20,22,26,.06);
  box-shadow: 0 28px 80px rgba(20,22,26,.08);
  transform: rotate(-2deg);
}

.flow-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 22px 62px rgba(20,22,26,.12),
    0 0 0 1px rgba(20,22,26,.04);
  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease,
    filter .35s ease;
  will-change: transform;
}

.flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.5), transparent 56%),
    radial-gradient(circle at 82% 16%, rgba(251,155,0,.24), transparent 34%);
  pointer-events: none;
}

.flow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.flow-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 90px rgba(20,22,26,.16),
    0 0 42px rgba(251,155,0,.16);
  filter: saturate(1.08);
}

.flow-card:hover img {
  transform: scale(1.08);
}

.flow-card-main {
  height: 360px;
  border-radius: 36px;
  animation: flowRise 6.4s ease-in-out infinite;
}

.flow-card-text {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.flow-card-text small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.flow-card-text b {
  display: block;
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: .96;
  letter-spacing: -.06em;
}

.flow-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.flow-card.mini {
  height: 155px;
  border-radius: 26px;
  animation: flowMiniFloat 6.8s ease-in-out infinite;
}

.flow-card.mini:nth-child(2) {
  animation-delay: -1.4s;
}

.flow-card.mini:nth-child(3) {
  animation-delay: -2.8s;
}

.flow-card.mini span {
  position: absolute;
  z-index: 4;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(20,22,26,.58);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
}

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

.flow-metrics div {
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(20,22,26,.06);
  box-shadow: 0 16px 46px rgba(20,22,26,.08);
  backdrop-filter: blur(16px);
  transition: transform .32s ease, box-shadow .32s ease;
}

.flow-metrics div:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(20,22,26,.12),
    0 0 34px rgba(251,155,0,.12);
}

.flow-metrics small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.flow-metrics b {
  display: block;
  margin-top: 5px;
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.06em;
}

@keyframes flowGlow {
  0%, 100% { transform: scale(.94); opacity: .65; }
  50% { transform: scale(1.08); opacity: .95; }
}

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

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

@media (max-width: 720px) {
  .phone-stage {
    min-height: auto !important;
    padding: 20px 0 34px;
  }

  .flow-gallery-stage {
    width: 100%;
    gap: 12px;
  }

  .flow-gallery-stage::before {
    inset: 32px 18px 68px 18px;
    border-radius: 30px;
  }

  .flow-card-main {
    height: 320px;
    border-radius: 30px;
  }

  .flow-mini-grid {
    gap: 10px;
  }

  .flow-card.mini {
    height: 120px;
    border-radius: 20px;
  }

  .flow-card.mini span {
    left: 9px;
    bottom: 9px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .flow-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* =========================================================
    FINAL CLEAN SERVICES VISUAL FIX
    กันเละ: ไม่ absolute ทับกัน, ไม่ใช้ phone, ไม่ใช้ orb
========================================================= */
.services .phone-stage {
  min-height: auto !important;
  display: block !important;
  place-items: unset !important;
  transform: none !important;
  margin: 0 !important;
  perspective: none !important;
}

.services .phone,
.services .screen,
.services .phone-ui,
.services .phone-glow,
.services .ring,
.services .image-orb-stage,
.services .image-orb-main,
.services .image-orb,
.services .orb-badge,
.services .spark-dot,
.services .flow-gallery-stage,
.services .flow-card,
.services .flow-mini-grid,
.services .flow-metrics,
.services .flow-glow {
  display: none !important;
}

.clean-showcase,
.clean-showcase * {
  box-sizing: border-box;
}

.clean-showcase {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 80% 0%, rgba(251,155,0,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(244,246,248,.78));
  border: 1px solid rgba(20,22,26,.06);
  box-shadow:
    0 30px 90px rgba(20,22,26,.10),
    inset 0 0 0 1px rgba(255,255,255,.72);
  overflow: hidden;
  isolation: isolate;
  animation: showcaseFloat 7s ease-in-out infinite;
}

.clean-showcase::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,155,0,.24), transparent 68%);
  filter: blur(10px);
  z-index: -1;
  animation: showcaseGlow 6s ease-in-out infinite;
}

.showcase-main {
  position: relative;
  height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 22px 62px rgba(20,22,26,.14);
}

.showcase-main img,
.showcase-mini img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .35s ease;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.62), transparent 60%),
    radial-gradient(circle at 82% 18%, rgba(251,155,0,.24), transparent 32%);
  pointer-events: none;
}

.showcase-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.showcase-caption small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.showcase-caption b {
  display: block;
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: .96;
  letter-spacing: -.06em;
}

.showcase-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.showcase-mini {
  position: relative;
  height: 138px;
  border-radius: 24px;
  overflow: hidden;
  background: #e9edf2;
  box-shadow: 0 14px 40px rgba(20,22,26,.10);
}

.showcase-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.48), transparent 58%);
  pointer-events: none;
}

.showcase-mini span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(20,22,26,.56);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.showcase-stats div {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(20,22,26,.06);
  box-shadow: 0 12px 34px rgba(20,22,26,.07);
  backdrop-filter: blur(14px);
}

.showcase-stats small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.showcase-stats b {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.06em;
}

.showcase-main:hover img,
.showcase-mini:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.showcase-main,
.showcase-mini,
.showcase-stats div {
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}

.showcase-main:hover,
.showcase-mini:hover,
.showcase-stats div:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 70px rgba(20,22,26,.14),
    0 0 34px rgba(251,155,0,.12);
}

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

@keyframes showcaseGlow {
  0%, 100% { transform: scale(.94); opacity: .62; }
  50% { transform: scale(1.08); opacity: .95; }
}

@media (max-width: 720px) {
  .clean-showcase {
    padding: 12px;
    border-radius: 30px;
  }

  .showcase-main {
    height: 300px;
    border-radius: 24px;
  }

  .showcase-row {
    gap: 10px;
  }

  .showcase-mini {
    height: 105px;
    border-radius: 18px;
  }

  .showcase-mini span {
    left: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .showcase-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}



/* =========================================================
    SERVICES HORIZONTAL SLIDER — NO VISIBLE SCROLLBAR
    Real-photo backgrounds with readable content overlays
========================================================= */
.services-slider {
  position: relative;
}

.service-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 14px;
}

.service-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20,22,26,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(20,22,26,.08);
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.service-nav:hover,
.service-nav:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 16px 34px rgba(251,155,0,.24);
  transform: translateY(-3px);
  outline: none;
}

.service-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 3px 16px;
  margin: 0 -3px;
  cursor: grab;
}

.service-viewport:active { cursor: grabbing; }
.service-viewport::-webkit-scrollbar { display: none; width: 0; height: 0; }

.service-grid {
  display: flex;
  width: max-content;
  gap: 18px;
}

.service-card,
.service-card:nth-child(n) {
  flex: 0 0 clamp(292px, 31vw, 390px);
  min-height: 352px;
  grid-column: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: #fff;
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 18px 44px rgba(20,22,26,.14);
  background-color: #20242b;
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1000&q=88");
  background-position: center;
}

.service-card:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1000&q=88");
  background-position: center;
}

.service-card:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1000&q=88");
  background-position: center;
}

.service-card:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1000&q=88");
  background-position: center;
}

.service-card:nth-child(5) {
  background-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1000&q=88");
  background-position: center;
}

.service-card::before {
  z-index: 0;
  opacity: 1;
  background:
    radial-gradient(circle at 88% 8%, rgba(251,155,0,.42), transparent 33%),
    linear-gradient(180deg, rgba(10,12,15,.08) 0%, rgba(10,12,15,.28) 42%, rgba(10,12,15,.88) 100%);
}

.service-card:hover::before { opacity: .84; }

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .service-no {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.service-card h3 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,.30);
}

.service-card p {
  color: rgba(255,255,255,.84);
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.service-line {
  z-index: 1;
  background: rgba(255,255,255,.20);
}

.service-card:hover {
  border-color: rgba(255,255,255,.54);
  box-shadow:
    0 34px 92px rgba(20,22,26,.22),
    0 0 46px rgba(251,155,0,.20);
}

@media (max-width: 900px) {
  .service-card,
  .service-card:nth-child(n) { flex-basis: min(76vw, 390px); }
}

@media (max-width: 560px) {
  .service-slider-controls { margin-bottom: 10px; }
  .service-nav { width: 44px; height: 44px; border-radius: 14px; }
  .service-viewport { padding-bottom: 12px; }
  .service-card,
  .service-card:nth-child(n) {
    flex-basis: 84vw;
    min-height: 338px;
    padding: 25px;
    border-radius: 29px;
  }
}

/* =========================================================
    SERVICES CAROUSEL — FULL LANDSCAPE CARDS
    White viewport, one complete card per slide, no clipped edges
========================================================= */
.services-slider {
  width: 100%;
}

.service-slider-controls {
  margin-bottom: 14px;
}

.service-viewport {
  width: 100%;
  padding: 16px;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  border: 1px solid rgba(20,22,26,.08);
  border-radius: 34px;
  box-shadow: 0 20px 52px rgba(20,22,26,.07);
  scroll-padding-inline: 16px;
  cursor: default;
}

.service-viewport:active { cursor: default; }
.service-viewport::-webkit-scrollbar { display: none; width: 0; height: 0; }

.service-grid {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 100%;
  grid-template-columns: none;
  width: 100%;
  gap: 18px;
}

.service-card,
.service-card:nth-child(n) {
/*   width: 100%; */
	width: 85%;
  min-width: 0;
  min-height: 288px;
  padding: 32px;
  grid-column: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 26px;
  transform: none;
  transform-style: flat;
}
.service-card:nth-child(1) { transform: translateX(0%); }
.service-card:nth-child(2) { transform: translateX(4%); }
.service-card:nth-child(3) { transform: translateX(8%); }
.service-card:nth-child(4) { transform: translateX(13%); }
.service-card:nth-child(5) { transform: translateX(18%); }

.service-card:hover {
/*   transform: translateY(-5px); */
}

@media (max-width: 720px) {
	.service-card,.service-card:nth-child(n) {width: 100%;}
.service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { transform: translateX(0%); }
  .service-viewport {
    padding: 12px;
    border-radius: 26px;
    scroll-padding-inline: 12px;
  }
	.service-card:hover {
  transform: translateY(-5px);
}

  .service-grid {
    gap: 14px;
  }

  .service-card,
  .service-card:nth-child(n) {
    min-height: 292px;
    padding: 25px;
    border-radius: 21px;
  }
}

:root {
      --orange: #fb9b00;
      --orange-2: #ffb32d;
      --dark: #14161a;
      --muted: #69717d;
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      color: var(--dark);
      background: #fff;
    }

    .section {
      position: relative;
      padding: clamp(78px, 9vw, 132px) 20px;
    }

    .services {
      background:
        radial-gradient(circle at 12% 10%, rgba(251,155,0,.14), transparent 30%),
        linear-gradient(135deg, #f8fafc, #fff);
    }

    .inner {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .services-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 38px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 30px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
    }

    .section-title {
      margin: 16px 0 0;
      font-size: clamp(38px, 5.8vw, 82px);
      line-height: 1.04;
      letter-spacing: -.065em;
      font-weight: 900;
    }

    .gradient-text {
      display: inline-block;
      background: linear-gradient(100deg, #f08d30, #ffb32d, #ffd04e, #fb9b00);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-copy {
      max-width: 460px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.82;
      font-weight: 550;
    }

    .service-accordion {
      display: grid;
      gap: 14px;
      margin-top: 34px;
    }

    .service-collapse-item {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(20,22,26,.09);
      border-radius: 26px;
      background:
        radial-gradient(circle at 92% 0%, rgba(251,155,0,.10), transparent 26%),
        rgba(255,255,255,.90);
      box-shadow: 0 14px 38px rgba(20,22,26,.06);
      transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease, background .3s ease;
    }

    .service-collapse-item:hover {
      transform: translateY(-2px);
      border-color: rgba(251,155,0,.30);
      box-shadow: 0 20px 54px rgba(20,22,26,.09);
    }

    .service-collapse-item.is-open {
      border-color: rgba(251,155,0,.42);
      background:
        radial-gradient(circle at 92% 0%, rgba(251,155,0,.16), transparent 30%),
        #fff;
      box-shadow: 0 26px 70px rgba(20,22,26,.11), 0 0 0 1px rgba(251,155,0,.05);
    }

    .service-collapse-trigger {
      width: 100%;
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr) 46px;
      gap: 20px;
      align-items: center;
      padding: 24px 26px;
      border: 0;
      background: transparent;
      color: var(--dark);
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .service-collapse-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 19px;
      color: #fff;
      font-size: 20px;
      background: linear-gradient(135deg, var(--orange-2), var(--orange));
      box-shadow: 0 13px 30px rgba(251,155,0,.25);
      transition: transform .3s cubic-bezier(.16,1,.3,1);
    }

    .service-collapse-item.is-open .service-collapse-icon {
      transform: rotate(-4deg) scale(1.04);
    }

    .service-collapse-heading { min-width: 0; }

    .service-collapse-heading h3 {
      margin: 0;
      font-size: clamp(20px, 2.1vw, 30px);
      line-height: 1.08;
      letter-spacing: -.04em;
      font-weight: 900;
      text-transform: uppercase;
    }

    .service-collapse-heading p {
      margin: 8px 0 0;
      max-width: 850px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      font-weight: 650;
    }

    .service-collapse-plus {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      justify-self: end;
      border-radius: 50%;
      color: var(--dark);
      background: rgba(20,22,26,.055);
      border: 1px solid rgba(20,22,26,.07);
      font-size: 18px;
      transition: transform .36s cubic-bezier(.16,1,.3,1), background .25s ease, color .25s ease;
    }

    .service-collapse-item.is-open .service-collapse-plus {
      transform: rotate(45deg);
      color: #fff;
      background: linear-gradient(135deg, var(--orange-2), var(--orange));
      border-color: transparent;
    }

    .service-collapse-panel {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows .42s cubic-bezier(.16,1,.3,1), opacity .28s ease;
    }

    .service-collapse-panel-inner { overflow: hidden; }

    .service-collapse-panel p {
      margin: 0 26px 0 104px;
      max-width: 900px;
      color: #505966;
      font-size: 16px;
      line-height: 1.8;
      font-weight: 600;
      border-top: 1px solid transparent;
      transition: padding .35s ease, margin-bottom .35s ease, border-color .35s ease;
    }

    .service-collapse-item.is-open .service-collapse-panel {
      grid-template-rows: 1fr;
      opacity: 1;
    }

    .service-collapse-item.is-open .service-collapse-panel p {
      padding-top: 20px;
      margin-bottom: 26px;
      border-top-color: rgba(20,22,26,.08);
    }

    .service-collapse-trigger:focus-visible {
      outline: 3px solid rgba(251,155,0,.28);
      outline-offset: -3px;
      border-radius: 26px;
    }

    @media (max-width: 1080px) {
      .services-head { display: block; }
      .section-copy { max-width: 720px; }
    }

    @media (max-width: 720px) {
      .inner { width: min(var(--max), calc(100% - 12px)); }
      .service-accordion { gap: 11px; }

      .service-collapse-trigger {
        grid-template-columns: 46px minmax(0,1fr) 38px;
        gap: 13px;
        padding: 18px;
      }

      .service-collapse-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 17px;
      }

      .service-collapse-heading h3 { font-size: 18px; }

      .service-collapse-heading p {
        font-size: 13px;
        line-height: 1.55;
      }

      .service-collapse-plus {
        width: 38px;
        height: 38px;
        font-size: 15px;
      }

      .service-collapse-panel p {
        margin-left: 77px;
        margin-right: 18px;
        font-size: 14px;
        line-height: 1.75;
      }

      .service-collapse-item.is-open .service-collapse-panel p {
        padding-top: 16px;
        margin-bottom: 20px;
      }
    }