﻿
:root {
  --green: #279b48;
  --orange: #ff5806;
  --blue: #00539f;
  --green-light: #e8f7ed;
  --orange-light: #fff1eb;
  --blue-light: #e6f0fa;
  --bg: #f8faff;
  --white: #ffffff;
  --text: #1a1d2e;
  --text-muted: #6b7280;
  --border: #e5e9f2;
  --shadow: 0 4px 24px rgba(0,83,159,0.08);
  --shadow-lg: 0 12px 48px rgba(0,83,159,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.icon-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* â”€â”€â”€ UTILITY â”€â”€â”€ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 600; font-family: var(--font-head);
  padding: 6px 14px; border-radius: 100px; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.badge.orange { background: var(--orange-light); color: var(--orange); }
.badge.green { background: var(--green-light); color: var(--green); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--text); line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span.blue { color: var(--blue); }
.section-title span.orange { color: var(--orange); }
.section-title span.green { color: var(--green); }
.section-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn i,
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(255,88,6,0.3);
}
.btn-primary:hover { background: #e04800; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,88,6,0.4); }
.btn-secondary {
  background: var(--white); color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--blue);
  padding: 14px 0; font-size: 15px;
}
.btn-ghost:hover { color: var(--orange); }
.btn-green {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 16px rgba(39,155,72,0.3);
}
.btn-green:hover { background: #1d7a38; transform: translateY(-2px); }

/* â”€â”€â”€ NAVBAR â”€â”€â”€ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.logo-text .digital { color: var(--orange); }
.logo-text .workspace { color: var(--blue); }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-dropdown-menu a {
  padding: 10px 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-live-agent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: linear-gradient(135deg, #e9f8ef, #f5fff7);
  border: 1px solid rgba(39,155,72,0.16);
  color: var(--green); text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(39,155,72,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-live-agent svg { width: 16px; height: 16px; }
.nav-live-agent:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(39,155,72,0.18);
  background: linear-gradient(135deg, #ddf6e6, #effcf2);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}

/* â”€â”€â”€ MOBILE MENU â”€â”€â”€ */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999; padding: 24px;
  flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 16px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 14px 16px; border-radius: var(--radius-sm);
  display: block; transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-menu-toggle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  cursor: pointer;
}
.mobile-menu-toggle:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 0 14px;
}
.mobile-submenu.open {
  display: flex;
}
.mobile-submenu a {
  font-size: 15px;
  padding: 12px 14px;
  background: #f8fbff;
}

/* â”€â”€â”€ PAGES â”€â”€â”€ */
.page { display: block; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  padding: 112px 0 96px;
  background:
    radial-gradient(circle at top right, rgba(255,88,6,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(39,155,72,0.1), transparent 24%),
    linear-gradient(135deg, #f5f9ff 0%, #edf4fc 52%, #f8fbff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,83,159,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,88,6,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-shell {
  position: relative; z-index: 1;
}
.hero-shell-centered {
  display: flex;
  justify-content: center;
}
.hero-panel {
  width: 100%;
  max-width: 1040px;
  padding: 36px 44px 40px;
  border-radius: 32px;
  border: 1px solid rgba(0,83,159,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,249,255,0.98));
  box-shadow: 0 24px 64px rgba(0,83,159,0.12);
  text-align: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,83,159,0.14);
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-title .digital { color: var(--orange); }
.hero-title .workspace { color: var(--blue); }
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 56px);
  color: #111111;
  line-height: 1.15;
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero-subtitle span {
  color: #111111;
}
.hero-typing-line {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 42px);
  margin-bottom: 22px;
}
.hero-typing-word {
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  position: relative;
}
.hero-typing-word::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 6px;
  background: var(--green);
  vertical-align: -0.12em;
  animation: blinkCursor 0.9s steps(1) infinite;
}
.hero-lead {
  max-width: 860px;
  margin: 0 auto 34px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-actions .btn-secondary {
  background: #fff;
  border-color: rgba(0,83,159,0.2);
  color: var(--blue);
}
.hero-actions .btn-secondary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.hero-alert {
  max-width: 640px;
  margin: 0 auto 24px;
}
@keyframes blinkCursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.form-alert {
  margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 600;
}
.form-alert-success { background: var(--green-light); color: var(--green); }
.form-alert-warning { background: var(--orange-light); color: var(--orange); }
.form-alert-error { background: #fff1f1; color: #d93025; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px; box-shadow: var(--shadow);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--blue);
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card-main {
  width: 100%; max-width: 420px;
  background: white; border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.hero-card-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.hero-card-badge {
  background: var(--green-light); color: var(--green);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.metric-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 13px; color: var(--text-muted); }
.metric-val { font-weight: 700; font-size: 15px; }
.metric-change {
  font-size: 12px; font-weight: 600; padding: 2px 8px;
  border-radius: 100px;
}
.metric-change.up { background: var(--green-light); color: var(--green); }
.metric-change.down { background: #fff1f1; color: #e02020; }
.floating-badge {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.floating-badge-1 { top: -20px; left: -30px; animation: float 5s 1s ease-in-out infinite; }
.floating-badge-2 { bottom: 20px; right: -20px; animation: float 5s 2s ease-in-out infinite; }
.floating-badge .icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.floating-badge .fbd { display: flex; flex-direction: column; }
.floating-badge .fbn { font-weight: 700; font-size: 14px; }
.floating-badge .fbs { font-size: 11px; color: var(--text-muted); }

/* â”€â”€â”€ CLIENTS STRIP â”€â”€â”€ */
.clients-strip {
  padding: 40px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clients-label { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.clients-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.client-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: #c0c8d8; letter-spacing: 1px; transition: color 0.2s;
}
.client-logo:hover { color: var(--blue); }

/* â”€â”€â”€ SERVICES â”€â”€â”€ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 56px;
}
.services-page-section {
  background: linear-gradient(180deg, rgba(230,240,250,0.35) 0%, rgba(248,250,255,0) 100%);
}
.services-page-intro {
  margin-bottom: 34px;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.3s ease; cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--blue)); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.services-page-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}
.service-media {
  height: 176px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
}
.services-page-media {
  height: 220px;
  margin-bottom: 0;
  border-radius: 24px 24px 0 0;
  position: relative;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-page-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(10,22,40,0.28) 100%);
}
.service-card-body {
  display: flex;
  flex-direction: column;
}
.services-page-card-body {
  flex: 1;
  padding: 28px 24px 24px;
}
.services-page-card-body .service-features {
  margin-bottom: 24px;
}
.services-page-card-body .btn {
  margin-top: auto;
  justify-content: center;
}
.service-icon svg,
.why-icon svg,
.contact-icon svg,
.social-btn svg,
.float-action svg,
.toast svg {
  width: 22px; height: 22px;
}
.service-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* â”€â”€â”€ WHY US â”€â”€â”€ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-top: 56px;
}
.why-visual {
  background: white; border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.process-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: white; flex-shrink: 0;
}
.step-info h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 4px; }
.step-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-point h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.services-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

/* â”€â”€â”€ PRICING â”€â”€â”€ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.pricing-card {
  background: white; border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pricing-card.popular {
  background: var(--blue); color: white; border-color: var(--blue);
  transform: scale(1.04);
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}
.pricing-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 8px;
}
.pricing-card.popular h3 { color: white; }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.popular .pricing-desc { color: rgba(255,255,255,0.7); }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 32px; }
.currency { font-size: 20px; font-weight: 700; color: var(--orange); }
.price-num { font-family: var(--font-head); font-size: 44px; font-weight: 800; line-height: 1; }
.pricing-card.popular .price-num { color: white; }
.price-period { font-size: 13px; color: var(--text-muted); }
.pricing-card.popular .price-period { color: rgba(255,255,255,0.7); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.pricing-features li .check {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 11px; font-weight: 700;
}
.pricing-card .check { background: var(--green-light); color: var(--green); }
.pricing-card.popular .check { background: rgba(255,255,255,0.2); color: white; }
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,0.9); }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 56px;
}
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: #f59e0b; font-size: 16px; }
.star-fill { color: #f59e0b; fill: currentColor; width: 16px; height: 16px; }
.testimonial-text {
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: white;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-title { font-size: 12px; color: var(--text-muted); }

/* â”€â”€â”€ PORTFOLIO â”€â”€â”€ */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s; cursor: pointer;
  background: white; border: 1px solid var(--border);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-thumb svg { width: 56px; height: 56px; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(0,83,159,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  color: white; font-weight: 700; font-size: 15px; font-family: var(--font-head);
}
.portfolio-info { padding: 20px; }
.portfolio-category {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 6px;
}
.portfolio-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.portfolio-info p { font-size: 13px; color: var(--text-muted); }

/* â”€â”€â”€ CONTACT / FORM â”€â”€â”€ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; margin-top: 56px;
}
.contact-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-muted); }

.form-card {
  background: white; border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px;
  color: var(--text); background: var(--bg); transition: all 0.2s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(0,83,159,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 40px;
}
.form-success .check-big { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; color: var(--green); }

/* â”€â”€â”€ ABOUT â”€â”€â”€ */
.about-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #003d7a 100%);
  padding: 140px 0 80px; color: white;
}
.about-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; }
.about-hero p { font-size: 18px; opacity: 0.85; line-height: 1.7; max-width: 600px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 28px; color: white;
}
.team-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* â”€â”€â”€ BLOG â”€â”€â”€ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 56px;
}
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-thumb svg { width: 48px; height: 48px; }
.blog-content { padding: 24px; }
.blog-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.blog-cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 100px;
}
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  margin-bottom: 8px; line-height: 1.4;
}
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card .read-more { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.blog-card .read-more:hover { color: var(--orange); }

/* â”€â”€â”€ CTA SECTION â”€â”€â”€ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #003d7a 50%, #001f4d 100%);
  padding: 96px 0; color: white; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 300px; height: 300px;
  background: rgba(255,88,6,0.15); border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(39,155,72,0.1); border-radius: 50%;
}
.cta-section h2 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-section p { font-size: 17px; opacity: 0.85; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: white; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: #f0f6ff; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.footer {
  background: #0d1117; color: white; padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 20px 0 24px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 15px; cursor: pointer; transition: all 0.2s;
  border: none; color: white;
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.social-btn:nth-child(1):hover { background: #e4405f; }
.social-btn:nth-child(2):hover { background: #ff0033; }
.social-btn:nth-child(3):hover { background: #25D366; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  margin-bottom: 20px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.newsletter h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; }
.newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.newsletter-input { display: flex; gap: 0; }
.newsletter-input input {
  flex: 1; padding: 12px 16px; border: none; background: rgba(255,255,255,0.08);
  color: white; font-family: var(--font-body); font-size: 14px; outline: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input button {
  background: var(--orange); color: white; border: none; cursor: pointer;
  padding: 12px 18px; font-weight: 700; font-size: 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; transition: background 0.2s;
}
.newsletter-input button:hover { background: #e04800; }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--orange); }

/* â”€â”€â”€ PAGE HERO (inner pages) â”€â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #003d7a 100%);
  padding: 96px 0 34px; color: white;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; margin-bottom: 10px;
}
.page-hero p { font-size: 16px; opacity: 0.85; line-height: 1.65; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; font-size: 13px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: white; }

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq-list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow);
}
.faq-q {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 15px; gap: 16px;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; transition: all 0.3s; font-weight: 700;
}
.faq-item.open .faq-toggle { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s ease; color: var(--text-muted); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* â”€â”€â”€ NUMBERS SECTION â”€â”€â”€ */
.numbers-section { background: var(--blue); color: white; padding: 80px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.number-item .num {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.number-item .suffix { font-size: 28px; font-weight: 800; color: var(--orange); }
.number-item .label { font-size: 14px; opacity: 0.8; margin-top: 8px; }

/* â”€â”€â”€ TOAST â”€â”€â”€ */
.toast {
  position: fixed; bottom: 22px; right: 88px; z-index: 9999;
  background: var(--green); color: white; padding: 16px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; box-shadow: var(--shadow-lg);
  transform: translateY(100px); opacity: 0; transition: all 0.4s ease;
  display: flex; align-items: center; gap: 10px;
  max-width: min(320px, calc(100vw - 120px));
}
.toast.show { transform: translateY(0); opacity: 1; }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-panel { padding: 32px 30px 34px; }
  .services-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-benefit-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 16px; }
  .nav-dropdown-menu { left: auto; right: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 92px 0 64px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: scale(1); }
  .hero-panel { padding: 28px 18px 26px; border-radius: 24px; }
  .hero-typing-line { min-height: 58px; flex-direction: column; gap: 2px; }
  .hero-lead { font-size: 16px; }
  .hero-title { white-space: nowrap; letter-spacing: 0.01em; font-size: 32px; }
  .hero-subtitle { font-size: 18px; white-space: nowrap; }
  .page-hero { padding: 88px 0 28px; }
  .services-page-grid { grid-template-columns: 1fr; }
  .services-page-media { height: 210px; }
  .logo-icon { width: 42px; height: 42px; }
  .logo-text { font-size: 16px; gap: 4px; }
  .clients-logos { gap: 20px; }
  .client-logo { font-size: 14px; }
  .contact-grid, .why-grid, .services-benefit-grid, .team-grid, .portfolio-grid, .testimonials-grid, .blog-grid { gap: 18px; }
  .portfolio-thumb { height: 180px; }
  .footer-grid,
  .footer-brand,
  .footer-col,
  .footer-bottom {
    text-align: center;
  }
  .social-links,
  .footer-bottom-links {
    justify-content: center;
  }
  .newsletter-input {
    flex-direction: column;
  }
  .newsletter-input input,
  .newsletter-input button {
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .service-media { height: 156px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 15px; white-space: nowrap; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
  .page-hero h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .logo-text { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { gap: 18px; }
  .clients-label { font-size: 12px; }
  .mobile-menu { padding: 18px; }
  .footer {
    padding-top: 56px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal-left {
  transform: translate3d(-42px, 0, 0);
}
.reveal-right {
  transform: translate3d(42px, 0, 0);
}
.reveal-zoom {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.fade-in {
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }
/* Floating contact actions */
.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
  align-items: flex-end;
}
.float-action {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  font-size: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-action:hover,
.float-action:focus-visible {
  transform: translateX(-6px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,83,159,0.2);
}
.float-action svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.float-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(20, 25, 43, 0.92);
  color: #fff;
  box-shadow: 0 18px 36px rgba(12,18,35,0.22);
  backdrop-filter: blur(8px);
  opacity: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.float-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: rgba(20, 25, 43, 0.92);
  transform: translateY(-50%) rotate(45deg);
}
.float-action:hover .float-label,
.float-action:focus-visible .float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.float-community { background: linear-gradient(135deg, #0f8f5f, #25d366); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--blue); }
.live-agent-popup {
  position: fixed;
  right: 86px;
  bottom: 122px;
  width: min(296px, calc(100vw - 118px));
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 1002;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.live-agent-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.live-agent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f3f6fb;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.live-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.live-agent-badge svg { width: 16px; height: 16px; }
.live-agent-popup h3 {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.live-agent-popup p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.live-agent-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.live-agent-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 14px;
  font-size: 14px;
}
.wa-chooser-open {
  overflow: hidden;
}
.wa-chooser {
  position: fixed;
  inset: 0;
  z-index: 1005;
}
.wa-chooser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 31, 0.56);
  backdrop-filter: blur(4px);
}
.wa-chooser-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(6, 18, 38, 0.24);
  border: 1px solid rgba(0, 83, 159, 0.08);
}
.wa-chooser-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.wa-chooser-card h3 {
  margin: 14px 0 8px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.2;
}
.wa-chooser-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.wa-chooser-actions {
  display: grid;
  gap: 10px;
}
.wa-chooser-actions .btn {
  width: 100%;
  justify-content: center;
}
.wa-chooser-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #eff4fb;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
@media (min-width: 992px) {
  .live-agent-popup {
    left: 12px;
    right: auto;
    top: auto;
    bottom: 12px;
    width: 296px;
  }
  .toast {
    right: 84px;
    left: auto;
    top: auto;
    bottom: 22px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .floating-contact { right: 12px; bottom: 12px; }
  .float-action { width: 48px; height: 48px; font-size: 19px; }
  .live-agent-popup { right: 68px; bottom: 112px; width: min(270px, calc(100vw - 96px)); padding: 16px; }
  .live-agent-actions { flex-direction: row; }
  .live-agent-actions .btn { padding: 11px 10px; font-size: 13px; }
  .wa-chooser-card { right: 16px; left: 16px; bottom: 16px; width: auto; padding: 20px; }
  .toast { right: 70px; bottom: 18px; max-width: min(250px, calc(100vw - 92px)); padding: 14px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .live-agent-popup {
    right: 60px;
    bottom: 102px;
    width: min(248px, calc(100vw - 84px));
    padding: 14px;
  }
  .live-agent-popup h3 { font-size: 17px; }
  .live-agent-popup p { font-size: 12px; margin-bottom: 12px; }
  .live-agent-badge { font-size: 10px; }
  .wa-chooser-card h3 { font-size: 20px; }
  .wa-chooser-card p { font-size: 13px; }
  .toast {
    right: 62px;
    bottom: 14px;
    max-width: min(230px, calc(100vw - 82px));
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on-scroll,
  .fade-in {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .hero-card-main,
  .floating-badge-1,
  .floating-badge-2,
  .hero-eyebrow .dot,
  .hero-typing-word::after {
    animation: none;
  }
}
