/*
 * ═══════════════════════════════════════════════════════
 *  WAVE DIGITAL — COMPONENTS.CSS
 *  All reusable UI components: buttons, cards, forms,
 *  badges, modals, menu, blog, stats, contact, map…
 * ═══════════════════════════════════════════════════════
 */

/* ─── BUTTONS ─── */
.btn-wave {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: .7rem 1.8rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn-wave::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--t-base);
}
.btn-wave:hover::before { opacity: 1; }
.btn-wave:active { transform: scale(.97); }

.btn-primary  { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-blue); transform: translateY(-2px); color: white; }

.btn-ghost { background: transparent; color: var(--blue-g); border: 1.5px solid rgba(96,165,250,.45); }
.btn-ghost:hover { border-color: var(--blue-g); color: var(--pure); box-shadow: 0 0 0 4px rgba(96,165,250,.08); }

.btn-white { background: white; color: var(--blue); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

.btn-sm { padding: .45rem 1.2rem; font-size: var(--fs-xs); }
.btn-lg { padding: .9rem 2.4rem; font-size: var(--fs-base); }

/* ─── BADGE / CHIP ─── */
.badge-wave {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: var(--r-full);
}
.badge-blue { background: rgba(37,99,235,.18); color: var(--blue-g); border: 1px solid rgba(59,130,246,.3); }
.badge-white { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
.badge-success { background: rgba(22,163,74,.15); color: #4ade80; border: 1px solid rgba(22,163,74,.3); }

/* ─── CARDS ─── */
.card-wave {
  background: var(--bg3);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform var(--t-slow) var(--ease), border-color var(--t-base), box-shadow var(--t-base);
}
.card-wave:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,.25);
  box-shadow: var(--shadow-blue);
}
.card-wave--blue {
  background: linear-gradient(135deg, rgba(37,99,235,.15) 0%, rgba(37,99,235,.04) 100%);
  border-color: rgba(37,99,235,.25);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.3rem;
  color: var(--blue-g);
}
.card-wave h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}
.card-wave p {
  font-size: var(--fs-sm);
  color: rgba(232,236,242,.6);
  line-height: var(--lh-relaxed);
}

/* ─── FORM ELEMENTS ─── */
.fg {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}
.fg label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(232,236,242,.45);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .8rem 1.1rem;
  color: var(--pure);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(59,130,246,.6);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(232,236,242,.22); }
.fg textarea { min-height: 130px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2360A5FA' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: .9rem;
  background: var(--blue); color: white;
  font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  border: none; border-radius: var(--r-md); cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.form-note { font-size: var(--fs-xs); color: rgba(232,236,242,.3); text-align: center; margin-top: .8rem; }

/* ─── INPUT STATES (light bg version) ─── */
.fg--light input,
.fg--light select,
.fg--light textarea {
  background: white;
  border-color: #D1D5DB;
  color: var(--text-dark);
}
.fg--light input:focus,
.fg--light select:focus,
.fg--light textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ─── TYPOGRAPHY ELEMENTS ─── */
.display-1 { font-family: var(--font-display); font-size: var(--fs-hero); line-height: var(--lh-tight); letter-spacing: .02em; }
.heading-xl { font-family: var(--font-display); font-size: var(--fs-display); line-height: var(--lh-tight); }
.heading-lg { font-family: var(--font-display); font-size: var(--fs-title); line-height: var(--lh-tight); }
.heading-md { font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: var(--fw-bold); }
.heading-sm { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: var(--fw-bold); }

.text-lead { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: rgba(232,236,242,.72); }
.text-muted { color: var(--muted); font-size: var(--fs-sm); }
.text-label { font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; }
.text-blue { color: var(--blue-g); }
.text-white { color: var(--pure); }

/* ─── DIVIDERS ─── */
.divider { border: none; border-top: var(--border); margin: var(--sp-8) 0; }
.divider--blue { border-top: 1px solid rgba(59,130,246,.2); }

/* ─── ICON CIRCLE ─── */
.icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,99,235,.1); border: 1px solid rgba(59,130,246,.2);
  color: var(--blue-g); font-size: 1.4rem;
  transition: background var(--t-base), transform var(--t-base);
}
.icon-circle:hover { background: rgba(37,99,235,.2); transform: scale(1.08); }

/* ─── LIST WITH CHECKMARKS ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: var(--fs-sm); color: rgba(232,236,242,.7);
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%232563EB' stroke-width='1.5'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2360A5FA' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── STAT ITEM ─── */
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--pure); line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: rgba(232,236,242,.38);
}

/* ─── TESTIMONIAL CARD ─── */
.testi-card {
  background: var(--bg3); border: var(--border); border-radius: var(--r-lg);
  padding: var(--sp-8); position: relative;
}
.testi-quote { font-size: 3rem; line-height: 1; color: var(--blue); opacity: .4; font-family: Georgia, serif; margin-bottom: .5rem; }
.testi-text { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: rgba(232,236,242,.7); margin-bottom: var(--sp-5); }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mid); object-fit: cover; }
.testi-name { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--pure); }
.testi-role { font-size: var(--fs-xs); color: var(--muted); }

/* ─── ACCORDION ─── */
.acc-item {
  border-bottom: var(--border);
}
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-5) 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: var(--fw-semi); font-size: var(--fs-base);
  color: var(--pure); text-align: left;
  transition: color var(--t-base);
}
.acc-trigger:hover { color: var(--blue-g); }
.acc-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--blue-g);
  transition: transform var(--t-base), border-color var(--t-base);
}
.acc-item.open .acc-icon { transform: rotate(45deg); border-color: var(--blue-g); }
.acc-body {
  overflow: hidden; max-height: 0;
  transition: max-height .4s var(--ease2), padding var(--t-base);
}
.acc-item.open .acc-body { max-height: 500px; }
.acc-content { padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: rgba(232,236,242,.6); line-height: var(--lh-relaxed); }

/* ─── TABS ─── */
.tabs-nav {
  display: flex; gap: .3rem; border-bottom: var(--border);
  margin-bottom: var(--sp-8);
}
.tab-btn {
  font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  padding: .7rem 1.4rem; border-radius: var(--r-md) var(--r-md) 0 0;
  color: var(--muted); cursor: pointer; border: none; background: transparent;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--t-base), border-color var(--t-base);
}
.tab-btn.active { color: var(--blue-g); border-bottom-color: var(--blue); }
.tab-panel { display: none; animation: fadeUp .3s var(--ease); }
.tab-panel.active { display: block; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(13,15,20,.88); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--t-base);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg2); border: var(--border-blue);
  border-radius: var(--r-xl); padding: var(--sp-10);
  max-width: 560px; width: 90%;
  transform: scale(.94); transition: transform var(--t-slow) var(--ease);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: var(--muted); cursor: pointer;
  border: none; font-size: 1.1rem;
  transition: background var(--t-base), color var(--t-base);
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--pure); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: var(--z-toast);
  background: var(--bg2); border: var(--border-blue); border-radius: var(--r-lg);
  padding: 1rem 1.4rem; display: flex; align-items: center; gap: .8rem;
  transform: translateY(120%); transition: transform var(--t-slow) var(--ease);
  max-width: 340px; box-shadow: var(--shadow-md);
}
.toast.show { transform: translateY(0); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-msg { font-size: var(--fs-sm); color: var(--light); }

/* ─── CONTACT POINTS ─── */
.contact-points { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.cpoint { display: flex; align-items: flex-start; gap: 1rem; }
.cpoint-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(37,99,235,.1); border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  color: var(--blue-g); margin-top: .1rem;
}
.cpoint-icon svg { width: 18px; height: 18px; }
.cpoint-title { font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--ls-wider); text-transform: uppercase; color: rgba(232,236,242,.35); margin-bottom: .3rem; }
.cpoint-text { font-size: var(--fs-sm); color: rgba(232,236,242,.7); line-height: 1.55; }

/* ─── GRID UTILITIES ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-8); }
@media(max-width:768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════
   HAMBURGER MENU — CIRCLE REVEAL
═══════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
}
/* the expanding circle */
.menu-circle {
  position: fixed; top: 1.2rem; right: 2.8rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); transform: scale(0);
  transform-origin: center; transition: transform .7s var(--ease); z-index: 999;
}
body.menu-open .menu-circle { transform: scale(70); }
/* content inside */
.menu-content {
  position: fixed; inset: 0; z-index: 1001;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease .14s;
}
body.menu-open .menu-content { opacity: 1; pointer-events: all; }
.menu-nav {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; width: 100%; flex: 1;
}
.menu-nav li { overflow: hidden; width: 100%; text-align: center; }
.menu-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 10vw, 6rem);
  letter-spacing: .03em; line-height: 1.18;
  color: var(--pure); text-decoration: none;
  display: block; text-align: center;
  transform: translateY(110%);
  transition: transform .55s var(--ease), color .2s;
}
body.menu-open .menu-nav a { transform: translateY(0); }
.menu-nav li:nth-child(1) a { transition-delay: .10s }
.menu-nav li:nth-child(2) a { transition-delay: .16s }
.menu-nav li:nth-child(3) a { transition-delay: .22s }
.menu-nav li:nth-child(4) a { transition-delay: .28s }
.menu-nav li:nth-child(5) a { transition-delay: .34s }
.menu-nav a:hover { color: rgba(255,255,255,.55); }
.menu-bottom {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 0 2rem;
}
.menu-social { display: flex; gap: 2rem; justify-content: center; }
.menu-social a {
  font-family: 'Manrope', sans-serif; font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s;
}
.menu-social a:hover { color: var(--pure); }
.menu-cta {
  font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: var(--pure); padding: .75rem 2.8rem; border-radius: 3px;
  text-decoration: none; transition: background .2s;
}
.menu-cta:hover { background: rgba(255,255,255,.22); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: padding .3s, background .3s;
}
nav.scrolled {
  padding: .9rem 4rem;
  background: rgba(19,21,26,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59,130,246,.08);
}
.nav-logo-link { text-decoration: none; display: flex; align-items: center; z-index: 1; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: auto; display: block; }
/* Desktop center links */
.nav-center {
  display: flex; align-items: center; gap: 2rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-family: 'Manrope', sans-serif; font-size: .76rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(232,236,242,.55); text-decoration: none; transition: color .2s;
}
.nav-center a:hover { color: var(--blue-g); }
.nav-right { display: flex; align-items: center; gap: 1.4rem; z-index: 1; }
.nav-cta-link {
  font-family: 'Manrope', sans-serif; font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--blue); color: var(--pure);
  padding: .55rem 1.3rem; border-radius: 3px; text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.nav-cta-link:hover { background: var(--blue-b); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,99,235,.4); }
@media(max-width:960px){ .nav-center { display:none; } .nav-cta-link { display:none; } }

/* HAMBURGER BUTTON */
.ham-btn {
  width: 44px; height: 44px;
  border: none; background: none; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  z-index: 1002; position: relative;
  padding: 0;
}
.ham-btn span {
  display: block; height: 1.5px;
  background: var(--pure);
  transition: transform .4s var(--ease), width .3s, opacity .3s;
}
.ham-btn span:nth-child(1) { width: 24px; }
.ham-btn span:nth-child(2) { width: 16px; margin-left: -8px; align-self: flex-start; }
.ham-btn span:nth-child(3) { width: 20px; }
body.menu-open .ham-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
body.menu-open .ham-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .ham-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }


/* ═══════════════════════════
   MARQUEE
═══════════════════════════ */
.marquee-wrap { background: var(--blue); padding: 1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: marquee 28s linear infinite; }
.m-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: .12em;
  color: rgba(255,255,255,.8);
  padding: 0 2.2rem;
  display: flex; align-items: center; gap: 2.2rem;
}
.m-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); display: inline-block; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ═══════════════════════════
   SERVICES — TILT 3D
═══════════════════════════ */
.services { padding: 6rem 4rem; background: var(--bg); }
.section-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .9; color: var(--pure);
}
h2.section-title span { color: var(--blue-b); }
.section-hdr p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem; color: rgba(232,236,242,.72); line-height: 1.78;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
/* tilt card */
.svc-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 2rem 1.8rem;
  text-decoration: none; display: block;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: border-color .3s, box-shadow .3s;
  will-change: transform;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; border-radius: 12px;
}
.svc-card:hover { border-color: rgba(59,130,246,.25); box-shadow: 0 16px 48px rgba(37,99,235,.14); }
.svc-card:hover::before { opacity: 1; }
/* shine effect */
.svc-card::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  top: var(--my, 50%); left: var(--mx, 50%);
  transform: translate(-50%, -50%);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon { width: 36px; height: 36px; margin-bottom: 1.2rem; color: var(--blue-b); }
h3.svc-name {
  font-family: 'Manrope', sans-serif;
  font-size: .9rem; font-weight: 800;
  color: var(--pure); margin-bottom: .5rem; letter-spacing: -.01em;
}
.svc-desc { font-size: .8rem; color: rgba(232,236,242,.4); line-height: 1.65; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-b); margin-top: 1rem;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-cta { text-align: center; margin-top: 3rem; }


/* ═══════════════════════════
   STATS — FULLSCREEN COUNTER
═══════════════════════════ */
.stats-section {
  background: var(--blue);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.stats-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.stat-block {
  padding: 4.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,.06); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: .9; color: var(--pure); margin-bottom: .6rem;
  display: block;
}
h3.stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; color: rgba(255,255,255,.7); line-height: 1.45;
}
.stat-desc { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .4rem; line-height: 1.5; }
/* bg huge text */
.stats-section::after {
  content: 'WAVE';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28vw; line-height: 1;
  color: rgba(255,255,255,.03);
  position: absolute; bottom: -3vw; right: -2vw;
  pointer-events: none; letter-spacing: .04em;
  z-index: 0;
}


/* ═══════════════════════════
   AI SECTION
═══════════════════════════ */
.ai-sec { padding: 5.5rem 4rem; }
.ai-inner {
  background: linear-gradient(140deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 16px; padding: 3rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
  position: relative; overflow: hidden;
}
.ai-inner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
  pointer-events: none;
}
.ai-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,99,235,.14); border: 1px solid rgba(59,130,246,.22);
  color: var(--blue-g);
  font-family: 'Manrope', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1.4rem;
}
h2.ai-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .92;
  color: var(--pure); margin-bottom: 1.2rem;
}
h2.ai-title em { color: var(--blue-b); font-style: normal; }
.ai-body { font-family: 'Manrope', sans-serif; font-size: 1rem; color: rgba(232,236,242,.72); line-height: 1.78; margin-bottom: 1.8rem; }
.pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  font-family: 'Manrope', sans-serif; font-size: .74rem; font-weight: 600;
  padding: .4rem .9rem; border: 1px solid rgba(59,130,246,.18);
  border-radius: 100px; color: rgba(232,236,242,.5);
  background: rgba(37,99,235,.06);
  transition: border-color .2s, color .2s, background .2s;
}
.pill:hover { border-color: var(--blue-b); color: var(--blue-g); background: rgba(37,99,235,.12); }


/* ═══════════════════════════
   RESULTS — MAGAZINE HORIZONTAL
═══════════════════════════ */
.results { background: var(--white); padding: 7rem 4rem; color: var(--bg); }
.results .tag { color: var(--blue); }.results .tag::before { background: var(--blue); }
.results-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
h2.results-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5.5vw, 5.5rem); line-height: .9; color: var(--bg); }
h2.results-title span { color: var(--blue); }
.results-hdr p { font-family: 'Manrope', sans-serif; font-size: 1rem; color: rgba(26,29,35,.5); line-height: 1.78; }
/* magazine layout */
.results-magazine {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: rgba(26,29,35,.08);
  border: 1px solid rgba(26,29,35,.08);
  border-radius: 12px;
  overflow: hidden;
}
.res-card {
  background: #fff;
  padding: 2.4rem 2rem;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.res-card:hover { background: #F7F9FF; }
/* big card spans rows */
.res-card.big {
  grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3rem;
  background: var(--bg);
  color: var(--light);
}
.res-card.big:hover { background: var(--bg2); }
.res-sector {
  font-family: 'Manrope', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-b); margin-bottom: 1.2rem;
}
.res-card.big .res-sector { color: var(--blue-g); }
.res-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 5vw, 5rem); line-height: 1;
  color: var(--bg); margin-bottom: .6rem;
}
.res-num span { color: var(--blue); }
.res-card.big .res-num { font-size: clamp(4rem, 7vw, 7rem); color: var(--pure); }
.res-card.big .res-num span { color: var(--blue-g); }
h3.res-label { font-family: 'Manrope', sans-serif; font-size: .88rem; font-weight: 700; color: var(--bg); margin-bottom: .5rem; }
.res-card.big h3.res-label { color: var(--light); }
.res-desc { font-family: 'Manrope', sans-serif; font-size: .82rem; color: rgba(26,29,35,.48); line-height: 1.6; }
.res-card.big .res-desc { color: rgba(232,236,242,.5); }
.res-client { font-family: 'Manrope', sans-serif; font-size: .7rem; font-weight: 700; color: rgba(26,29,35,.28); margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(26,29,35,.07); text-transform: uppercase; letter-spacing: .06em; }
.res-card.big .res-client { color: rgba(232,236,242,.25); border-color: rgba(255,255,255,.08); }


/* ═══════════════════════════
   BLOG
═══════════════════════════ */
.blog { padding: 6rem 4rem; background: var(--bg2); }
.blog .section-hdr h2 { color: var(--pure); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px; overflow: hidden; text-decoration: none; display: block;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,.2); box-shadow: 0 16px 48px rgba(37,99,235,.12); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg2), var(--mid));
  display: flex; align-items: center; justify-content: center;
}
.blog-img svg { width: 90px; height: 90px; opacity: .75; color: #ffffff; stroke: #ffffff; }
.blog-cat { font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-g); padding: 1.4rem 1.6rem .6rem; }
h3.blog-title { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--pure); padding: 0 1.6rem 1rem; line-height: 1.45; }
.blog-meta { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(232,236,242,.55); padding: 0 1.6rem 1.6rem; }
.blog-cta { text-align: center; margin-top: 2.8rem; }


/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.contact { padding: 6rem 4rem; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; max-width: 1240px; margin: 0 auto; }
h2.contact-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5.5vw, 5.5rem); line-height: .9; color: var(--pure); margin-bottom: 1.4rem; }
h2.contact-title span { color: var(--blue-b); }
.contact-lead { font-family: 'Manrope', sans-serif; font-size: 1rem; color: rgba(232,236,242,.55); line-height: 1.78; margin-bottom: 2.4rem; }
.contact-points { display: flex; flex-direction: column; gap: 1.2rem; }
.cpoint { display: flex; align-items: flex-start; gap: 1rem; }
.cpoint-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(37,99,235,.12); border: 1px solid rgba(59,130,246,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue-b); }
.cpoint-icon svg { width: 16px; height: 16px; }
h4.cpoint-title { font-family: 'Manrope', sans-serif; font-size: .86rem; font-weight: 700; color: var(--pure); margin-bottom: .2rem; }
.cpoint-text { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: rgba(232,236,242,.4); line-height: 1.55; }
/* form */
.form-wrap { background: var(--bg2); border: 1px solid rgba(59,130,246,.1); border-radius: 14px; padding: 2.8rem; }
.form-title { font-family: 'Manrope', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--pure); margin-bottom: .4rem; }
.form-sub { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: rgba(232,236,242,.65); margin-bottom: 1.8rem; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.fg label { font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(232,236,242,.75); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 6px; padding: .9rem 1rem; color: var(--pure); font-family: 'DM Sans', sans-serif; font-size: 1rem; outline: none; width: 100%; transition: border-color .2s, background .2s; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(232,236,242,.45); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-b); background: rgba(37,99,235,.08); }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aabbcc' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; color: rgba(232,236,242,.65); }
.fg select option { background: var(--bg2); color: var(--pure); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(232,236,242,.5); margin-bottom: 1.4rem; line-height: 1.55; }
.form-privacy a { color: var(--blue-g); text-decoration: none; }
.form-submit { width: 100%; padding: 1.05rem; font-family: 'Manrope', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: var(--blue); color: var(--pure); border: none; border-radius: 6px; cursor: pointer; transition: background .2s, box-shadow .2s, transform .15s; box-shadow: 0 4px 20px rgba(37,99,235,.28); }
.form-submit:hover { background: var(--blue-b); box-shadow: 0 8px 32px rgba(37,99,235,.4); transform: translateY(-1px); }
.form-note { font-family: 'Manrope', sans-serif; font-size: .72rem; color: rgba(232,236,242,.22); text-align: center; margin-top: 1rem; }



/* ── BLOG IMAGE CARDS ── */
.blog-card { background:var(--bg3); border:1px solid rgba(255,255,255,.06); border-radius:12px; overflow:hidden; text-decoration:none; display:block; transition:transform .35s var(--ease),border-color .3s,box-shadow .3s; }
.blog-card:hover { transform:translateY(-8px); border-color:rgba(59,130,246,.3); box-shadow:0 20px 60px rgba(37,99,235,.2); }
.blog-img { position:relative; height:220px; overflow:hidden; }
.blog-img img { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.55) saturate(.4) hue-rotate(190deg); transition:transform .5s var(--ease), filter .4s; }
.blog-card:hover .blog-img img { transform:scale(1.06); filter:brightness(.65) saturate(.55) hue-rotate(190deg); }
.blog-img-overlay { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(37,99,235,.18) 0%, rgba(13,15,20,.7) 100%); }
.blog-img-cat { position:absolute; top:1rem; left:1.2rem; font-family:var(--font-heading); font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--blue-g); background:rgba(13,15,20,.6); backdrop-filter:blur(8px); border:1px solid rgba(59,130,246,.3); padding:.3rem .75rem; border-radius:100px; }
.blog-body { padding:1.4rem 1.6rem 1.8rem; }
h3.blog-title { font-family:var(--font-heading); font-size:1rem; font-weight:700; color:var(--pure); line-height:1.45; margin-bottom:.7rem; }
.blog-meta { font-family:var(--font-body); font-size:.78rem; color:rgba(232,236,242,.4); }

/* ── MAP ── */
.map-wrap { padding: 3rem 4rem 0; }
.map-header { margin-bottom:1.2rem; display:flex; align-items:baseline; gap:1.5rem; flex-wrap:wrap; }
h3.map-title { font-family:var(--font-display); font-size:2rem; color:var(--pure); letter-spacing:.04em; }
.map-addr { font-family:var(--font-body); font-size:.88rem; color:rgba(232,236,242,.45); }
.map-addr a { color:var(--blue-g); text-decoration:none; }
.wave-map { width:100%; height:420px; border-radius:12px; overflow:hidden; border:1px solid rgba(59,130,246,.15); }

/* ── PRIVACY CHECKBOX ── */
.privacy-check { margin-bottom:1.4rem; }
.check-label { display:flex; align-items:flex-start; gap:.9rem; cursor:pointer; }
.check-box { flex-shrink:0; width:20px; height:20px; border:2px solid rgba(255,255,255,.25); border-radius:4px; display:flex; align-items:center; justify-content:center; transition:border-color .2s, background .2s; margin-top:2px; }
.check-label input[type=checkbox] { display:none; }
.check-label input[type=checkbox]:checked + .check-box { background:var(--blue); border-color:var(--blue); }
.check-label input[type=checkbox]:checked + .check-box::after { content:'✓'; color:white; font-size:13px; font-weight:700; }
.check-text { font-family:var(--font-body); font-size:.82rem; color:rgba(232,236,242,.6); line-height:1.55; }
.check-text a { color:var(--blue-g); }
.check-error { font-size:.78rem; color:#f87171; margin-top:.4rem; display:none; }
.check-error.show { display:block; }

/* ── FOOTER LOGO SVG ── */
.foot-logo-link { display:inline-flex; margin-bottom:.8rem; }
.foot-logo-svg { height:32px; width:auto; }

/* ── GLOBAL KEYFRAMES ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:none} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

