:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #134e4a;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --mint: #a7f3d0;
  --mint-soft: #d1fae5;
  --aqua: #0891b2;
  --navy: #0f172a;
  --ink: #1e293b;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f0fdfa;
  --cream: #fafdfb;
  --white: #ffffff;
  --coral: #fb7185;
  --warn: #f59e0b;
  --success: #10b981;
  --grad-1: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
  --grad-2: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
  --grad-3: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(13, 148, 136, 0.06) 100%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 15px 45px rgba(6, 182, 212, 0.35);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Bricolage Grotesque', -apple-system, sans-serif;
  --display: 'Newsreader', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== Liquid Background ===== */
.liquid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: liquid-drift 30s infinite ease-in-out;
}

.lb-1 {
  width: 650px; height: 650px;
  background: var(--cyan);
  top: -200px; left: -150px;
}

.lb-2 {
  width: 550px; height: 550px;
  background: var(--mint);
  bottom: -100px; right: -100px;
  animation-delay: -8s;
}

.lb-3 {
  width: 400px; height: 400px;
  background: var(--cyan-light);
  top: 50%; left: 40%;
  animation-delay: -15s;
}

.liquid-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(13, 148, 136, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

@keyframes liquid-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

/* ===== Navigation ===== */
.nav-pill {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1000;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.nav-pill.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-drop {
  width: 42px;
  height: 42px;
  background: var(--grad-1);
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.logo-drop i { transform: rotate(45deg); }

.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word strong {
  font-size: 1.2rem;
  color: var(--teal-deep);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-word span {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-list a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-1);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-list a:hover { color: var(--teal); }
.nav-list a:hover::after { width: 20px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--teal-deep);
  color: white;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-cta i {
  font-size: 0.9rem;
  color: var(--mint);
}

.nav-cta .cta-small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-cta .cta-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--teal-deep);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: white;
  color: var(--teal-deep);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero-fluid {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(13, 148, 136, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-fluid h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 28px;
  line-height: 1.05;
}

.h-small {
  display: block;
  font-size: 0.38em;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  font-weight: 600;
}

.h-main {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h-italic {
  display: block;
  font-size: 0.6em;
  color: var(--teal-deep);
  font-weight: 600;
  margin-top: 12px;
}

.h-location {
  display: block;
  font-size: 0.45em;
  color: var(--cyan);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  margin-top: 8px;
}

.hero-intro {
  font-size: 1.08rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
}

.trust-chip i { color: var(--teal); }

/* Hero Right - Droplet Visual */
.hero-right {
  position: relative;
  height: 520px;
}

.droplet-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.droplet-main {
  position: relative;
  width: 320px;
  height: 400px;
  background: var(--grad-1);
  border-radius: 50% 50% 50% 10% / 60% 60% 40% 40%;
  transform: rotate(-35deg);
  box-shadow:
    inset -30px -30px 80px rgba(13, 148, 136, 0.4),
    0 30px 60px rgba(6, 182, 212, 0.3);
  overflow: hidden;
  animation: droplet-float 6s infinite ease-in-out;
}

@keyframes droplet-float {
  0%, 100% { transform: rotate(-35deg) translateY(0); }
  50% { transform: rotate(-35deg) translateY(-15px); }
}

.droplet-shine {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 80px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}

.droplet-ring {
  position: absolute;
  inset: -30px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 50% 50% 50% 10% / 60% 60% 40% 40%;
  transform: rotate(35deg);
  animation: ring-pulse 4s infinite ease-out;
}

.droplet-ring.ring-2 {
  inset: -60px;
  border-color: rgba(6, 182, 212, 0.2);
  animation-delay: 1s;
}

@keyframes ring-pulse {
  0% { transform: rotate(35deg) scale(0.9); opacity: 1; }
  100% { transform: rotate(35deg) scale(1.3); opacity: 0; }
}

.droplet-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.35);
}

.float-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  z-index: 3;
  animation: card-float 5s infinite ease-in-out;
}

.fc-1 {
  top: 5%;
  left: 0;
  animation-delay: -1s;
}

.fc-2 {
  top: 45%;
  right: -10px;
  animation-delay: -2.5s;
}

.fc-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: -4s;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fc-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-soft);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.float-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--teal-deep);
  font-weight: 700;
}

.float-card span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Stats Wave */
.stats-wave {
  max-width: 1100px;
  margin: 80px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
}

.stats-wave::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-1);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
  filter: blur(20px);
}

.wave-stat { text-align: center; flex: 1; min-width: 150px; }

.wave-stat h3 {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

.wave-stat p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.wave-sep {
  width: 1px;
  height: 50px;
  background: var(--line);
}

/* ===== Section Common ===== */
section { padding: 120px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal-deep);
  color: var(--mint);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Services Grid ===== */
.services-orbit { background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.svc-ring {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(13, 148, 136, 0.15);
  border-radius: 50%;
  transition: all 0.5s var(--ease);
}

.svc-card:hover .svc-ring {
  transform: rotate(180deg) scale(1.3);
  border-color: rgba(13, 148, 136, 0.4);
}

.svc-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-light);
}

.svc-icon {
  width: 64px;
  height: 64px;
  background: var(--c, var(--teal));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}

.svc-card:hover .svc-icon {
  transform: rotate(-8deg) scale(1.08);
}

.svc-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.svc-card p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.svc-card ul {
  margin-bottom: 24px;
}

.svc-card ul li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card ul li i { color: var(--teal); font-size: 0.75rem; }

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-deep);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.svc-cta:hover { gap: 14px; color: var(--cyan); }

/* ===== Process Timeline ===== */
.process-drops { background: var(--cream); }

.drops-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.drop-line {
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: 40px;
  width: 3px;
  background: repeating-linear-gradient(to bottom,
    var(--cyan) 0, var(--cyan) 10px,
    transparent 10px, transparent 20px);
}

.drop-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: center;
}

.drop-step:last-child { margin-bottom: 0; }

.drop-marker {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--grad-1);
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s var(--ease);
}

.drop-step:hover .drop-marker {
  transform: rotate(-45deg) scale(1.1);
}

.drop-inner {
  transform: rotate(45deg);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  font-style: italic;
}

.drop-content {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.drop-step:hover .drop-content {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: var(--cyan-light);
}

.drop-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--teal-deep);
}

.drop-content p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* ===== Portfolio Mosaic ===== */
.portfolio-section { background: white; }

.port-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 3;
}

.mosaic-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mosaic-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}

.mosaic-large .mosaic-art, .mosaic-wide .mosaic-art {
  position: relative;
  height: 65%;
}

.mosaic-item:not(.mosaic-large):not(.mosaic-wide) .mosaic-art {
  position: relative;
  height: 60%;
}

.ma-circle {
  position: absolute;
  width: 55%;
  height: 55%;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 15%;
  left: 15%;
}

.ma-wave {
  position: absolute;
  width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  bottom: 20%;
  left: 10%;
  box-shadow:
    0 12px 0 rgba(255, 255, 255, 0.4),
    0 24px 0 rgba(255, 255, 255, 0.3);
}

.ma-dots {
  position: absolute;
  width: 25%;
  height: 25%;
  background: var(--c3);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mosaic-info {
  padding: 22px;
  background: white;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mosaic-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-soft);
  color: var(--teal-deep);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mosaic-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.mosaic-info p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ===== Article Section ===== */
.article-section { background: var(--cream); }

.editorial {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-side {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.side-card h4 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.side-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.side-card ul li:last-child { border-bottom: none; }

.side-card ul li a {
  color: var(--slate);
  display: block;
  transition: all 0.2s var(--ease);
}

.side-card ul li a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.side-card.cta-card {
  background: var(--teal-deep);
  color: white;
  border: none;
  text-align: center;
}

.side-card.cta-card i {
  font-size: 1.8rem;
  color: var(--mint);
  margin-bottom: 12px;
}

.side-card.cta-card h4 {
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}

.side-card.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.side-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--cyan);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.side-cta:hover {
  background: var(--mint);
  color: var(--teal-deep);
  transform: translateY(-2px);
}

/* Article Main */
.art-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--teal-deep);
}

.art-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.art-badge {
  padding: 6px 14px;
  background: var(--teal-deep);
  color: var(--mint);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-badge.badge-alt {
  background: var(--cyan);
  color: white;
}

.art-header h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.art-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.art-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-meta i { color: var(--teal); }

.art-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.9rem;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}

.art-body h2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-1);
  border-radius: 10px;
}

.art-body h2:first-of-type { border-top: none; padding-top: 0; }
.art-body h2:first-of-type::before { display: none; }

.art-body h3 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--teal-deep);
}

.art-body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.85;
}

.lead {
  font-size: 1.18rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
  line-height: 1.6 !important;
}

.art-body a {
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1.5px solid var(--cyan);
}

.art-body a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* Pull Quote */
.pull-quote {
  position: relative;
  padding: 40px 40px 40px 70px;
  margin: 40px 0;
  background: var(--teal-deep);
  color: white;
  border-radius: var(--radius-lg);
}

.pull-quote i {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 2rem;
  color: var(--mint);
}

.pull-quote p {
  color: white !important;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem !important;
  line-height: 1.5 !important;
  margin: 0;
}

/* Info Callout */
.info-callout {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid;
}

.info-callout.tip { background: #d1fae5; border-color: var(--teal); }
.info-callout.warn { background: #cffafe; border-color: var(--cyan); }

.callout-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-callout.tip .callout-icon { color: var(--teal); }
.info-callout.warn .callout-icon { color: var(--cyan); }

.info-callout h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-callout p { margin: 0; font-size: 0.95rem; }

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.mini-stat {
  background: var(--teal-deep);
  color: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.mini-stat strong {
  font-family: var(--display);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--mint);
}

.mini-stat span {
  font-size: 0.78rem;
  opacity: 0.9;
  line-height: 1.3;
}

/* Process Box */
.process-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.process-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 14px;
}

.p-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.p-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.p-num {
  width: 36px;
  height: 36px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.p-item strong {
  display: block;
  color: var(--teal-deep);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.p-item p {
  margin: 0;
  font-size: 0.88rem;
}

/* Feature Card */
.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 32px 0;
  align-items: center;
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-1);
  color: white;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-card h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--teal-deep);
}

.feature-card p { margin: 0; font-size: 0.95rem; }

/* Comparison Table */
.comparison-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 20px;
  background: var(--teal-deep);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--slate);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--soft); }
.comparison-table td:first-child { color: var(--teal-deep); font-weight: 600; }

/* Timeline Box */
.timeline-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.timeline-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.tl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.tl-item:last-child { border-bottom: none; }

.tl-dot {
  width: 16px;
  height: 16px;
  background: var(--grad-1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.tl-item strong {
  display: block;
  color: var(--teal-deep);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.tl-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Checklist */
.checklist {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.checklist h4 {
  font-family: var(--font);
  color: #065f46;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.checklist ul {
  display: grid;
  gap: 8px;
}

.checklist li {
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 0.92rem;
  color: var(--slate);
}

.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
}

/* Cost Bars */
.cost-bars {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.cost-bars h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--teal-deep);
}

.cost-item {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.cost-item:last-child { border-bottom: none; }

.cost-label { font-weight: 600; font-size: 0.9rem; color: var(--teal-deep); }

.cost-bar-wrap {
  height: 10px;
  background: var(--soft);
  border-radius: 100px;
  overflow: hidden;
}

.cost-bar {
  height: 100%;
  width: var(--w);
  background: var(--grad-1);
  border-radius: 100px;
}

.cost-val { font-weight: 700; color: var(--teal-deep); font-size: 0.9rem; }

/* Pros Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.pc-col {
  padding: 24px;
  border-radius: var(--radius);
}

.pc-col.pros {
  background: #d1fae5;
  border: 1px solid #86efac;
}

.pc-col.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pc-col h5 {
  font-family: var(--font);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.pc-col.pros h5 { color: #065f46; }
.pc-col.cons h5 { color: #991b1b; }

.pc-col ul { display: grid; gap: 6px; }

.pc-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
}

.pc-col.pros li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
}

.pc-col.cons li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #dc2626;
}

/* ===== Testimonials ===== */
.testi-section {
  background: linear-gradient(135deg, var(--teal-deep), var(--navy));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(167, 243, 208, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.testi-section .section-tag {
  background: var(--cyan);
  color: white;
}

.testi-section .section-head h2 { color: white; }
.testi-section .section-head p { color: rgba(255, 255, 255, 0.7); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.testi-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.testi-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.testi-stars {
  color: var(--cyan);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-review {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-initials {
  width: 48px;
  height: 48px;
  background: var(--teal-deep);
  color: var(--mint);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-person strong {
  display: block;
  font-size: 0.95rem;
  color: var(--teal-deep);
}

.testi-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-section { background: white; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  background: white;
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal-deep);
  gap: 16px;
}

.faq-q i {
  color: var(--teal);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-a p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--teal-deep);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(50px);
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(50px);
}

.contact-info h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.info-row .info-icon {
  width: 44px;
  height: 44px;
  background: rgba(167, 243, 208, 0.15);
  border: 1px solid rgba(167, 243, 208, 0.3);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--mint);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.info-row a, .info-row span {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-row a:hover { color: var(--mint); }

.contact-btns {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-btns .btn-primary {
  background: var(--cyan);
}

.contact-btns .btn-primary:hover {
  background: var(--mint);
  color: var(--teal-deep);
}

.contact-btns .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-btns .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
  color: white;
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--soft);
  transition: all 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .logo-word strong { color: white; }
.footer-logo .logo-word span { color: #94a3b8; }

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--mint);
  padding-left: 4px;
}

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.foot-contact i {
  color: var(--mint);
  margin-top: 4px;
  flex-shrink: 0;
}

.foot-contact a { color: #94a3b8; }
.foot-contact a:hover { color: white; }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { height: auto; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .port-mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-large { grid-column: span 2; }
  .mosaic-wide { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-list { display: none; }
  .nav-cta div { display: none; }
  .nav-cta { padding: 10px 14px; }
  .mobile-toggle { display: flex; }
  .nav-list.active {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    gap: 16px;
    margin: 0 16px;
  }
  .hero-fluid { padding-top: 130px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .stats-wave { flex-direction: column; gap: 20px; }
  .wave-sep { width: 50px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .port-mosaic { grid-template-columns: 1fr; }
  .mosaic-large, .mosaic-wide { grid-column: span 1; }
  .stat-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .editorial-side { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 28px; }
  .cost-item { grid-template-columns: 1fr; gap: 8px; }
  .comparison-table { overflow-x: auto; }
  .drop-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .drop-marker { width: 60px; height: 60px; }
  .drop-line { left: 30px; }
  .droplet-main { width: 260px; height: 320px; }
}

/* Selection */
::selection {
  background: var(--teal);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--grad-1);
  border-radius: 10px;
}