/* =========================================================
   OceanCloud — Global Design System  (Azurio-inspired dark)
   ========================================================= */

/* ===== TOKENS ===== */
:root {
  --bg:           #090909;
  --bg-2:         #0f0f10;
  --bg-3:         #141416;
  --border:       rgba(255,255,255,.07);
  --border-hover: rgba(255,255,255,.18);
  --text:         #ededef;
  --text-dim:     rgba(237,237,239,.38);
  --text-mid:     rgba(237,237,239,.62);
  --accent:       #00b4d8;
  --accent-2:     #06d6a0;
  --accent-warm:  #ffd166;
  --ocean-blue:   #0077b6;
  --white:        #ffffff;

  --radius:    10px;
  --radius-lg: 18px;
  --ease:      cubic-bezier(.25,.1,.25,1);
  --ease-out:  cubic-bezier(0,.55,.45,1);
  --t:         .38s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .028;
  pointer-events: none;
  z-index: 9998;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== CUSTOM CURSOR ===== */
#c-dot, #c-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
#c-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  mix-blend-mode: screen;
}
#c-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,180,216,.5);
  mix-blend-mode: screen;
  transition: width var(--t) var(--ease),
              height var(--t) var(--ease),
              border-color var(--t) var(--ease),
              opacity .3s;
}
body:not(.has-mouse) #c-dot,
body:not(.has-mouse) #c-ring { opacity: 0; }
.cursor-grow #c-ring {
  width: 60px; height: 60px;
  border-color: var(--accent);
}

/* ===== COOKIE CONSENT BANNER ===== */
#oc-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--bg-2);
  border-top: 1px solid rgba(0,180,216,.25);
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.ccb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ccb-text strong {
  display: block;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.ccb-text span { color: var(--text-mid); font-size: .82rem; line-height: 1.5; }
.ccb-text a { color: var(--accent); }
.ccb-text a:hover { text-decoration: underline; }
.ccb-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ccb-btns button {
  padding: 9px 24px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, border-color .2s, color .2s;
}
#ccb-decline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
}
#ccb-decline:hover { border-color: rgba(255,255,255,.4); color: #fff; }
#ccb-accept {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid transparent;
}
#ccb-accept:hover { background: var(--ocean-blue); }
@media (max-width: 600px) {
  .ccb-inner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .ccb-btns { width: 100%; }
  .ccb-btns button { flex: 1; text-align: center; }
}

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: fixed;
  top: 16px; left: -9999px;
  z-index: 99999;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: left 0s;
}
.skip-link:focus { left: 16px; }

/* ===== UTILITY ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(.65rem, 1.2vw, .78rem);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .85rem;
  color: #fff;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.logo-text span { color: var(--accent); }

/* links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li { position: relative; }

.nav-links li .nav-num {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 2px;
}
.nav-links a {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active-link { color: var(--white); background: rgba(255,255,255,.06); }

.nav-links li .nav-cta {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--white);
  padding: 9px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.nav-links li .nav-cta:hover {
  border-color: var(--accent);
  background: rgba(0,180,216,.08);
  color: var(--accent);
}
.nav-links li .nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg);
  padding-bottom: 0;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(0,119,182,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,180,216,.1) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-eyebrow .h-line {
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--accent);
}

.hero-h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 14ch;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero-h1 .word {
  display: inline-block;
  overflow: hidden;
}
.hero-h1 .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.hero-h1 .word-inner.in { transform: translateY(0); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  padding: 48px 0 72px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 440px;
}
.hero-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-stats-row {
  display: flex;
  gap: 32px;
}
.hsr-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hsr-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hsr-lbl {
  font-size: .72rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: -.01em;
}
.btn-primary:hover {
  background: #00cef5;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,180,216,.3);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,.06);
}
.btn-outline:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-white:hover {
  background: #d0f7ff;
  transform: translateY(-2px);
}
.btn-white:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ===== MARQUEE STRIP ===== */
#marquee {
  padding: 20px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
}
.marquee-item span:hover { color: var(--accent); }
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-hover);
  flex-shrink: 0;
}

/* ===== ABOUT / MANIFESTO ===== */
#manifesto {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
}
.manifesto-h {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.manifesto-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ===== SERVICES ===== */
#services {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.services-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  max-width: 10ch;
}
.services-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.svc-list { border-top: 1px solid var(--border); }

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,180,216,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.svc-row:hover::before { opacity: 1; }

.svc-num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.svc-body { display: flex; align-items: center; gap: 22px; }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s;
}
.svc-row:hover .svc-icon {
  transform: scale(1.08) rotate(-6deg);
  background: rgba(0,180,216,.18);
}
.svc-name {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 4px;
  transition: color .25s;
}
.svc-row:hover .svc-name { color: var(--accent); }
.svc-desc {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 500px;
}
.svc-tags-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.svc-tag {
  font-size: .65rem;
  font-weight: 600;
  background: rgba(255,255,255,.06);
  color: var(--text-dim);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  letter-spacing: .04em;
}
.svc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 1rem;
  flex-shrink: 0;
  transition: border-color var(--t), color var(--t), background var(--t), transform var(--t);
}
.svc-row:hover .svc-arrow {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
  transform: rotate(45deg);
}

/* ===== STATS ===== */
#stats {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  padding: 48px 40px;
  background: var(--bg-2);
  position: relative;
  transition: background var(--t);
}
.stat-block:hover { background: var(--bg-3); }
.stat-block::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: var(--border);
}
.stat-block:last-child::after { display: none; }
.stat-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* ===== CASE STUDIES ===== */
#work {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.work-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  max-width: 12ch;
}
.work-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.work-card {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  transition: background var(--t);
}
.work-card:first-child { aspect-ratio: unset; grid-row: span 2; }
.work-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform .7s var(--ease), opacity .5s;
  opacity: 0;
}
.work-card:hover .work-card-img { opacity: 1; transform: scale(1); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,9,9,.9) 0%, rgba(9,9,9,.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .5s;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s;
}
.work-card:hover .work-card-body { opacity: 1; }
.work-card-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.2);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.work-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.work-card-metrics {
  display: flex;
  gap: 20px;
}
.wm-item .wm-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.wm-item .wm-key {
  font-size: .65rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* static card body (before hover) */
.work-card-static {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity .4s;
}
.work-card:hover .work-card-static { opacity: 0; }
.wcs-num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .1em;
}
.wcs-name {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.3;
}
.wcs-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.test-header { margin-bottom: 64px; }
.test-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
}
.test-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tcard {
  background: var(--bg-2);
  padding: 36px;
  transition: background var(--t);
}
.tcard:hover { background: var(--bg-3); }
.tcard-stars { color: var(--accent-warm); font-size: .9rem; letter-spacing: 2px; margin-bottom: 20px; }
.tcard-quote {
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.tcard-quote::before { content: '\201C'; font-size: 2rem; color: var(--accent); font-style: normal; line-height: .5; display: block; margin-bottom: 10px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  color: var(--bg);
  flex-shrink: 0;
}
.tcard-author-info h4 { font-size: .88rem; font-weight: 700; color: var(--white); }
.tcard-author-info span { font-size: .78rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.faq-header { margin-bottom: 64px; }
.faq-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-top: 8px;
}
.faq-title span { color: var(--accent); }
.faq-sub { font-size: 1rem; color: var(--text-mid); margin-top: 14px; max-width: 500px; }

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-2);
  overflow: hidden;
  transition: background var(--t);
}
.faq-item[open] { background: var(--bg-3); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color var(--t);
}
.faq-item[open] summary { color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text-dim);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--accent);
  color: var(--bg);
  transform: rotate(180deg);
}
.faq-body { padding: 0 28px 22px; border-top: 1px solid var(--border); }
.faq-body p { color: var(--text-mid); line-height: 1.8; font-size: .92rem; padding-top: 18px; }

/* ===== CTA ===== */
#cta-banner {
  padding: 0;
}
.cta-full {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,119,182,.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-full h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-full h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-full p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.cta-inner { position: relative; z-index: 1; }
.cta-border-top { border-top: 1px solid var(--border); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 700;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,.08);
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--text-mid);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--accent); }

/* footer bottom bar */
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fb-left { display: flex; flex-direction: column; gap: 3px; }
.fb-copy { font-size: .8rem; color: var(--text-dim); }
.fb-craft { font-size: .75rem; color: rgba(255,255,255,.18); font-style: italic; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent-2);
  background: rgba(6,214,160,.08);
  border: 1px solid rgba(6,214,160,.2);
  border-radius: 50px;
  padding: 6px 14px;
}
.status-dot-anim {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}
.fb-right { display: flex; gap: 20px; }
.fb-right a { font-size: .8rem; color: var(--text-dim); transition: color var(--t); }
.fb-right a:hover { color: var(--accent); }
.fb-sep { color: var(--border-hover); font-size: .8rem; }

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), border-color var(--t), color var(--t);
  z-index: 500;
}
#back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-top:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PROCESS (HOW WE WORK) ===== */
#process {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.process-header {
  margin-bottom: 72px;
}
.process-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-top: 8px;
  max-width: 16ch;
}
.process-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.proc-step {
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
  transition: background var(--t);
  overflow: hidden;
}
.proc-step:hover { background: var(--bg-3); }
.proc-step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.proc-step:hover::before { opacity: 1; }
.proc-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.06);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.proc-step:hover .proc-num { color: rgba(0,180,216,.15); }
.proc-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.proc-content p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.proc-step:hover .proc-content h3 { color: var(--accent); }
.proc-step:hover .proc-content p { color: var(--text-mid); }

/* ===== WHY OCEANCLOUD ===== */
#why {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.why-header {
  margin-bottom: 64px;
}
.why-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-top: 8px;
  max-width: 14ch;
}
.why-title em { font-style: italic; font-weight: 300; color: var(--accent); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--bg-2);
  padding: 44px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.why-item:hover { background: var(--bg-3); }
.why-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity var(--t);
}
.why-item:hover::after { opacity: 1; }
.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s;
}
.why-item:hover .why-icon-wrap {
  transform: scale(1.08) rotate(-5deg);
  background: rgba(0,180,216,.2);
}
.why-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  transition: color .25s;
}
.why-item:hover .why-body h3 { color: var(--accent); }
.why-body p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.why-item:hover .why-body p { color: var(--text-mid); }
.why-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(6,214,160,.08);
  border: 1px solid rgba(6,214,160,.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== CHAT WIDGET ===== */
#oc-chat {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* toggle button */
#oc-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(0,180,216,.45);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  position: relative;
  flex-shrink: 0;
}
#oc-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 44px rgba(0,180,216,.6);
  background: #00cef5;
}
#oc-toggle svg { width: 22px; height: 22px; transition: opacity .2s, transform .2s; }
.oc-icon-chat { opacity: 1; transform: scale(1); }
.oc-icon-close { opacity: 0; transform: scale(.6) rotate(-90deg); position: absolute; }
#oc-toggle.active .oc-icon-chat { opacity: 0; transform: scale(.6) rotate(90deg); }
#oc-toggle.active .oc-icon-close { opacity: 1; transform: scale(1) rotate(0deg); }

/* unread badge */
#oc-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  letter-spacing: 0;
  animation: oc-badge-pop .3s var(--ease-out);
}
@keyframes oc-badge-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* panel */
#oc-panel {
  width: 370px;
  height: 560px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(0,180,216,.06);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  pointer-events: none;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
#oc-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* header */
#oc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
#oc-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  opacity: .4;
}
.oc-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .82rem;
  color: var(--bg);
  flex-shrink: 0;
  letter-spacing: -.5px;
}
.oc-header-info { flex: 1; min-width: 0; }
.oc-bot-name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.oc-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  color: var(--accent-2);
  margin-top: 2px;
}
.oc-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
#oc-close {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t), background var(--t);
  flex-shrink: 0;
}
#oc-close:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* messages */
#oc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) transparent;
}
#oc-messages::-webkit-scrollbar { width: 3px; }
#oc-messages::-webkit-scrollbar-track { background: transparent; }
#oc-messages::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 2px; }

.oc-msg { display: flex; animation: oc-msg-in .22s var(--ease-out); }
@keyframes oc-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.oc-msg--bot  { justify-content: flex-start; }
.oc-msg--user { justify-content: flex-end; }

.oc-bubble {
  max-width: 82%;
  padding: 10px 14px;
  font-size: .84rem;
  line-height: 1.7;
}
.oc-msg--bot .oc-bubble {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  color: var(--text-mid);
}
.oc-msg--bot .oc-bubble strong { color: var(--white); font-weight: 700; }
.oc-msg--user .oc-bubble {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: 14px 14px 4px 14px;
}

/* AI badge in header */
.oc-ai-badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* AI-generated message subtle left accent */
.oc-msg--ai .oc-bubble {
  border-left: 2px solid rgba(0,180,216,.35);
}

/* chat footer note */
#oc-footer-note {
  text-align: center;
  font-size: .65rem;
  color: var(--text-dim);
  padding: 6px 12px 8px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
  flex-shrink: 0;
  letter-spacing: .02em;
}
#oc-footer-note a {
  color: var(--text-dim);
  text-decoration: underline;
  transition: color var(--t);
}
#oc-footer-note a:hover { color: var(--accent); }

/* typing dots */
.oc-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px !important;
}
.oc-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: oc-bounce 1.3s ease-in-out infinite;
}
.oc-typing span:nth-child(2) { animation-delay: .18s; }
.oc-typing span:nth-child(3) { animation-delay: .36s; }
.oc-typing-label {
  font-size: .7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .03em;
  margin-left: 6px;
  animation: oc-pulse-label 1.8s ease-in-out infinite;
}
@keyframes oc-pulse-label {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}
@keyframes oc-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .35; }
  40%           { transform: translateY(-7px); opacity: 1; }
}

/* quick-reply chips */
#oc-chips {
  padding: 8px 14px 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
  min-height: 0;
}
.oc-chip {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-mid);
  font-size: .74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
  font-family: inherit;
  white-space: nowrap;
}
.oc-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,.07);
}

/* input row */
#oc-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
  flex-shrink: 0;
}
#oc-input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: .84rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), background var(--t);
  min-width: 0;
}
#oc-input:focus {
  border-color: rgba(0,180,216,.4);
  background: rgba(0,180,216,.04);
}
#oc-input::placeholder { color: var(--text-dim); }

#oc-send {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent);
  border: none;
  color: var(--bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
#oc-send:hover { background: #00cef5; transform: scale(1.06); }

/* push back-to-top button up so it clears the chat toggle */
#back-top { bottom: 100px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  .work-grid     { grid-template-columns: repeat(2, 1fr); }
  .work-card:first-child { grid-row: span 1; aspect-ratio: 3/4; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

  /* Hero */
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-right-block { align-items: flex-start; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats-row { gap: 20px; }

  /* Services */
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .svc-row { grid-template-columns: 40px 1fr auto; gap: 16px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .proc-step { padding: 28px 20px; }

  /* Why */
  .why-item { padding: 28px 20px; }

  /* Work */
  .work-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .work-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stat-block { padding: 36px 24px; }
  .stat-block::after { display: none; }

  /* Testimonials */
  .tcard { padding: 28px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9,9,9,.96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    backdrop-filter: blur(24px);
    z-index: 10001;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; font-weight: 700; padding: 14px 32px; border-radius: 12px; }
  .nav-links li .nav-cta { border: 1px solid var(--border-hover); margin-top: 8px; font-size: 1rem; }
  .hamburger { display: flex; }
  .hamburger:focus-visible { outline: 2px solid var(--accent); border-radius: 6px; }

  /* CTA */
  .cta-full h2 { font-size: clamp(2rem, 8vw, 3.5rem); }
}

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

  /* Hero */
  .hero-h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats-row { flex-wrap: wrap; gap: 16px; }
  .hsr-item { min-width: 80px; }

  /* Process & Why */
  .proc-step { padding: 24px 16px; }
  .why-item  { padding: 24px 16px; }

  /* Stats */
  .stat-block { padding: 28px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { gap: 16px; }
  .work-header, .services-header { gap: 14px; }

  /* FAQ */
  .faq-list { border-radius: var(--radius); }
  .faq-item summary { font-size: .9rem; }

  /* Chat */
  #oc-chat { right: 16px; bottom: 16px; }
  #oc-panel { width: calc(100vw - 32px); height: 70dvh; max-height: 480px; }
  #back-top { bottom: 88px; right: 16px; }

  /* Buttons */
  .btn-primary, .btn-outline, .btn-white { font-size: .85rem; padding: 12px 22px; }
}

/* ===== INDUSTRIES ===== */
#industries { padding: 100px 0; }
.ind-header { text-align: center; margin-bottom: 56px; }
.ind-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; color: var(--white); margin: 10px 0 0; }
.ind-title em { font-style: italic; color: var(--accent); }
.ind-sub { font-size: clamp(.92rem, 1.6vw, 1.05rem); color: var(--text-mid); max-width: 580px; margin: 16px auto 0; line-height: 1.7; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--t), transform var(--t), background var(--t);
}
.ind-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-3);
  transform: translateY(-3px);
}
.ind-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.ind-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.ind-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tags span { font-size: .7rem; font-weight: 700; background: rgba(0,180,216,.08); border: 1px solid rgba(0,180,216,.18); color: var(--accent); padding: 3px 10px; border-radius: 50px; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ind-grid { grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 0 60px; border-top: 1px solid var(--border); }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: var(--white); margin: 10px 0 12px; }
.pricing-header h2 em { font-style: italic; color: var(--accent); }
.pricing-header p { color: var(--text-mid); font-size: .97rem; max-width: 520px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--t), transform var(--t);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-featured {
  background: linear-gradient(145deg, rgba(0,119,182,.12), rgba(0,180,216,.06));
  border-color: rgba(0,180,216,.35);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 50px;
  white-space: nowrap;
}
.pricing-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pricing-tier { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 6px; }
.pricing-range { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.pricing-range strong { color: var(--accent); }
.pricing-card > p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.pricing-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pricing-includes li { font-size: .85rem; color: var(--text-mid); padding-left: 18px; position: relative; }
.pricing-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; font-size: .8rem; }
.pricing-note { text-align: center; font-size: .85rem; color: var(--text-dim); }
.pricing-note a { color: var(--accent); font-weight: 500; }
.pricing-note a:hover { text-decoration: underline; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
