/* NADesigns v4 — Light Editorial Design System */

:root {
  /* Brand aqua */
  --blue: #48CAE4;
  --blue-hover: #2DB8D6;
  --blue-support: #90E0EF;
  --blue-accent: #ADE8F4;
  --blue-tint: #E8F9FC;
  --blue-light: #E8F9FC;

  /* Backgrounds */
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --beige: #F3EBDD;
  --brown: #8A6A4A;
  --surface: #FFFFFF;

  /* Text */
  --text: #1F2937;
  --text-muted: #6B7280;
  --off-white: #FAF7F2;

  /* Surfaces & borders */
  --border: #E5E7EB;
  --border-dark: #E5E7EB;

  /* Legacy aliases (mapped to light) */
  --bg-dark: #FFFFFF;
  --bg-charcoal: #FAF7F2;
  --black: #1F2937;
  --charcoal: #FAF7F2;
  --glass: #FFFFFF;
  --glass-light: #FFFFFF;
  --text-on-dark: #1F2937;

  /* Layout */
  --radius: 22px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(31, 41, 55, 0.04);
  --shadow-lg: 0 12px 40px rgba(31, 41, 55, 0.07);
  --shadow-glow: 0 8px 24px rgba(72, 202, 228, 0.12);
  --container: 1280px;
  --section-pad: clamp(6.5rem, 11vw, 12rem);

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loaded {
  animation: pageIn 0.6s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0.96; }
  to { opacity: 1; }
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
a:hover { color: var(--blue-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.125rem, 4.5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 600;
}

p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Ambient backgrounds */
.bg-grid {
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, var(--blue-glow), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(138, 106, 74, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bg-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  border-color: var(--blue);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-glow);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.8rem;
}

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 32px var(--blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--blue);
  font-weight: 600;
}
.btn-outline:hover {
  border-color: var(--blue-hover);
  color: var(--blue-hover);
  background: var(--blue-tint);
}

.btn-dark {
  background: var(--bg-charcoal);
  color: var(--white);
  border-color: var(--bg-charcoal);
}
.btn-dark:hover {
  background: var(--bg-dark);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 29, 31, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-brand .logo-img {
  height: 44px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--white); }

.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.header-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--black);
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  color: var(--white);
  font-weight: 500;
}
.nav-mobile .sub a {
  padding: 0.6rem 0 0.6rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Sections */
.section { padding-block: var(--section-pad); position: relative; }
.section-dark {
  background: var(--bg-dark);
  color: var(--off-white);
}
.section-cream { background: var(--cream); }
.section-beige { background: var(--beige); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--blue-light); }

.section-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.text-muted { color: var(--text-muted); }
.section-dark .text-muted { color: rgba(255, 255, 255, 0.58); }
.hero .hero-sub { color: rgba(255, 255, 255, 0.62); }
.section-dark h2, .section-dark h3 { color: var(--off-white); }

/* Hero */
.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  color: var(--off-white);
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero.bg-mesh::before,
.hero.bg-noise::after { z-index: 0; }

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero-shape--1 {
  width: 320px;
  height: 320px;
  background: var(--blue);
  top: 10%;
  right: 5%;
}

.hero-shape--2 {
  width: 240px;
  height: 240px;
  background: var(--beige);
  bottom: 15%;
  left: -5%;
  opacity: 0.2;
}

.hero-shape--3 {
  width: 180px;
  height: 180px;
  background: var(--cream);
  top: 55%;
  right: 35%;
  opacity: 0.12;
}

.hero-glow {
  position: absolute;
  bottom: -10%;
  left: 20%;
  width: 50%;
  height: 40%;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
  display: block;
  margin-top: 0.15em;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-services span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--off-white);
  background: var(--glass);
  border: 1px solid var(--border-dark);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-services span:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: var(--blue-light);
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: var(--blue-light);
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-mockup-stack {
  position: relative;
  min-height: 480px;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-mockup--primary {
  z-index: 2;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-mockup--secondary {
  position: absolute;
  right: -4%;
  bottom: 8%;
  width: 52%;
  z-index: 1;
  opacity: 0.92;
  animation: heroFloat 6s ease-in-out infinite 1.5s;
}

.browser-frame {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.browser-frame__bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.browser-frame__bar span:first-child { background: rgba(239,68,68,0.6); }
.browser-frame__bar span:nth-child(2) { background: rgba(234,179,8,0.6); }
.browser-frame__bar span:nth-child(3) { background: rgba(34,197,94,0.6); }

.browser-frame img {
  width: 100%;
  display: block;
}

.browser-frame--compact .browser-frame__bar {
  padding: 0.45rem 0.6rem;
}

.hero-founder {
  position: absolute;
  left: -8%;
  bottom: 10%;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.45);
  box-shadow: var(--shadow-lg), 0 0 32px var(--blue-glow);
  z-index: 4;
}

.hero-workspace {
  position: absolute;
  left: 8%;
  top: -4%;
  width: 42%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  z-index: 3;
  opacity: 0.95;
}

.hero-workspace img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar below hero */
.hero-trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  padding-block: 2.5rem;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-trust-item {
  text-align: center;
  padding: 1.15rem 0.85rem;
  background: var(--glass-light);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.hero-trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.hero-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  height: 48px;
  width: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* Client logos */
.trust-strip {
  padding-block: 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
}

.trust-strip h2 {
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 2rem 2.5rem;
}

.logo-row img {
  height: 40px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.72);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-row img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

.client-logo-marquee {
  overflow: hidden;
  margin-top: 0.25rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  width: max-content;
  animation: client-logo-marquee 80s linear infinite;
  padding-block: 0.35rem;
}

.client-logo-marquee:hover .client-logo-marquee__track {
  animation-play-state: paused;
}

.client-logo-marquee__track img {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.72);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo-marquee__track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

@keyframes client-logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Founder section */
.founder-section {
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.founder-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.founder-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: block;
}

.founder-years-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.founder-signature-block {
  padding-left: 0.5rem;
  border-left: 2px solid var(--blue-accent);
}

.founder-signature {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  margin: 0 0 0.25rem;
  transform: rotate(-2deg);
}

.founder-signature-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.founder-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.founder-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.founder-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.founder-whatsapp-badge svg {
  color: #25D366;
  flex-shrink: 0;
}

.founder-whatsapp-badge:hover {
  color: var(--text);
  background: var(--blue-tint);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.founder-badges span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
}

/* Why clients stay */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stay-card {
  padding: 2rem 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.stay-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.stay-card .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.stay-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Service cards */
.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
}

/* Cards grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--glass-light);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-6px) scale(1.01);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-dark .card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-color: var(--border-dark);
}
.section-dark .card p { color: var(--text-muted); }
.section-dark .card h3 { color: var(--off-white); }
.section-dark .card-icon { background: var(--blue-light); }

/* Why cards */
.why-card {
  text-align: left;
  padding: 2rem;
}

.why-card .num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* Portfolio */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.3s;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  background: var(--cream);
  padding: 1rem 1rem 0;
}

.project-media--framed {
  background: var(--cream);
}

.project-media--framed .browser-frame {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 29, 31, 0.2);
}

.project-media--framed .browser-frame img,
.project-media--framed .browser-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-media img,
.project-card:hover .project-media video {
  transform: scale(1.04);
}

.project-media--placeholder .placeholder-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 180px;
}

.placeholder-screen--video {
  min-height: 200px;
}

.placeholder-logo {
  opacity: 0.55;
  height: auto;
  max-width: 100px;
}

.placeholder-icon {
  font-size: 1.5rem;
  color: var(--blue);
  opacity: 0.7;
}

.placeholder-note {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
  padding: 0 1rem;
}

.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
}

.project-card-body { padding: 1.5rem; }
.project-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.project-card h3 a { color: var(--text); }
.project-card h3 a:hover { color: var(--blue); }

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.project-services {
  font-size: 0.8rem !important;
  margin-bottom: 0.75rem !important;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.project-btn--primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #FFFFFF !important;
  font-weight: 600;
}

.project-btn--primary:hover {
  background: var(--blue-hover) !important;
  border-color: var(--blue-hover) !important;
  color: #FFFFFF !important;
}

.project-btn--outline {
  background: transparent !important;
  border-color: var(--blue) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.project-btn--outline:hover {
  background: var(--blue-tint) !important;
  color: var(--blue-hover) !important;
  border-color: var(--blue-hover) !important;
}

.project-preview-soon {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

/* Portfolio filters */
.portfolio-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.portfolio-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue-hover);
  background: var(--blue-tint);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

#portfolio-grid {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-hero.hero-animated {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.4deg); }
}

@keyframes shapeDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -22px) scale(1.05); }
  66% { transform: translate(-16px, 18px) scale(0.97); }
}

@keyframes shapeDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-24px, 16px) scale(1.03); }
  70% { transform: translate(20px, -14px) scale(0.98); }
}

@keyframes shapeDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, 24px) scale(1.04); }
}

@keyframes imageBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

/* Agency showcase */
.agency-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.agency-showcase__visual {
  position: relative;
}

.agency-showcase__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.agency-showcase__visual::after {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.agency-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.agency-mockup-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass-light);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.agency-mockup-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.28);
}

.agency-mockup-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.agency-mockup-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .agency-showcase { grid-template-columns: 1fr; }
  .agency-mockup-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero { opacity: 1; transform: none; transition: none; animation: none; }
  .hero-mockup--primary, .hero-mockup--secondary, .hero-workspace, .hero-founder { animation: none; }
  .hero-shape, .ambient-shape { animation: none !important; }
  .page-hero-visual .browser-frame,
  .service-visual .browser-frame,
  .founder-photo-frame,
  .product-hero-img,
  .product-gallery-img { animation: none; }
  .hero-scroll svg { animation: none; }
  .page-loader__logo { animation: none; }
  .project-card:hover, .card:hover, .btn-primary:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* Client marquee */
.client-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.client-marquee:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-pill {
  flex-shrink: 0;
  padding: 0.65rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.client-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  margin: 0;
  border: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
}

/* Process */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hosting band */
.hosting-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hosting-band h2 { color: var(--white); }
.hosting-band p { color: rgba(255,255,255,0.85); }

.hosting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hosting-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.hosting-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.hosting-band .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.hosting-band .btn-primary:hover {
  background: var(--cream);
  color: var(--blue-hover);
}

/* Pricing */
.pricing-card {
  background: var(--glass-light);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg), var(--shadow-glow);
  position: relative;
  transform: scale(1.03);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.pricing-card h3 { margin-bottom: 0.25rem; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.03em;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Testimonials */
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: var(--shadow-lg);
}

.testimonial-card p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--off-white);
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(59, 130, 246, 0.35);
}

.testimonial-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 0.35rem;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--blue); }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-right: 2rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 2rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-charcoal) 100%);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--blue-glow), transparent 60%);
  pointer-events: none;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  background: var(--bg-dark);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.page-hero.bg-mesh::before,
.page-hero.bg-noise::after { z-index: 0; }

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  max-width: 16ch;
}

.page-hero .hero-sub {
  margin-bottom: 2rem;
  max-width: 540px;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

/* Service & about page content */
.content-block { max-width: 560px; }

.content-block h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.content-block h2:first-child { margin-top: 0; }

.content-block p {
  color: var(--text-muted);
  line-height: 1.8;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.service-visual .browser-frame {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-visual .browser-frame img,
.service-visual .browser-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
  width: 100%;
}

.service-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-point {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.service-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-point h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-point p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .service-points { grid-template-columns: 1fr; }
  .page-hero h1 { max-width: none; }
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}

textarea.form-control { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-alert.success { background: #d1fae5; color: #065f46; }
.form-alert.error { background: #fee2e2; color: #991b1b; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-item {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.contact-info-item h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding-top: 4.5rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }

.about-visual-stack {
  position: relative;
}

.about-workspace {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-founder {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

@media (max-width: 768px) {
  .about-founder {
    width: 88px;
    height: 88px;
    bottom: -0.75rem;
    left: 0.5rem;
  }
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--bg-charcoal);
  color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  color: var(--white);
}

.mobile-bar .bar-primary { background: var(--blue); }
.mobile-bar .bar-whatsapp { background: var(--bg-charcoal); border: 1px solid var(--border-dark); }

/* Case study */
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.case-meta-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.case-meta-item span {
  color: var(--cream);
  font-weight: 600;
}

.case-hero-img {
  border-radius: var(--radius-lg);
  width: 100%;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.case-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.case-block h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.case-result {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.case-result strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.case-result span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.project-card .card-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Hero tech preview */
.hero-tech-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.hero-tech-preview span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.hero-tech-preview a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 0.45rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-tech-preview a:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 24px var(--blue-glow);
}

.hero-tech-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Technology Stack */
.section-tech {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.section-tech::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.tech-category {
  margin-bottom: 3.5rem;
}

.section-tech--home {
  padding-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.section-tech--home .section-intro {
  margin-bottom: 2rem;
}

.section-tech--home .tech-category {
  margin-bottom: 0;
}

.section-portfolio--home {
  padding-top: clamp(2rem, 3.5vw, 3.5rem);
}

.browser-frame__media--contain,
.page-hero-visual .browser-frame img.browser-frame__media--contain,
.service-visual .browser-frame img.browser-frame__media--contain {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: var(--cream);
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.tech-category__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tech-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 1.15rem;
}

.tech-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.15rem 1.5rem;
  min-height: 168px;
  background: var(--glass-light);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.tech-card--core {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(145deg, var(--surface) 0%, var(--cream) 100%);
}

.tech-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

.tech-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.tech-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-card__logo--wide {
  width: 112px;
  height: 40px;
}

.tech-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.tech-card--core .tech-card__name {
  font-size: 1rem;
}

.tech-card__desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  display: none;
}

@media (max-width: 640px) {
  .tech-stack-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .tech-card { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .tech-card:hover { transform: none; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup--secondary { right: 0; width: 48%; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-grid,
  .split-section,
  .contact-grid,
  .hosting-band { grid-template-columns: 1fr; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-visual { order: -1; }
  .hero-mockup-stack { min-height: 320px; margin-bottom: 1rem; }
  .hero-mockup--secondary { position: relative; right: auto; bottom: auto; width: 85%; margin: -2rem auto 0; }
  .hero-founder { left: 4%; bottom: 8%; width: 96px; height: 96px; }
  .hero-workspace { position: relative; left: auto; top: auto; width: 70%; margin: 1rem auto 0; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .stay-grid { grid-template-columns: 1fr; }
  .founder-photo-frame { max-width: 100%; }
  .founder-visual { align-items: center; text-align: center; }
  .founder-signature-block { border-left: none; padding-left: 0; }
  .founder-lead { padding-left: 0; border-left: none; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .case-grid, .case-results { grid-template-columns: 1fr; }

  .mobile-bar { display: flex; }
  .whatsapp-float { bottom: 5rem; }
  body { padding-bottom: 4rem; }

  body.has-custom-cursor,
  body.has-custom-cursor * { cursor: auto; }
}

/* ── v4 Light editorial overrides ── */

.bg-grid,
.bg-mesh::before,
.bg-mesh::after,
.bg-noise::after,
.hero::before,
.hero-glow,
.cta-band::before { display: none !important; }

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-hover);
  background: var(--blue-tint);
  box-shadow: none;
}

.btn-outline:hover { background: var(--blue-tint); }

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-desktop a {
  color: var(--text-muted);
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); }

.nav-dropdown {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown a {
  color: var(--text-muted);
}

.nav-dropdown a:hover {
  background: var(--blue-tint);
  color: var(--text);
}

.nav-toggle { color: var(--text); }

.nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nav-mobile > ul > li { border-bottom: 1px solid var(--border); }
.nav-mobile a { color: var(--text); }
.nav-mobile .sub a { color: var(--text-muted); }

.section-dark {
  background: var(--white);
  color: var(--text);
}

.section-dark h2,
.section-dark h3 { color: var(--text); }

.section-dark .section-label { color: var(--blue-hover); }

.hero {
  min-height: auto;
  background: var(--white);
  color: var(--text);
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero h1 {
  color: var(--text);
}

.hero h1 em {
  color: var(--blue-hover);
}

.hero .hero-sub { color: var(--text-muted); }

.hero-shape {
  filter: none;
  opacity: 1;
}

.hero-shape--1 {
  width: 280px;
  height: 280px;
  background: var(--blue-tint);
  top: 8%;
  right: 8%;
  opacity: 0.7;
}

.hero-shape--2 {
  width: 200px;
  height: 200px;
  background: var(--beige);
  bottom: 12%;
  left: -2%;
  opacity: 0.8;
}

.hero-shape--3 {
  width: 140px;
  height: 140px;
  background: var(--blue-accent);
  top: 50%;
  right: 30%;
  opacity: 0.5;
  animation: shapeDrift3 20s ease-in-out infinite;
}

.hero-shape--1 { animation: shapeDrift1 24s ease-in-out infinite; }
.hero-shape--2 { animation: shapeDrift2 30s ease-in-out infinite -6s; }

.hero-mockup {
  box-shadow: var(--shadow-lg);
}

.hero-mockup--primary {
  animation: heroFloat 9s ease-in-out infinite;
}

.hero-workspace {
  border-color: var(--border);
  box-shadow: var(--shadow);
  animation: heroFloat 11s ease-in-out infinite 1.2s;
}

.hero-founder {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  animation: heroFloat 10s ease-in-out infinite 0.6s;
}

.hero-trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero-trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: none;
}

.hero-trust-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.browser-frame {
  background: var(--white);
  border: 1px solid var(--border);
}

.browser-frame__bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.browser-frame__bar span { background: var(--border); }
.browser-frame__bar span:first-child { background: #FCA5A5; }
.browser-frame__bar span:nth-child(2) { background: #FDE68A; }
.browser-frame__bar span:nth-child(3) { background: #86EFAC; }

.page-loader { background: var(--white); }

.card,
.pricing-card,
.tech-card,
.service-point {
  background: var(--white);
  backdrop-filter: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card:hover,
.pricing-card:hover,
.tech-card:hover,
.service-point:hover,
.project-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.01);
}

.project-card:hover { transform: translateY(-4px); }

.stay-card {
  background: var(--white);
  backdrop-filter: none;
  border: 1px solid var(--border);
}

.stay-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.stay-card h3 { color: var(--text); }

.stay-card .check {
  background: var(--blue-tint);
  color: var(--blue-hover);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.testimonial-card p { color: var(--text); font-style: normal; }

.testimonial-footer { border-top-color: var(--border); }

.testimonial-author strong { color: var(--text); }

.cta-band {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-band h2 { color: var(--text); }

.hosting-band {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hosting-band h2 { color: var(--text); }
.hosting-band p { color: var(--text-muted); }

.hosting-band .btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.hosting-band .btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
}

.hosting-list li { color: var(--text-muted); }

.page-hero {
  background: var(--white);
  color: var(--text);
}

.page-hero h1 { color: var(--text); }

.page-hero .hero-sub { color: var(--text-muted); }

.breadcrumb { color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue-hover); }

.site-footer {
  background: var(--cream);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-col h4 { color: var(--text); }
.footer-col a:hover { color: var(--blue-hover); }

.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.whatsapp-float {
  background: var(--white);
  color: var(--blue-hover);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover { color: var(--blue); }

.mobile-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-bar a { color: var(--text); }
.mobile-bar .bar-primary {
  background: var(--blue);
  color: #FFFFFF !important;
}
.mobile-bar .bar-primary:hover {
  background: var(--blue-hover);
  color: #FFFFFF !important;
}
.mobile-bar .bar-whatsapp {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
}

.section-tech {
  background: var(--white);
}

.project-media--framed {
  background: var(--cream);
}

.project-media--placeholder .placeholder-screen .placeholder-initial {
  color: var(--blue-hover);
}

.pricing-card.featured {
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--blue);
}

.tech-card--core { background: var(--white); }

.section-dark .card {
  background: var(--white);
  border-color: var(--border);
}

.section-dark .card h3 { color: var(--text); }
.section-dark .card p { color: var(--text-muted); }

/* Premium custom cursor */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor summary,
body.has-custom-cursor .btn,
body.has-custom-cursor .filter-btn,
body.has-custom-cursor .project-card { cursor: none; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  will-change: transform;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--blue);
  border-radius: 50%;
}

.cursor-ring {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1.5px solid rgba(72, 202, 228, 0.45);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border-color 0.3s ease;
}

body.cursor-hover-link .cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-color: rgba(72, 202, 228, 0.65);
}

body.cursor-hover-btn .cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-color: var(--blue);
  animation: cursorPulse 2s ease-in-out infinite;
}

body.cursor-hover-project .cursor-ring {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: rgba(72, 202, 228, 0.55);
}

@keyframes cursorPulse {
  0%, 100% { border-color: rgba(72, 202, 228, 0.45); }
  50% { border-color: rgba(72, 202, 228, 0.85); }
}

.project-card:hover .project-media img,
.project-card:hover .project-media video { transform: scale(1.02); }

.section-tech::before,
.section-tech { background: var(--white) !important; }

.project-media--framed { background: var(--cream) !important; }

.section-divider {
  height: 1px;
  background: var(--border) !important;
  border: none;
}

.hosting-band { background: var(--white) !important; }

.tech-card--core,
.card-icon { background: var(--blue-tint) !important; }

.client-marquee { mask-image: none; }

.tech-stack-grid {
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.25rem;
}

.tech-category__title { color: var(--brown); }

@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.has-custom-cursor,
  body.has-custom-cursor * { cursor: auto !important; }
  .hero-mockup--primary, .hero-mockup--secondary,
  .hero-workspace, .hero-founder,
  .hero-shape, .ambient-shape,
  .page-hero-visual .browser-frame,
  .service-visual .browser-frame,
  .founder-photo-frame,
  .product-hero-img,
  .product-gallery-img { animation: none; }
  .client-logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }
  .client-logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2rem 2.5rem;
  }
}

/* ── Work / Portfolio page ── */
.work-hero {
  padding-top: clamp(5.5rem, 8vw, 6.5rem);
  padding-bottom: 0;
}

.work-hero .breadcrumb {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}

.work-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-bottom: 2rem;
}

.work-hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.work-hero-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
}

.work-hero-collage {
  position: relative;
  min-height: 280px;
}

.work-hero-shot {
  position: absolute;
  width: 72%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.work-hero-shot--1 {
  top: 0;
  left: 0;
  z-index: 3;
}

.work-hero-shot--2 {
  top: 18%;
  right: 0;
  z-index: 2;
  width: 62%;
  opacity: 0.92;
}

.work-hero-shot--3 {
  bottom: 0;
  left: 12%;
  z-index: 1;
  width: 58%;
  opacity: 0.88;
}

.work-hero-shot .browser-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.work-filters-wrap {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.work-filters-wrap .portfolio-filters {
  margin-bottom: 0;
}

.work-grid-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.work-portfolio-grid {
  align-items: stretch;
}

.work-portfolio-grid .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-portfolio-grid .project-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work-portfolio-grid .project-desc {
  flex-grow: 1;
}

.work-portfolio-grid .project-media--framed .browser-frame {
  height: 100%;
}

.work-portfolio-grid .project-media--framed .browser-frame img,
.work-portfolio-grid .project-media video {
  height: 100%;
  min-height: 180px;
}

.work-behance-link {
  margin-top: 2.5rem;
}

.work-cta-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.work-cta-band {
  text-align: center;
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.work-cta-band h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.work-cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.work-cta-band .btn-primary {
  min-width: 200px;
}

@media (max-width: 900px) {
  .work-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .work-hero-content h1 { max-width: none; }

  .work-hero-visual {
    max-width: 100%;
    margin-inline: auto;
    order: 2;
  }

  .work-hero-content { order: 1; }

  .work-hero-collage {
    position: relative;
    min-height: 200px;
    max-width: 360px;
    margin-inline: auto;
  }

  .work-hero-shot--2,
  .work-hero-shot--3 { display: none; }

  .work-hero-shot--1 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
  }

  .work-filters-wrap { padding-top: 0.25rem; }
}

@media (max-width: 768px) {
  .portfolio-filters {
    justify-content: flex-start;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

/* ── Shared inner page system (Work page reference) ── */
.page-hero.section-cream,
.page-hero.section-beige {
  padding-top: clamp(5.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
  background: var(--cream);
  color: var(--text);
  overflow: hidden;
}

.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.page-hero.section-cream .breadcrumb,
.page-hero.section-beige .breadcrumb {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--text);
}

.page-hero-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 1.5rem;
}

.page-hero.section-cream .hero-sub,
.page-hero.section-beige .hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 1.5rem;
}

.page-hero-visual .browser-frame {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: heroFloat 10s ease-in-out infinite;
}

.founder-photo-frame {
  animation: imageBreathe 12s ease-in-out infinite;
}

.service-visual .browser-frame,
.product-hero-img,
.product-gallery-img {
  animation: imageBreathe 11s ease-in-out infinite;
}

.service-visual .browser-frame {
  animation-delay: 0.8s;
}

/* Ambient floating shapes for inner pages */
.ambient-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ambient-shape--1 {
  width: 220px;
  height: 220px;
  background: var(--blue-tint);
  top: 12%;
  right: 6%;
  opacity: 0.75;
  animation: shapeDrift1 26s ease-in-out infinite;
}

.ambient-shape--2 {
  width: 160px;
  height: 160px;
  background: var(--blue-accent);
  bottom: 10%;
  left: -4%;
  opacity: 0.45;
  animation: shapeDrift2 32s ease-in-out infinite -8s;
}

.ambient-shape--3 {
  width: 120px;
  height: 120px;
  background: var(--beige);
  top: 48%;
  right: 28%;
  opacity: 0.7;
  animation: shapeDrift3 22s ease-in-out infinite -4s;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-visual .browser-frame img,
.page-hero-visual .browser-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
  width: 100%;
}

.browser-frame video {
  width: 100%;
  display: block;
}

.service-visual .browser-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.service-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 240px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.section-compact {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.included-card {
  padding: 1.15rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.included-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.included-card::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.included-card span {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-point:hover {
  border-color: var(--blue);
}

.service-related-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3rem);
}

.service-portfolio-grid {
  align-items: stretch;
}

.service-portfolio-grid .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-portfolio-grid .project-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-portfolio-grid .project-desc { flex-grow: 1; }

.page-cta-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.page-cta-band,
.work-cta-band {
  text-align: center;
  padding: clamp(2.5rem, 4vw, 3.5rem) 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-cta-band h2,
.work-cta-band h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.page-cta-band p,
.work-cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-cta-band .cta-actions,
.work-cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hosting-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: start;
}

.hosting-band .section-label { margin-bottom: 0.5rem; }

.hosting-band h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hosting-band > div > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Pricing page */
.pricing-page .pricing-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pricing-card {
  background: var(--white);
  backdrop-filter: none;
}

.pricing-card.featured {
  transform: none;
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--blue);
}

.pricing-card.featured:hover { transform: translateY(-4px); }

.pricing-note {
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.pricing-note strong { color: var(--text); }

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: var(--blue-hover); }

.faq-answer {
  padding: 0 1.5rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact page */
.contact-page .contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.contact-form-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-info-item {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-info-item p { margin: 0; color: var(--text-muted); line-height: 1.65; }

.contact-info-item a { color: var(--blue-hover); font-weight: 500; }

.contact-trust-panel {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.contact-trust-panel h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.trust-note {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-note:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-note strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
}

.response-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--blue-tint);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.response-note strong { color: var(--text); }

/* Case study pages */
.case-study-page .case-meta {
  margin-top: 1.25rem;
  gap: 1.25rem;
}

.case-study-page .case-meta-item strong {
  color: var(--text-muted);
}

.case-study-page .case-meta-item span,
.case-study-page .case-meta-item a {
  color: var(--text);
  font-weight: 600;
}

.case-study-page .case-meta-item a:hover {
  color: var(--blue-hover);
}

.case-study-page .case-hero-img {
  border: 1px solid var(--border);
}

.case-study-page .case-block {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.case-study-page .case-block p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.case-study-page .content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-page .content-block li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.case-study-page .content-block li:last-child { border-bottom: none; }

.case-study-page .content-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.case-study-content {
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-hero-content h1 { max-width: none; }

  .page-hero-visual {
    max-width: 420px;
    margin-inline: auto;
    order: 2;
  }

  .page-hero-content { order: 1; }

  .included-grid { grid-template-columns: 1fr; }

  .hosting-band { grid-template-columns: 1fr; padding: 1.75rem; }
}

/* ── Shop & digital products ── */

.shop-page .shop-hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.shop-page .shop-hero-badge span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}

.shop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.shop-card__media {
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.shop-card__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card__media img {
  transform: scale(1.03);
}

.shop-card__body {
  padding: 1.5rem;
}

.shop-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.shop-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.shop-card__body h3 a {
  color: var(--text);
  text-decoration: none;
}

.shop-card__body h3 a:hover {
  color: var(--blue-hover);
}

.shop-card__desc {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
  font-size: 0.95rem;
}

.shop-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-card__features li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  background: var(--cream);
  border-radius: 100px;
  color: var(--text-muted);
}

.shop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-custom-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.shop-custom-band h2 {
  margin: 0.5rem 0;
}

.shop-custom-band p {
  margin: 0;
  color: var(--text-muted);
  max-width: 42ch;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.product-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--blue);
  margin: -0.5rem 0 1rem;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-note {
  font-size: 0.85rem;
  margin: 0;
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.product-hero-img,
.product-gallery-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-feature {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-feature__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.product-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.product-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.product-includes li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.product-includes li:last-child {
  border-bottom: none;
}

.product-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.product-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-tech span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
}

.product-faq {
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-custom-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

@media (max-width: 560px) {
  .product-features-grid {
    grid-template-columns: 1fr;
  }

  .shop-card__actions {
    flex-direction: column;
  }

  .shop-card__actions .btn {
    width: 100%;
    text-align: center;
  }
}
