/* ============================================================
   TechTemple — Main Stylesheet
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --navy:        #0B1F3A;
  --navy-light:  #0D2744;
  --navy-deep:   #071528;

  /* Brand teal (from logo) */
  --teal:        #00C4D4;
  --teal-hover:  #00A8B8;
  --teal-dark:   #007A87;
  --teal-light:  rgba(0,196,212,.10);
  --teal-glow:   rgba(0,196,212,.25);
  --teal-glow-lg: rgba(0,196,212,.18);

  /* Accent */
  --orange:      #F97316;
  --orange-dark: #C2410C;
  --green:       #10B981;
  --purple:      #7C3AED;
  --red:         #EF4444;

  /* Aliases (so existing code keeps working) */
  --blue:        var(--teal);
  --blue-hover:  var(--teal-hover);
  --blue-light:  var(--teal-light);

  --text:        #1E293B;
  --text-muted:  #64748B;
  --border:      #E2E8F0;
  --bg:          #FFFFFF;
  --bg-alt:      #F8FAFC;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.16), 0 4px 16px rgba(0,0,0,.08);
  --shadow-teal:  0 8px 32px rgba(0,196,212,.20), 0 2px 8px rgba(0,196,212,.10);

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── Utilities ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.section { padding: 104px 0; }
.section--gray { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { background: var(--bg-alt); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ─── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ─── Section Header ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(0,196,212,.08);
  border: 1px solid rgba(0,196,212,.18);
  border-radius: 100px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.section-header h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em; }
.section-header p  { font-size: 17px; color: var(--text-muted); line-height: 1.75; }

/* ─── Navigation ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7,21,40,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,196,212,.12);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

/* Logo using real image */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.05);
}
/* Fallback text logo */
.nav-logo--text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.02em;
}
.nav-logo__icon {
  width: 36px; height: 36px;
  background: var(--teal);
  color: #071528;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; letter-spacing: -.5px;
}
.nav-logo--light { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
  border-radius: 2px;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--teal); }
.nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .15s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal); }

/* ─── Login Dropdown ─────────────────────────────────────── */
.login-dropdown {
  position: relative;
}
.login-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(0,196,212,.12);
  border: 1px solid rgba(0,196,212,.3);
  border-radius: var(--radius-sm);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.login-dropdown__toggle:hover {
  background: rgba(0,196,212,.2);
  border-color: var(--teal);
  box-shadow: 0 0 16px var(--teal-glow);
}
.login-dropdown__toggle svg { transition: transform .2s; }
.login-dropdown.open .login-dropdown__toggle svg { transform: rotate(180deg); }

.login-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: #0D2744;
  border: 1px solid rgba(0,196,212,.2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,196,212,.05);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .2s;
  z-index: 200;
}
.login-dropdown.open .login-dropdown__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.login-dropdown__panel h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.login-dropdown__panel p {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.login-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.login-field label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.login-field input {
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.login-field input::placeholder { color: rgba(255,255,255,.25); }
.login-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.login-submit {
  width: 100%;
  padding: 11px;
  background: var(--teal);
  color: #071528;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
  margin-top: 4px;
}
.login-submit:hover { background: var(--teal-hover); box-shadow: 0 4px 16px var(--teal-glow); }
.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.login-links a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.login-links a:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .2s;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 0;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,196,212,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,196,212,.05) 0%, transparent 60%),
    linear-gradient(180deg, #071528 0%, #0B1F3A 100%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; width: 100%; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-content .badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.trust-item svg { opacity: .8; }

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-graphic {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
}
.hero-graphic__inner {
  width: 100%; height: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-graphic__inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.3) 0%, transparent 70%);
  top: -50px; right: -50px;
}
.hero-tech-circle { position: absolute; }
.hero-tech-circle .tech-svg { width: 180px; height: 180px; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-tech-circle .tech-svg circle:first-child { animation: spin-slow 20s linear infinite; transform-origin: 100px 100px; }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 { top: 32px; left: -10px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 64px; right: -10px; animation-delay: 1.5s; }
.floating-card.card-3 { bottom: 20px; left: 20px; animation-delay: 0.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon--green  { background: rgba(16,185,129,.2); color: #34D399; }
.fc-icon--blue   { background: rgba(37,99,235,.2);  color: #60A5FA; }
.fc-icon--orange { background: rgba(249,115,22,.2); color: #FB923C; }
.fc-title { font-weight: 600; line-height: 1.2; }
.fc-sub   { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ─── Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
/* Top accent bar (hidden by default, revealed on hover) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00C4D4 0%, #00E5F5 50%, #00C4D4 100%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
/* Subtle inner glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,196,212,.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,196,212,.20);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-card__icon {
  width: 64px; height: 64px;
  background: color-mix(in srgb, var(--icon-color, var(--teal)) 10%, transparent);
  color: var(--icon-color, var(--teal));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: box-shadow .2s ease, background .2s ease;
  box-shadow: 0 0 0 0 transparent;
}
.service-card:hover .service-card__icon {
  box-shadow: 0 0 20px color-mix(in srgb, var(--icon-color, var(--teal)) 30%, transparent);
  background: color-mix(in srgb, var(--icon-color, var(--teal)) 15%, transparent);
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s ease, color .2s ease;
}
.service-card__link .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card:hover .service-card__link .arrow { transform: translateX(4px); }

/* ─── Features / Why ────────────────────────────────────── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.features-content .section-label { display: inline-flex; margin-bottom: 20px; }
.features-content h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.features-intro { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.75; }
.features-list { display: flex; flex-direction: column; gap: 32px; margin-bottom: 44px; }
.features-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.features-list li:hover {
  background: rgba(0,196,212,.04);
  border-color: rgba(0,196,212,.12);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,196,212,.10);
  color: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: box-shadow .2s ease;
  box-shadow: 0 0 0 0 transparent;
}
.features-list li:hover .feature-icon {
  box-shadow: 0 0 16px rgba(0,196,212,.30);
  background: rgba(0,196,212,.16);
}
.features-list strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: -.01em; }
.features-list p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* Stats Grid */
.features-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00C4D4 0%, #00E5F5 100%);
  opacity: 0;
  transition: opacity .2s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card:hover::before { opacity: 1; }
.stat-card--accent {
  background: linear-gradient(135deg, #00C4D4 0%, #0097a7 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,196,212,.30);
}
.stat-card--accent::before { opacity: 1; background: rgba(255,255,255,.3); }
.stat-card--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: rgba(0,196,212,.15);
  color: #fff;
}
.stat-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  display: inline;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #00C4D4 0%, #00E5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card--accent .stat-number {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.stat-card--dark .stat-number {
  background: linear-gradient(135deg, #00C4D4 0%, #00E5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus, .stat-percent {
  display: inline;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #00C4D4 0%, #00E5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card--accent .stat-plus,
.stat-card--accent .stat-percent {
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,.85);
}
.stat-card--dark .stat-plus,
.stat-card--dark .stat-percent {
  background: linear-gradient(135deg, #00C4D4 0%, #00E5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.stat-card--accent .stat-label { color: rgba(255,255,255,.85); }
.stat-card--dark .stat-label { color: rgba(255,255,255,.55); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-deep);
  border: 1px solid rgba(0,196,212,.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 96px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,196,212,.12);
  pointer-events: none;
  select: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,196,212,.4) 50%, transparent);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(0,196,212,.20);
  border-color: rgba(0,196,212,.25);
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: flex;
  gap: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: normal;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--navy-deep), 0 0 0 4px rgba(0,196,212,.50);
  letter-spacing: 0;
}
.testimonial-name  { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 2px; }
.testimonial-role  { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background:
    linear-gradient(135deg, #00818e 0%, #005d6e 40%, #071528 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* Noise/grain texture overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
/* Radial glow top-left */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,196,212,.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner__content { max-width: 560px; }
.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.cta-banner p  { font-size: 18px; color: rgba(255,255,255,.80); line-height: 1.6; }
.cta-banner__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
/* Override white button for more contrast on this background */
.cta-banner .btn-white {
  background: #fff;
  color: #071528;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.cta-banner .btn-white:hover { background: #e0f9fb; box-shadow: 0 8px 32px rgba(0,196,212,.3); transform: translateY(-2px); }
.cta-banner .btn-outline-white {
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.cta-banner .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ─── Process Steps ─────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid var(--bg-alt);
}
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--text-muted); }

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; margin-bottom: 16px; letter-spacing: -.02em; }
.page-hero p  { font-size: 18px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ─── Service Detail Cards ──────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail__visual { order: -1; }
.service-detail__visual {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.service-icon-large {
  width: 100px; height: 100px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.service-detail h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.service-detail p  { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.feature-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.feature-checklist li::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2310B981' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ─── Team Grid ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 900; color: rgba(255,255,255,.25);
}
.team-card__body { padding: 20px; }
.team-card__name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-card__bio  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Contact ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.contact-info p  { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item__label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-item__value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-item__value a { color: var(--navy); }
.contact-item__value a:hover { color: var(--blue); }

/* Contact Form */
.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: 14px 18px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-sm);
  color: #065F46;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.form-success.show { display: block; }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding: 88px 0 40px;
  position: relative;
}
/* Subtle top gradient fade — dark navy since footer is always dark */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(7,21,40,.9) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 18px 0 22px; color: rgba(255,255,255,.50); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.60);
  transition: color .2s ease;
}
.footer-contact a:hover { color: var(--teal); }
.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  transition: color .2s ease, padding-left .2s ease;
  display: block;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-newsletter h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,.50); margin-bottom: 18px; line-height: 1.65; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.30); }
.newsletter-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,196,212,.15);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.30); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.50);
  transition: all .2s ease;
}
.footer-social a:hover {
  background: rgba(0,196,212,.15);
  border-color: rgba(0,196,212,.40);
  color: var(--teal);
  box-shadow: 0 0 12px rgba(0,196,212,.20);
  transform: translateY(-2px);
}

/* ─── About Page ────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story__visual {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.about-stat:first-child { grid-column: span 2; background: var(--navy); color: #fff; }
.about-stat .num { font-size: 36px; font-weight: 900; color: var(--orange); display: block; }
.about-stat:first-child .num { color: #fff; }
.about-stat .lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.about-stat:first-child .lbl { color: rgba(255,255,255,.6); }

/* ─── Values ────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.value-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-stats { max-width: 480px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail__visual { order: unset; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 64px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-links.open + .nav-actions {
    display: none;
  }
  .features-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-story__visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .features-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ─── Premium Polish — Global Micro-interactions ─────────── */

/* Smooth transitions on all buttons */
.btn, .btn-teal, .btn-ghost-teal {
  transition: all .2s ease;
}

/* Section label on navy backgrounds */
.section--navy .section-label {
  background: rgba(0,196,212,.12);
  border-color: rgba(0,196,212,.25);
  color: var(--teal);
}
.section--navy .section-header h2 { color: #fff; }
.section--navy .section-header p  { color: rgba(255,255,255,.65); }

/* Teal gradient text utility */
.text-gradient-teal {
  background: linear-gradient(135deg, #00C4D4 0%, #00E5F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service card on light (gray) background — slightly elevated look */
.section--gray .service-card {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.section--gray .service-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Features list — no padding on first/last items so they flush with edges */
.features-list { padding: 0; }

/* Better btn-primary appearance */
.btn-primary {
  background: var(--teal);
  color: #071528;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

/* Stat card counter value wrapper for proper alignment */
.stat-card__value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

/* CTA banner bottom of page — ensure no white bleed */
.cta-banner + footer.footer { margin-top: 0; }

/* Testimonial section background override — keep it deep navy, not the default light gray */
.section--navy.section { background: var(--navy-deep); }

/* Responsive tweaks for new padding */
@media (max-width: 1024px) {
  .cta-banner { padding: 80px 0; }
  .features-layout { gap: 56px; }
}
@media (max-width: 768px) {
  .cta-banner { padding: 64px 0; }
  .testimonials-grid { gap: 16px; }
  .services-grid { gap: 16px; }
  .footer { padding: 64px 0 32px; }
  .footer-grid { gap: 40px; }
  .section-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 44px; }
  .service-card { padding: 28px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .cta-banner h2 { font-size: 26px; }
}

/* ─── Chatbot ───────────────────────────────────────────── */
.tt-chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.tt-chatbot__launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: #14d7e5;
  color: #071528;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.tt-chatbot__launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #071528;
  box-shadow: 0 0 0 6px rgba(7,21,40,.12);
}

.tt-chatbot__panel {
  width: min(360px, calc(100vw - 28px));
  max-height: min(70vh, 640px);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0c1c31;
  box-shadow: 0 20px 56px rgba(0,0,0,.34);
}

.tt-chatbot__panel[hidden] {
  display: none !important;
}

.tt-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tt-chatbot__eyebrow {
  display: none;
}

.tt-chatbot__header h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.tt-chatbot__header-actions {
  display: flex;
  gap: 6px;
}

.tt-chatbot__ghost {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  line-height: 1;
}

.tt-chatbot__ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.tt-chatbot__quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 16px 0;
}

.tt-chatbot__quick-actions button {
  flex: 1 1 calc(50% - 4px);
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
}

.tt-chatbot__quick-actions button:hover,
.tt-chatbot__quick-actions button:focus-visible {
  border-color: rgba(20,215,229,.35);
  background: rgba(20,215,229,.14);
  color: #fff;
}

.tt-chatbot__messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  overflow-y: auto;
}

.tt-chatbot__message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.tt-chatbot__message--assistant {
  align-self: flex-start;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-top-left-radius: 8px;
}

.tt-chatbot__message--user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(0,196,212,.94), rgba(74,236,249,.84));
  color: #041320;
  border-top-right-radius: 8px;
  font-weight: 600;
}

.tt-chatbot__form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0 16px 12px;
}

.tt-chatbot__input {
  width: 100%;
  min-height: 44px;
  max-height: 120px;
  resize: none;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
}

.tt-chatbot__input::placeholder {
  color: rgba(255,255,255,.45);
}

.tt-chatbot__input:focus {
  outline: none;
  border-color: rgba(0,196,212,.52);
  box-shadow: 0 0 0 4px rgba(0,196,212,.12);
}

.tt-chatbot__send {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: #14d7e5;
  color: #071528;
  font-weight: 800;
}

.tt-chatbot__send:disabled,
.tt-chatbot__quick-actions button:disabled {
  opacity: .55;
  cursor: wait;
}

.tt-chatbot__hint {
  padding: 0 16px 14px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .tt-chatbot {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: stretch;
  }

  .tt-chatbot__launcher {
    align-self: stretch;
    justify-content: center;
  }

  .tt-chatbot__panel {
    width: 100%;
    max-height: min(72svh, 560px);
    border-radius: 18px;
  }

  .tt-chatbot__quick-actions {
    grid-template-columns: 1fr;
  }

  .tt-chatbot__quick-actions button {
    flex-basis: 100%;
  }

  .tt-chatbot__message {
    max-width: 94%;
  }

  .tt-chatbot__form {
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .tt-chatbot {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 0;
  }

  .tt-chatbot__launcher {
    margin: 0 12px 12px;
  }

  .tt-chatbot__panel {
    width: 100%;
    max-height: 78svh;
    border-radius: 18px 18px 0 0;
    border-bottom: 0;
  }
}

/* ─── Client Logo Cards ─────────────────────────────────── */
.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
  min-width: 140px;
  min-height: 80px;
}
.client-logo-card:hover {
  border-color: rgba(0,196,212,.4);
  box-shadow: 0 4px 20px rgba(0,196,212,.12);
  transform: translateY(-2px);
}
.client-logo-card img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all .25s ease;
}
.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
