/* ============================================
   ZuzuBrand — Premium Digital Agency Styles
   ============================================ */

:root {
  /* Brand palette from logo */
  --primary: #1a9e90;
  --primary-light: #2ec4b6;
  --primary-dark: #0f7a6e;
  --primary-glow: rgba(26, 158, 144, 0.25);
  --accent-gold: #b8860b;
  --accent-orange: #e65100;

  /* Light mode neutrals */
  --bg: #f7f9fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-subtle: #eef2f7;
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(26, 158, 144, 0.35);

  /* Text */
  --text: #0f172a;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  /* Glass — light frosted panels */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-blur: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.1);

  /* Spacing */
  --container: 1280px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Typography — readable & modern */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', var(--font);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --duration: 0.4s;

  /* Header */
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ---- Utility ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--accent-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  background: rgba(31, 177, 162, 0.08);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 0 30px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  box-shadow: 0 0 50px var(--primary-glow), 0 8px 32px rgba(31, 177, 162, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(26, 158, 144, 0.06);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block { width: 100%; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--duration) var(--ease);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ---- Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

body.cursor-active .cursor-glow {
  opacity: 0.35;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent-gold));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.preloader-logo img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: logoPulse 1.5s ease infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

.preloader-lines {
  position: absolute;
  inset: 0;
  animation: preloaderSpin 3s linear infinite;
}

.preloader-lines span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  top: 50%;
  left: 0;
  transform-origin: center;
  opacity: 0.3;
}

.preloader-lines span:nth-child(1) { transform: rotate(0deg); }
.preloader-lines span:nth-child(2) { transform: rotate(45deg); }
.preloader-lines span:nth-child(3) { transform: rotate(90deg); }
.preloader-lines span:nth-child(4) { transform: rotate(135deg); }

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  animation: preloaderFill 1.8s var(--ease) forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--duration) var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.logo-img {
  height: 24px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
  background: rgba(26, 158, 144, 0.08);
}

.btn-header {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1002;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  text-align: center;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.75rem;
  color: var(--text-muted);
  transition: color var(--duration);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-dark);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26, 158, 144, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(26, 158, 144, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  animation: meshMove 15s ease infinite alternate;
}

@keyframes meshMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, 2%); }
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 20s ease infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(26, 158, 144, 0.1);
  top: -10%;
  right: -5%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(184, 134, 11, 0.06);
  bottom: 10%;
  left: -10%;
  animation-delay: -7s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(26, 158, 144, 0.08);
  top: 50%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-hover);
  background: rgba(31, 177, 162, 0.08);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.mascot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-glow {
  position: absolute;
  width: 80%;
  height: 60%;
  bottom: 10%;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  filter: blur(40px);
  animation: mascotGlow 3s ease infinite alternate;
}

@keyframes mascotGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.mascot-img {
  position: relative;
  z-index: 2;
  max-height: 480px;
  width: auto;
  animation: mascotFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  animation: floatCard 5s ease-in-out infinite;
}

.float-card svg { color: var(--primary); }

.float-card-1 { top: 5%; left: -5%; animation-delay: 0s; }
.float-card-2 { top: 20%; right: -10%; animation-delay: -1.5s; }
.float-card-3 { bottom: 30%; left: -8%; animation-delay: -3s; }
.float-card-4 { bottom: 10%; right: -5%; animation-delay: -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Expertise Marquee ---- */
.trusted {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.expertise-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--duration);
}

.expertise-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.expertise-tag:hover {
  color: var(--primary-dark);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-quote {
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary);
}

.about-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-quote footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card {
  padding: 1.5rem;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.about-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* About visual panel */
.about-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.about-visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-visual-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(26, 158, 144, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 158, 144, 0.08) 0%, transparent 45%),
    linear-gradient(135deg, rgba(247, 249, 252, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.about-visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.about-visual-blob-1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
  background: rgba(26, 158, 144, 0.25);
}

.about-visual-blob-2 {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -20px;
  background: rgba(26, 158, 144, 0.15);
}

.about-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.about-visual-logo {
  margin-bottom: 1rem;
}

.about-visual-logo img {
  height: 32px;
  width: auto;
  margin: 0 auto;
}

.about-visual-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.about-visual-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: 320px;
  margin: 0 auto;
}

.about-visual-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.about-visual-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(26, 158, 144, 0.1);
  color: var(--primary-dark);
}

.about-visual-feature span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---- Services ---- */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  transition: all var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration) var(--ease);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-light);
}

/* ---- Why Choose ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Process Timeline ---- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding-top: 2rem;
}

.timeline-line {
  position: absolute;
  top: calc(2rem + 24px);
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 1s var(--ease);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--duration) var(--ease);
}

.timeline-step.active .timeline-dot {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 30px var(--primary-glow);
}

.timeline-content {
  padding: 1.25rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Portfolio ---- */
.portfolio {
  background: var(--bg);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text);
  border-color: var(--primary);
  background: rgba(31, 177, 162, 0.1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.portfolio-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- SEO Results ---- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.result-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.result-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.result-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 158, 144, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.result-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.result-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  width: 100%;
  height: 160px;
  padding-bottom: 28px;
  position: relative;
}

.chart-bars::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 1px;
  background: var(--border);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-dark), var(--primary-light));
  border-radius: 8px 8px 4px 4px;
  height: 0%;
  min-height: 4px;
  position: relative;
  transition: height 1.2s var(--ease);
  box-shadow: 0 4px 12px rgba(26, 158, 144, 0.2);
}

.chart-bar-tip {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary-dark);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  white-space: nowrap;
}

.result-card:hover .chart-bar-tip {
  opacity: 1;
}

.chart-bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
}

.result-stat {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.result-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.ranking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.ranking-item:hover {
  border-color: var(--border-hover);
  background: rgba(26, 158, 144, 0.04);
}

.ranking-keyword {
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
}

.ranking-change {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.rank-from {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 0.75rem;
}

.rank-arrow {
  color: var(--primary);
  font-weight: 700;
}

.rank-to {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

.conversion-rings {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding: 0.5rem 0 0.25rem;
}

.ring-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  max-width: 140px;
}

.ring-chart {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.ring-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 8px rgba(26, 158, 144, 0.15));
}

.ring-bg {
  fill: none;
  stroke: var(--bg-subtle);
  stroke-width: 10;
}

.ring-fill {
  fill: none;
  stroke: url(#ringGradient);
  stroke: var(--primary);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  transition: stroke-dashoffset 1.5s var(--ease);
  filter: drop-shadow(0 0 6px rgba(26, 158, 144, 0.35));
}

.ring-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.ring-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.35;
  max-width: 110px;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--bg-subtle);
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 2.5rem;
  margin: 0 0.5rem;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-slide p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ---- Pricing ---- */
.pricing-category {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--text-muted);
}

.pricing-category:first-of-type {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  padding: 2rem;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(26, 158, 144, 0.06) 0%, var(--bg-elevated) 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 158, 144, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.25rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ---- Payment ---- */
.payment {
  background: var(--bg-subtle);
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.payment-qr {
  padding: 2rem;
  text-align: center;
}

.payment-qr img {
  border-radius: var(--radius-sm);
  margin: 0 auto 1rem;
  max-width: 360px;
}

.payment-provider {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-info-card {
  padding: 1.5rem;
}

.payment-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.payment-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(31, 177, 162, 0.1);
  color: var(--primary-light);
  border: 1px solid var(--border-hover);
}

.bank-details li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.bank-details a {
  color: var(--primary-light);
}

.bank-details a:hover {
  text-decoration: underline;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--duration);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Contact Page ---- */
.contact-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(26, 158, 144, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.contact-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.contact-hero-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(26, 158, 144, 0.12);
  top: -20%;
  right: -5%;
}

.contact-hero-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(26, 158, 144, 0.08);
  bottom: -10%;
  left: -5%;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.contact-quick-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-quick-btn--wa:hover {
  border-color: #25d366;
  color: #25d366;
}

.contact-trust {
  padding: 0;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem;
}

.contact-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 158, 144, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.contact-trust-item span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--accent-gold));
}

.form-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.form-header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 158, 144, 0.12), rgba(26, 158, 144, 0.04));
  border-radius: 14px;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  padding: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.input-wrap {
  position: relative;
}

.input-wrap .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
  transition: color var(--duration) var(--ease);
}

.input-wrap:focus-within .input-icon {
  color: var(--primary);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  outline: none;
}

.input-wrap--textarea textarea {
  padding: 1rem;
  min-height: 120px;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  background: var(--bg-elevated);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 158, 144, 0.1);
}

.input-wrap select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  overflow: visible;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  color: inherit;
}

.contact-method-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-card--static {
  cursor: default;
}

.contact-method-card--static:hover {
  transform: none;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 158, 144, 0.1);
  border-radius: 10px;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.contact-method-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-method-card:hover .contact-method-value {
  color: var(--primary-dark);
}

.whatsapp-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  border-radius: var(--radius-lg);
  color: #fff;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.whatsapp-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-banner-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.whatsapp-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.whatsapp-banner span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.whatsapp-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.8;
}

.location-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.location-card-header svg {
  color: var(--primary);
}

.location-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.location-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.location-link:hover {
  text-decoration: underline;
}

/* FAQ grid on contact page */
.contact-page .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 100%;
}

.contact-page .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.contact-page .faq-item:hover {
  border-color: var(--border-hover);
}

.contact-page .faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(26, 158, 144, 0.08);
}

.contact-page .faq-item--wide {
  grid-column: 1 / -1;
}

.contact-page .faq-question {
  padding: 1.25rem 0;
  font-size: 0.95rem;
}

.contact-page .faq-item.active .faq-answer {
  max-height: 280px;
  padding-bottom: 1.25rem;
}

/* Legacy contact aliases */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--primary-dark);
}

/* ---- Footer ---- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  color: var(--primary-light);
  border-color: var(--primary);
  background: rgba(31, 177, 162, 0.1);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--duration);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all var(--duration) var(--ease);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-3px);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.revealed {
  opacity: 1;
}

.reveal[data-reveal="fade-up"] {
  transform: translateY(40px);
}

.reveal[data-reveal="fade-up"].revealed {
  transform: translateY(0);
}

.reveal[data-reveal="fade-down"] {
  transform: translateY(-40px);
}

.reveal[data-reveal="fade-down"].revealed {
  transform: translateY(0);
}

.reveal[data-reveal="fade-left"] {
  transform: translateX(40px);
}

.reveal[data-reveal="fade-left"].revealed {
  transform: translateX(0);
}

.reveal[data-reveal="fade-right"] {
  transform: translateX(-40px);
}

.reveal[data-reveal="fade-right"].revealed {
  transform: translateX(0);
}

.reveal[data-reveal="scale-in"] {
  transform: scale(0.9);
}

.reveal[data-reveal="scale-in"].revealed {
  transform: scale(1);
}

.reveal[data-reveal="blur"] {
  filter: blur(10px);
}

.reveal[data-reveal="blur"].revealed {
  filter: blur(0);
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ---- 3D Tilt ---- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none !important;
    filter: none !important;
  }

  html { scroll-behavior: auto; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .section-desc {
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
}

.cta-banner .section-title {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2rem;
}

.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.section-alt {
  background: var(--bg-subtle);
}

.text-center {
  text-align: center;
}

.section-cta {
  margin-top: 2.5rem;
}

/* ---- Responsive: 1920px+ ---- */
@media (min-width: 1920px) {
  :root {
    --container: 1440px;
  }
}

/* ---- Responsive: 1440px ---- */
@media (max-width: 1440px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Responsive: 1024px ---- */
@media (max-width: 1024px) {
  .nav, .btn-header { display: none; }
  .hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image,
  .about-visual { max-width: 500px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .timeline-line { display: none; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }

  .payment-grid { grid-template-columns: 1fr; }
  .contact-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .contact-sidebar {
    position: static;
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---- Responsive: 768px ---- */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider { display: none; }

  .about-metrics { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid,
  .pricing-grid-3 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .conversion-rings {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ring-item { max-width: 130px; }

  .float-card { display: none; }

  .back-to-top { bottom: 1.5rem; right: 1.5rem; }

  body.cursor-active .cursor-glow { display: none; }
}

/* ---- Responsive: 480px ---- */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .section-title { font-size: 1.75rem; }

  .testimonial-slide { padding: 1.5rem; }
  .testimonial-slide p { font-size: 1rem; }

  .contact-form-wrap { padding: 1.5rem; }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-quick-btn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Responsive: 320px ---- */
@media (max-width: 320px) {
  .container { padding: 0 0.75rem; }
  .hero-badge { font-size: 0.7rem; }
  .pricing-price { font-size: 2rem; }
}

/* ---- Blog ---- */
.blog-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 3rem;
  text-align: center;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: all var(--duration) var(--ease);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  color: var(--primary-dark);
  border-color: var(--primary);
  background: rgba(26, 158, 144, 0.08);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  padding: 0;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-read {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.blog-card-cat {
  padding: 0.2rem 0.6rem;
  background: rgba(26, 158, 144, 0.1);
  color: var(--primary-dark);
  border-radius: 100px;
  font-weight: 600;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.blog-card-title a {
  color: var(--text);
  transition: color var(--duration);
}

.blog-card-title a:hover {
  color: var(--primary-dark);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 480px;
  margin: 0 auto;
}

.blog-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  margin: 0 0.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: all var(--duration) var(--ease);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
}

/* Single post */
.single-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: var(--header-h);
}

.single-hero-image {
  position: absolute;
  inset: 0;
}

.single-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
}

.single-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 158, 144, 0.15), var(--bg-subtle));
}

.single-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.single-hero-content .breadcrumb,
.single-hero-content .breadcrumb a,
.single-hero-content .breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.single-hero-content .breadcrumb a:hover {
  color: #fff;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.single-cat {
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: #fff;
  font-weight: 600;
}

.single-read-time {
  opacity: 0.8;
}

.single-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 800px;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.single-article {
  padding: 2.5rem;
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--text);
  font-family: var(--font-display);
  margin: 2rem 0 1rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

.entry-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.entry-content a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.single-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.single-tags a {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  margin: 0.25rem;
  background: var(--bg-subtle);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 500;
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.single-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.single-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.single-author strong {
  display: block;
  font-size: 0.95rem;
}

.single-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .single-article { padding: 1.5rem; }
}
