/* ── OLYRIS DIGITAL PREMIUM DESIGN SYSTEM ── */

:root {
  /* Color Palette - Fine Desaturated Neutrals & Curated Accents */
  --bg:          #f7f6f3;       /* Warm cream editorial canvas */
  --bg-alt:      #f0eeea;       /* Subtle dark-cream split */
  --surface:     #ffffff;       /* Pure clinical white */
  --text:        #0f0f13;       /* Deep charcoal with subtle violet tint */
  --muted:       #5a5a70;       /* Refined violet-gray for readable body text */
  --subtle:      #9292a8;       /* Muted gray for labels and details */
  
  /* Desaturated Curated Accents (Saturation capped below 80%) */
  --teal:        #017a86;       /* Primary elegant teal */
  --teal-dark:   #005d67;
  --teal-lt:     #02c39a;       /* Clean desaturated mint green */
  --green:       #02c39a;
  --blue:        #1f88ee;       /* Vibrant soft tech blue */
  --pink:        #e57ac8;       /* Subtle editorial rose pink */
  
  /* Borders and Refraction Lines */
  --border:      rgba(15, 15, 19, 0.06);
  --border-light: rgba(15, 15, 19, 0.03);
  --border-white: rgba(255, 255, 255, 0.15);
  
  /* Double-Bezel Concentric Radii */
  --r-outer:     2.2rem;
  --r-inner:     calc(2.2rem - 0.5rem);
  
  /* Luxury Shadows (Highly Diffused, Tinted with Background Hue) */
  --shadow:      0 8px 30px -4px rgba(15, 15, 19, 0.03), 
                 0 20px 48px -8px rgba(15, 15, 19, 0.02);
  --shadow-lg:   0 30px 60px -15px rgba(15, 15, 19, 0.05), 
                 0 40px 80px -20px rgba(15, 15, 19, 0.03);
  --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.8), 
                  inset 0 -1px 1px rgba(15, 15, 19, 0.01);
  
  /* Global Layout Spacing & Height */
  --nav-h:       90px;
  
  /* Kinetic Choreography (Spring Physics Cubic-Bezier Curve) */
  --transition:  all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE & GLOBAL SETTINGS ───────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed Grain / Film-Noise Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ─────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(1, 122, 134, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(1, 122, 134, 0.08);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  text-wrap: balance;
}

.section-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
  text-wrap: pretty;
}

.accent-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.01em;
}

/* ── BUTTON ARCHITECTURE ───────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 8px 8px 24px; /* Room for nested circle button-in-button */
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-icon-wrapper svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

/* Primary Button style */
.btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(1, 122, 134, 0.3);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(1, 122, 134, 0.4);
}

.btn-primary:hover .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.btn-primary:hover .btn-icon-wrapper svg {
  transform: translateX(3px) translateY(-1px) scale(1.1);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

/* Outline Button style */
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(1, 122, 134, 0.25);
  padding: 13px 26px; /* Symmetrical for non-bezel layout */
}

.btn-outline:hover {
  background: rgba(1, 122, 134, 0.04);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

/* Ghost Button style */
.btn-ghost {
  background: rgba(1, 122, 134, 0.05);
  color: var(--teal);
  padding: 13px 26px;
}

.btn-ghost:hover {
  background: rgba(1, 122, 134, 0.09);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ── DOUBLE-BEZEL (DOPPELRAND) NESTING SYSTEM ── */

.double-bezel-outer {
  background: rgba(15, 15, 19, 0.02);
  border: 1px solid rgba(15, 15, 19, 0.04);
  padding: 7px;
  border-radius: var(--r-outer);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.double-bezel-inner {
  background: var(--surface);
  border-radius: var(--r-inner);
  box-shadow: var(--shadow-inset), var(--shadow);
  height: 100%;
  width: 100%;
  transition: var(--transition);
}

.double-bezel-outer:hover .double-bezel-inner {
  box-shadow: var(--shadow-inset), var(--shadow-lg);
}

/* ── HEADER & FLOATING NAVIGATION ───────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  pointer-events: none; /* Let clicks pass to background details */
}

.navbar {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(15, 15, 19, 0.05);
  border-radius: 100px;
  box-shadow: 0 4px 30px -4px rgba(15, 15, 19, 0.02), 
              0 10px 24px -6px rgba(15, 15, 19, 0.03);
  pointer-events: auto; /* Re-enable pointer events inside nav */
  transition: var(--transition-fast);
}

.navbar.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 40px -10px rgba(15, 15, 19, 0.06);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 24px;
}

.navbar-logo img {
  height: 80px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar-logo:hover img {
  opacity: 0.85;
  transform: scale(1.02);
}

.navbar-links {
  display: flex;
  gap: 6px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(15, 15, 19, 0.03);
}

.navbar-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta {
  height: 44px;
  font-size: 14px;
  padding: 4px 4px 4px 18px;
}

.navbar-cta .btn-icon-wrapper {
  width: 32px;
  height: 32px;
}

/* Hamburger Icon Animation (Morphing SVG) */
.menu-toggle {
  display: none;
  background: rgba(15, 15, 19, 0.04);
  border: 1px solid rgba(15, 15, 19, 0.05);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(15, 15, 19, 0.08);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.hamburger-svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  display: block;
}

.hamburger-svg line {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  transform-origin: center;
}

/* Open Morphing State to form perfect X */
.menu-toggle.open .line-top {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.open .line-middle {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open .line-bottom {
  transform: translateY(-5px) rotate(-45deg);
}

/* ── HERO SECTION (Asymmetrical & Breathing) ───────── */

.hero {
  min-height: 100dvh;
  position: relative;
  background: var(--bg);
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.hero-blob:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(2, 195, 154, 0.12) 0%, transparent 70%);
}

.hero-blob:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -5%;
  right: 5%;
  background: radial-gradient(circle, rgba(1, 122, 134, 0.1) 0%, transparent 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 195, 154, 0.08);
  border: 1px solid rgba(2, 195, 154, 0.15);
  color: #016b52;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(2, 195, 154, 0.25);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 3px rgba(2, 195, 154, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(2, 195, 154, 0.05); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D Mockup Z-Axis Stack */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.5/1;
  position: relative;
}

.hero-mockup-wrapper .double-bezel-inner {
  padding: 0;
  overflow: visible;
  position: relative;
}

.mockup-window {
  background: var(--surface);
  border-radius: var(--r-inner);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-bar {
  background: #f2f1ee;
  border-bottom: 1px solid var(--border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mockup-dots .dot-red { background: #ff6058; }
.mockup-dots .dot-yellow { background: #ffbd2e; }
.mockup-dots .dot-green { background: #27c93f; }

.mockup-url {
  flex: 1;
  height: 20px;
  background: #e5e4e0;
  border-radius: 6px;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-weight: 500;
  max-width: 160px;
}

.store-graphic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Mockup Badges */
.metric-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 12px 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: var(--transition);
}

.badge-sales {
  top: -15px;
  right: -15px;
  transform: rotate(2deg);
}

.badge-visitors {
  bottom: -15px;
  left: -15px;
  transform: rotate(-2deg);
}

.hero-mockup-wrapper:hover .badge-sales {
  transform: translateY(-5px) rotate(4deg) scale(1.05);
}

.hero-mockup-wrapper:hover .badge-visitors {
  transform: translateY(5px) rotate(-4deg) scale(1.05);
}

.metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}

.metric-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* ── STATS BAND ──────────────────────────────── */

.stats-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

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

.stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
  font-weight: 500;
}

/* ── MARQUEE SECTION ──────────────────────────── */

.marquee-section {
  background: var(--teal);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  animation: marquee 38s linear infinite;
  width: max-content;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  padding: 0 22px;
  line-height: 1;
}

.marquee-item.hi {
  color: #ffffff;
}

.marquee-item .sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

/* ── QUIÉNES SOMOS / ABOUT ─────────────────────── */

.about-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 80px;
  align-items: start;
}

.about-desc {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.partner-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(1, 122, 134, 0.05);
  border: 1px solid rgba(1, 122, 134, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.partner-badge svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.partner-badge:hover {
  background: rgba(1, 122, 134, 0.09);
  transform: translateY(-1px);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Feature Cards inside Bezel */
.feature-card.double-bezel-outer {
  padding: 5px;
}

.feature-card .double-bezel-inner {
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-inset), 0 4px 12px -2px rgba(15,15,19,0.01);
}

.feature-card:hover .double-bezel-inner {
  box-shadow: var(--shadow-inset), var(--shadow);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(1, 122, 134, 0.06);
  border: 1px solid rgba(1, 122, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SERVICES SECTION ──────────────────────────── */

.services-wrapper {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.services-intro {
  text-align: center;
  padding: clamp(6rem, 8vw, 8rem) 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-intro .section-body {
  margin: 0 auto;
}

.service-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.service-section:nth-of-type(even) {
  background: var(--surface);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.service-reverse .service-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-reverse .service-content {
  order: 2;
}

.service-reverse .service-graphic {
  order: 1;
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.service-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.service-points {
  margin-bottom: 36px;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.service-points li:last-child {
  border-bottom: none;
}

.service-points li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(2, 195, 154, 0.08);
  border: 1.5px solid rgba(2, 195, 154, 0.35);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%2302c39a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.service-price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.service-price-tag {
  display: flex;
  flex-direction: column;
}

.service-price-desde {
  font-size: 14px;
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Graphics Wrappers inside Double Bezel */
.graphic-frame.double-bezel-outer {
  width: 100%;
  aspect-ratio: 1.4/1;
  padding: 5px;
}

.graphic-frame .double-bezel-inner {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service 4 Custom Hard Card */
.service-update-card {
  background: #fdf4fb;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.row-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 122, 200, 0.12);
  border: 1px solid rgba(229, 122, 200, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.row-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.row-subtitle {
  font-size: 13.5px;
  color: var(--muted);
}

.card-divider {
  height: 1px;
  background: rgba(15, 15, 19, 0.05);
}

.date-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

.date-item span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-green { background: #02c39a; }
.bullet-pink { background: #e57ac8; }
.bullet-blue { background: #1f88ee; }
.bullet-yellow { background: #f5a623; }
.bullet-teal { background: var(--teal); }

.card-badge-row {
  margin-top: 8px;
  padding: 12px 18px;
  background: rgba(1, 122, 134, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--teal);
  font-weight: 600;
  width: fit-content;
  border: 1px solid rgba(1, 122, 134, 0.08);
}

/* Accent lines top for graphic bezels */
.accent-teal::after,
.accent-blue::after,
.accent-green::after,
.accent-pink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 5;
}

.accent-teal::after { background: linear-gradient(90deg, var(--teal), var(--green)); }
.accent-blue::after { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.accent-green::after { background: linear-gradient(90deg, var(--green), #a8e87c); }
.accent-pink::after { background: linear-gradient(90deg, var(--pink), var(--blue)); }

/* ── PROCESS / CÓMO TRABAJAMOS ─────────────────── */

.process-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* Staggered dynamic cards inside Bezel */
.process-step.double-bezel-outer {
  padding: 6px;
}

.process-step .double-bezel-inner {
  padding: 40px 32px;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(1, 122, 134, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── RESULTS & REVIEWS / PROOF ─────────────────── */

.proof-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.proof-header {
  text-align: center;
  margin-bottom: 40px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Main quote bezel card */
.proof-main.double-bezel-outer {
  padding: 6px;
}

.proof-main .double-bezel-inner {
  padding: 48px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: none;
}

.proof-quote {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 36px;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  opacity: 0.95;
  text-wrap: pretty;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.proof-name {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.proof-role {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 2px;
}

/* Proof Small metrics Cards */
.proof-small {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-metric.double-bezel-outer {
  padding: 5px;
}

.proof-metric .double-bezel-inner {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-metric .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-metric .lbl {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

/* Extra Review Cards */
.extra-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.extra-review-card.double-bezel-outer {
  padding: 5px;
}

.extra-review-card .double-bezel-inner {
  padding: 32px 28px;
}

.er-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

.er-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.avatar-blue { background: rgba(31, 136, 238, 0.08); color: var(--blue); }
.avatar-pink { background: rgba(229, 122, 200, 0.08); color: var(--pink); }
.avatar-teal { background: rgba(1, 122, 134, 0.08); color: var(--teal); }

.er-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.er-role {
  font-size: 12px;
  color: var(--subtle);
  font-weight: 500;
  margin-top: 1px;
}

.er-stars {
  margin-left: auto;
  color: #f5a623;
  font-size: 12px;
  letter-spacing: 1px;
}

.er-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

/* ── PORTFOLIO SECTION ────────────────────────── */

.portfolio-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.portfolio-card.double-bezel-outer {
  padding: 6px;
}

.portfolio-card .double-bezel-inner {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-devices {
  position: relative;
  padding: 32px 32px 0;
  background: #ebe9e5;
  overflow: hidden;
  aspect-ratio: 1.8/1;
  display: flex;
  align-items: flex-end;
}

.portfolio-desktop-mockup {
  width: calc(100% - 80px);
  background: var(--surface);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 8px 30px rgba(15, 15, 19, 0.06);
  z-index: 1;
}

.portfolio-bar {
  background: #f2f1ee;
  border-bottom: 1px solid var(--border);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
}

.pb-dots {
  display: flex;
  gap: 4px;
}

.pb-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pb-dots span:nth-child(1) { background: #ff6058; }
.pb-dots span:nth-child(2) { background: #ffbd2e; }
.pb-dots span:nth-child(3) { background: #27c93f; }

.pb-url {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e5e4e0;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 220px;
}

.pb-url svg {
  flex-shrink: 0;
  color: var(--subtle);
}

.pb-url span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: var(--muted);
  background: #e5e4e0;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.pb-open:hover {
  background: var(--teal);
  color: #ffffff;
}

.portfolio-desktop-mockup img {
  width: 100%;
  aspect-ratio: 1.7/1;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-desktop-mockup img {
  transform: scale(1.03);
}

.portfolio-phone-mockup {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 96px;
  background: #0f0f13;
  border-radius: 16px 16px 0 0;
  padding: 5px 5px 0;
  box-shadow: 0 10px 40px rgba(15, 15, 19, 0.25);
  border: 2px solid #2a2a2a;
  border-bottom: none;
  z-index: 2;
}

.portfolio-phone-mockup img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  display: block;
  aspect-ratio: 0.5/1;
  object-fit: cover;
  object-position: top;
}

.portfolio-info {
  padding: 28px 32px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.platform-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(2, 195, 154, 0.06);
  color: #017b5e;
  border: 1px solid rgba(2, 195, 154, 0.15);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.portfolio-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.portfolio-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition-fast);
}

.portfolio-link svg {
  transition: var(--transition-fast);
}

.portfolio-link:hover {
  color: var(--teal-dark);
}

.portfolio-link:hover svg {
  transform: translateX(4px);
}

/* ── SOCIAL GRIDS (YT, TIKTOK, INSTAGRAM) ────────── */

.yt-section,
.tiktok-section,
.ig-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  border-bottom: 1px solid var(--border);
}

.yt-section { background: var(--surface); }
.tiktok-section { background: #0b0b0e; color: #ffffff; }
.ig-section { background: var(--bg); }

.yt-header,
.tiktok-header,
.ig-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yt-header .section-body,
.tiktok-header .section-body,
.ig-header .section-body {
  margin: 12px auto 0;
}

/* TikTok label overlay custom */
.tiktok-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fe2c55;
  background: rgba(254, 44, 85, 0.08);
  border: 1px solid rgba(254, 44, 85, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tiktok-section .section-title {
  color: #ffffff;
}

.tiktok-section .section-body {
  color: rgba(255, 255, 255, 0.6);
}

/* Instagram label custom */
.ig-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(220, 39, 67, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Skeletons & Grids */
.yt-grid,
.tiktok-grid,
.ig-grid {
  display: grid;
  gap: 20px;
  margin: 0 auto;
}

.yt-grid { grid-template-columns: repeat(4, 1fr); }
.tiktok-grid { grid-template-columns: repeat(4, 1fr); max-width: 960px; }
.ig-grid { grid-template-columns: repeat(4, 1fr); }

/* YouTube Cards style */
.yt-card.double-bezel-outer {
  padding: 5px;
}

.yt-card .double-bezel-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f0f13;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.yt-card:hover .yt-thumb img {
  transform: scale(1.05);
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(15, 15, 19, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: #ffffff;
}

.yt-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.yt-card:hover .yt-play {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.08);
}

.yt-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yt-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-footer,
.tiktok-footer,
.ig-footer {
  text-align: center;
  margin-top: 48px;
}

/* TikTok Cards style */
.tt-card {
  position: relative;
  border-radius: var(--r-inner);
  overflow: hidden;
  background: #111115;
  aspect-ratio: 9/16;
  display: block;
}

.tt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.tt-card:hover img {
  transform: scale(1.04);
}

.tt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 14, 0.85) 0%, rgba(11, 11, 14, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.tt-top {
  display: flex;
  justify-content: flex-end;
}

.tt-icon {
  width: 28px;
  height: 28px;
  background: rgba(11, 11, 14, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tt-play-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  align-self: center;
  margin-bottom: 6px;
  color: #ffffff;
}

.tt-card:hover .tt-play-btn {
  background: #fe2c55;
  border-color: #fe2c55;
  transform: scale(1.08);
}

.tt-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-tiktok {
  background: #fe2c55;
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(254, 44, 85, 0.3);
  padding: 8px 8px 8px 24px;
}

.btn-tiktok:hover {
  background: #e02043;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(254, 44, 85, 0.45);
}

.btn-tiktok:hover .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.22);
}

/* Instagram Cards style */
.ig-card {
  position: relative;
  border-radius: var(--r-inner);
  overflow: hidden;
  background: #0f0f13;
  aspect-ratio: 1/1;
  display: block;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 19, 0.8) 0%, rgba(15, 15, 19, 0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.ig-card:hover .ig-overlay {
  opacity: 1;
}

.ig-caption {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 15, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(220, 39, 67, 0.3);
  padding: 8px 8px 8px 24px;
}

.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(220, 39, 67, 0.45);
}

.btn-ig:hover .btn-icon-wrapper {
  background: rgba(255, 255, 255, 0.22);
}

/* Skeletons */
.yt-skeleton.double-bezel-outer,
.tiktok-skeleton.double-bezel-outer,
.tt-skeleton.double-bezel-outer,
.ig-skeleton.double-bezel-outer {
  padding: 5px;
  aspect-ratio: auto;
}

.yt-skeleton .double-bezel-inner { aspect-ratio: 16/11.5; background: var(--surface); display: flex; flex-direction: column; }
.tiktok-skeleton .double-bezel-inner,
.tt-skeleton .double-bezel-inner { aspect-ratio: 9/16; background: rgba(255, 255, 255, 0.02); }
.ig-skeleton .double-bezel-inner { aspect-ratio: 1/1; background: var(--surface); }

.yt-sk-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #f0eeee 25%, #f9f8f7 50%, #f0eeee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

.yt-sk-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yt-sk-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0eeee 25%, #f9f8f7 50%, #f0eeee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

.yt-sk-line.short {
  width: 55%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── CTA FINAL SECTION ─────────────────────────── */

.cta-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}

.cta-inner.double-bezel-outer {
  padding: 8px;
  border-radius: 3rem;
}

.cta-inner .double-bezel-inner {
  border-radius: calc(3rem - 0.5rem);
  background: var(--teal);
  color: #ffffff;
  padding: 80px 48px;
  text-align: center;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

/* Internal smooth mesh gradient details for depth */
.cta-inner .double-bezel-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(2, 195, 154, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(31, 136, 238, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: var(--teal);
  box-shadow: 0 10px 30px -10px rgba(15, 15, 19, 0.15);
  padding: 8px 8px 8px 24px;
}

.btn-white:hover {
  background: #fbfbfa;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(15, 15, 19, 0.25);
}

.btn-white:hover .btn-icon-wrapper {
  background: rgba(1, 122, 134, 0.08);
}

.btn-white-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 13px 26px;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ── FOOTER SECTION ───────────────────────────── */

.footer {
  background: var(--text);
  color: #ffffff;
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 250px;
}

.footer h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-social .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-social .social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-social .social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
}

.footer-email {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-email:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── FLOATING ELEMENTS (WA, SCROLL-TOP) ────────── */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.6s infinite;
  transition: var(--transition-fast);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  color: #ffffff;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.scroll-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-fast);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

.scroll-top:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* ── TRANSITIONS / OBSERVER REVEAL SYSTEM ──────── */

/* Entry states for GPU acceleration reveals */
.reveal, 
.reveal-stagger-1,
.reveal-stagger-2 {
  opacity: 0;
  transform: translateY(28px) translateZ(0);
  filter: blur(4px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.reveal.visible,
.reveal-stagger-1.visible,
.reveal-stagger-2.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  filter: blur(0);
}

/* Stagger delays inside the parent containers */
.reveal-stagger-1 { transition-delay: 0.12s; }
.reveal-stagger-2 { transition-delay: 0.24s; }

/* ── RESPONSIVE STYLING (Graceful Mobile Collapse) ── */

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .service-layout, 
  .service-reverse .service-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-reverse .service-content {
    order: 0;
  }
  
  .service-reverse .service-graphic {
    order: 0;
  }
  
  .proof-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .navbar {
    width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  :root {
    --r-outer: 1.6rem;
    --r-inner: calc(1.6rem - 0.4rem);
  }

  .container {
    padding: 0 30px;
  }
  
  .navbar {
    border-radius: 20px;
  }
  
  .menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }
  
  /* Mobile Fullscreen Navigation Overlay */
  .navbar-links-wrapper {
    position: fixed;
    top: var(--nav-h);
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(15, 15, 19, 0.06);
    border-radius: var(--r-inner);
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-fast);
    z-index: 999;
  }
  
  .navbar-links-wrapper.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  .navbar-links {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-link {
    font-size: 18px;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 12px 20px;
  }
  
  .hero {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-left {
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
  
  .hero-badge, 
  .hero-ctas {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .stat-item:nth-child(3), 
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .extra-reviews {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .yt-grid { grid-template-columns: 1fr 1fr; }
  .tiktok-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  
  .cta-inner .double-bezel-inner {
    padding: 56px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
  
  .scroll-top {
    bottom: 80px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  
  .stat-item:last-child {
    border-bottom: none !important;
  }
  
  .yt-grid, 
  .tiktok-grid, 
  .ig-grid {
    grid-template-columns: 1fr;
  }
}

/* V3 art direction overrides */
:root {
  --font-display: "Outfit", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Aptos", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: var(--font-body);
  background:
    linear-gradient(90deg, rgba(15, 15, 19, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 15, 19, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto;
}

body.nav-open {
  overflow: hidden;
}

.section-title,
.hero-title,
.service-title,
.stat-num,
.service-price,
.step-num,
.proof-metric .num,
.footer h5,
.navbar-logo,
.feature-content h3,
.process-step h3,
.portfolio-info h3,
.yt-title {
  font-family: var(--font-display);
}

.accent-serif,
.proof-quote {
  font-family: var(--font-serif);
}

.grain-overlay {
  opacity: 0.72;
  z-index: 1200;
}

.hero-bg-glows {
  display: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--teal), var(--green));
  z-index: 1100;
  pointer-events: none;
}

.header {
  top: 10px;
  height: 76px;
}

.navbar {
  width: min(1120px, calc(100% - 48px));
  height: 62px;
  transform: translateZ(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 60px -34px rgba(1, 122, 134, 0.34),
    0 8px 26px -18px rgba(15, 15, 19, 0.16);
}

.navbar.scrolled {
  height: 58px;
  transform: translateY(-2px) scale(0.985);
}

.navbar-logo img {
  height: 74px;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.btn:focus-visible,
.nav-link:focus-visible,
.pb-open:focus-visible,
.portfolio-link:focus-visible,
.social-btn:focus-visible,
.scroll-top:focus-visible,
.wa-float:focus-visible {
  outline: 2px solid rgba(1, 122, 134, 0.45);
  outline-offset: 4px;
}

.hero {
  min-height: auto;
  padding-top: clamp(8rem, 13vw, 11rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 120px auto auto 0;
  width: min(52vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 122, 134, 0.48), transparent);
  transform: rotate(-7deg);
}

.hero-container {
  max-width: 1320px;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-left {
  align-self: end;
  padding-bottom: clamp(1rem, 5vw, 4rem);
}

.hero-badge,
.section-label,
.platform-tag,
.partner-badge,
.tiktok-label,
.ig-label {
  border-radius: 10px;
  letter-spacing: 0.12em;
}

.hero-title {
  font-size: clamp(3.25rem, 7.8vw, 7.1rem);
  line-height: 0.94;
  max-width: 840px;
}

.hero-sub {
  max-width: 610px;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
}

.hero-right {
  align-items: end;
  justify-content: flex-end;
  perspective: 1000px;
}

.hero-mockup-wrapper {
  max-width: 560px;
  transform: rotateX(2deg) rotateY(-7deg) translate3d(0, var(--hero-drift, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 1s var(--ease-out);
}

.hero-mockup-wrapper::before {
  content: "";
  position: absolute;
  inset: 20px -18px -22px 24px;
  border: 1px solid rgba(1, 122, 134, 0.12);
  border-radius: var(--r-outer);
  transform: translateZ(-60px) rotate(3deg);
  pointer-events: none;
}

.metric-badge {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 18px;
}

.stats-band {
  margin-top: -1px;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.stats-grid {
  grid-template-columns: 1.25fr 0.85fr 1.05fr 0.9fr;
  align-items: stretch;
}

.stat-item {
  text-align: left;
  padding: 8px clamp(1rem, 2vw, 2rem);
}

.stat-desc {
  margin: 0;
}

.marquee-section {
  transform: none;
  margin: 0;
}

.about-section {
  background:
    linear-gradient(135deg, rgba(1, 122, 134, 0.035), transparent 35%),
    var(--surface);
}

.about-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.74fr);
}

.about-left {
  position: sticky;
  top: 130px;
}

.about-right .feature-card:nth-child(2) {
  transform: translateX(34px);
}

.about-right .feature-card:nth-child(3) {
  transform: translateX(-18px);
}

.feature-card .double-bezel-inner,
.process-step .double-bezel-inner,
.extra-review-card .double-bezel-inner,
.proof-metric .double-bezel-inner {
  transition: transform 0.75s var(--ease-spring), box-shadow 0.75s var(--ease-spring);
}

.feature-card:hover .double-bezel-inner,
.process-step:hover .double-bezel-inner,
.extra-review-card:hover .double-bezel-inner,
.proof-metric:hover .double-bezel-inner {
  transform: translateY(-5px);
}

.services-intro {
  align-items: flex-start;
  text-align: left;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.services-intro .section-body {
  margin: 0;
}

.service-section {
  padding: clamp(6rem, 11vw, 12rem) 0;
  overflow: clip;
}

.service-section:nth-of-type(even) {
  background:
    linear-gradient(90deg, var(--surface), rgba(255, 255, 255, 0.58)),
    var(--surface);
}

.service-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(350px, 0.78fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.service-reverse .service-layout {
  grid-template-columns: minmax(350px, 0.78fr) minmax(0, 0.86fr);
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-number {
  color: var(--muted);
}

.service-title {
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
  line-height: 0.98;
}

.service-desc {
  max-width: 670px;
}

.service-graphic {
  position: sticky;
  top: 120px;
  align-self: start;
}

.graphic-frame.double-bezel-outer {
  aspect-ratio: 1.08/1;
  transform: translate3d(0, var(--scroll-shift, 0px), 0);
  transition: transform 0.9s var(--ease-out);
}

.service-reverse .graphic-frame.double-bezel-outer {
  --tilt: 0deg;
}

.service-points li {
  border-bottom-style: dashed;
}

.process-header,
.proof-header,
.portfolio-header,
.yt-header,
.tiktok-header,
.ig-header {
  text-align: left;
  align-items: flex-start;
}

.process-grid {
  grid-template-columns: 0.82fr 1.08fr 0.82fr;
}

.process-step:nth-child(2) {
  margin-top: 54px;
}

.process-step:nth-child(3) {
  margin-top: 108px;
}

.proof-layout {
  grid-template-columns: 1.26fr 0.72fr 0.72fr;
}

.proof-main .double-bezel-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.extra-reviews {
  grid-template-columns: 1.12fr 0.88fr 1fr;
  align-items: start;
}

.extra-review-card:nth-child(2) {
  margin-top: 42px;
}

.portfolio-grid {
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
}

.portfolio-card:nth-child(even) {
  margin-top: 72px;
}

.portfolio-devices {
  background:
    linear-gradient(135deg, rgba(1, 122, 134, 0.12), transparent 42%),
    #ebe9e5;
}

.yt-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr 0.92fr;
}

.tiktok-grid,
.ig-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.tiktok-grid {
  max-width: 980px;
}

.ig-grid {
  max-width: 980px;
}

.tt-card-wrapper.double-bezel-outer,
.ig-card-wrapper.double-bezel-outer {
  padding: 5px;
}

.tt-card-wrapper .double-bezel-inner,
.ig-card-wrapper .double-bezel-inner {
  overflow: hidden;
}

.ig-card {
  aspect-ratio: 9/16;
}

.tt-card img,
.ig-card img {
  object-position: center top;
}

.cta-section {
  padding-top: clamp(6rem, 11vw, 11rem);
}

.cta-inner .double-bezel-inner {
  text-align: left;
}

.cta-content-wrapper {
  margin: 0;
  max-width: 720px;
}

.cta-btns {
  justify-content: flex-start;
}

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

.wa-float,
.scroll-top {
  z-index: 1050;
}

.reveal,
.reveal-stagger-1,
.reveal-stagger-2 {
  transform: translateY(58px) scale(0.985) translateZ(0);
  filter: blur(8px);
  transition-duration: 1.25s;
}

.reveal.visible,
.reveal-stagger-1.visible,
.reveal-stagger-2.visible {
  transform: translateY(0) scale(1) translateZ(0);
}

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

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left,
  .service-graphic {
    position: static;
  }

  .about-left {
    max-width: 760px;
  }

  .about-right .feature-card:nth-child(2),
  .about-right .feature-card:nth-child(3),
  .portfolio-card:nth-child(even),
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .extra-review-card:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .process-grid,
  .extra-reviews,
  .yt-grid,
  .tiktok-grid,
  .ig-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    top: 8px;
    height: 70px;
  }

  .navbar {
    width: calc(100% - 36px);
    height: 60px;
    border-radius: 28px;
  }

  .navbar.scrolled {
    height: 58px;
    transform: translateY(-1px);
  }

  .navbar-logo img {
    height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-links-wrapper {
    top: 0;
    left: 0;
    right: 0;
    min-height: 100dvh;
    padding: 118px 30px 32px;
    border-radius: 0;
    border: 0;
    background:
      linear-gradient(135deg, rgba(247, 246, 243, 0.98), rgba(240, 238, 234, 0.96));
    transform: translateY(-18px);
    z-index: 980;
  }

  .navbar-links-wrapper.open {
    transform: translateY(0);
  }

  .navbar-links {
    gap: 8px;
  }

  .nav-link {
    font-size: clamp(2rem, 11vw, 3.8rem);
    line-height: 1;
    font-family: var(--font-display);
    letter-spacing: -0.04em;
    color: var(--text);
    padding: 14px 4px;
  }

  .nav-link::after {
    left: 4px;
    right: auto;
    width: 42px;
    bottom: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 6.9rem;
    padding-bottom: 2.5rem;
  }

  .hero-container,
  .service-layout,
  .service-reverse .service-layout {
    grid-template-columns: 1fr;
  }

  .hero-left {
    align-items: flex-start;
    text-align: left;
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(2.85rem, 13.6vw, 4.2rem);
    margin-bottom: 18px;
  }

  .hero-badge {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 8px 12px;
    margin-bottom: 22px;
  }

  .hero-ctas,
  .hero-badge {
    justify-content: flex-start;
  }

  .hero-mockup-wrapper {
    transform: none;
    max-width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.62;
    margin-bottom: 28px;
  }

  .metric-badge {
    padding: 10px 14px;
  }

  .stats-grid,
  .process-grid,
  .extra-reviews,
  .yt-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-grid,
  .ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .stat-item {
    border-right: none !important;
    text-align: center;
    padding: 28px 10px;
  }

  .stat-desc {
    margin: 0 auto;
    max-width: 240px;
  }

  .services-intro,
  .process-header,
  .proof-header,
  .portfolio-header,
  .yt-header,
  .tiktok-header,
  .ig-header {
    text-align: left;
    align-items: flex-start;
  }

  .about-section {
    padding: 4.5rem 0 5rem;
  }

  .about-layout {
    gap: 32px;
  }

  .about-left {
    width: 100%;
    max-width: none;
  }

  .about-left .section-title {
    font-size: clamp(2.35rem, 10.5vw, 4rem);
    line-height: 1;
    max-width: 10ch;
  }

  .about-desc {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.68;
  }

  .about-right {
    width: 100%;
    gap: 14px;
  }

  .feature-card .double-bezel-inner {
    padding: 22px;
    gap: 16px;
  }

  .service-section {
    padding: 5rem 0;
  }

  .service-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .service-price-block,
  .service-ctas,
  .cta-btns {
    align-items: stretch;
    width: 100%;
  }

  .service-ctas .btn,
  .cta-btns .btn,
  .hero-ctas .btn {
    width: 100%;
  }

  .graphic-frame.double-bezel-outer {
    transform: none;
  }

  .proof-layout,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner .double-bezel-inner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 32px;
  }

  .navbar {
    width: calc(100% - 32px);
  }

  .navbar-links-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-title {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .stats-band {
    padding: 3rem 0;
  }

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

  .yt-body {
    padding: 12px 12px 14px;
  }

  .yt-title {
    font-size: 0.82rem;
  }

  .tt-overlay,
  .ig-overlay {
    padding: 10px;
  }

  .tt-play-btn {
    width: 34px;
    height: 34px;
  }

  .tt-title,
  .ig-caption {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .stat-item {
    padding: 30px 8px;
  }

  .stat-num {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
    margin-bottom: 12px;
  }

  .stat-desc {
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-left .section-title {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
    max-width: 9ch;
  }

  .feature-card .double-bezel-inner {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
    gap: 14px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-content h3 {
    font-size: 1rem;
    line-height: 1.22;
  }

  .feature-content p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .portfolio-devices {
    display: block;
    padding: 14px 14px 0;
    aspect-ratio: auto;
    background:
      linear-gradient(135deg, rgba(1, 122, 134, 0.08), transparent 48%),
      #ebe9e5;
  }

  .portfolio-desktop-mockup {
    width: 100%;
    border-radius: 14px;
    border-bottom: 1px solid var(--border);
  }

  .portfolio-phone-mockup {
    display: none;
  }

  .portfolio-info {
    padding: 22px 24px 28px;
    border-top: 0;
  }

  .portfolio-desktop-mockup img {
    aspect-ratio: 1.72/0.82;
  }
}
