@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #0B3C5D;
  --secondary: #3B82F6;
  --accent: #6D5DF6;
  --text: #1F2933;
  --text-muted: #6B7280;
  --bg: #F9FAFB;
  --card: #FFFFFF;
  --primary-light: rgba(11, 60, 93, 0.08);
  --secondary-light: rgba(59, 130, 246, 0.1);
  --accent-light: rgba(109, 93, 246, 0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.02);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 34px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu li { list-style: none; }
.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--secondary); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
  padding: 9px 20px !important;
  background: var(--secondary) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-size: 0.85rem !important;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 18px rgba(59, 130, 246, 0.4); }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  transition: background 0.25s ease;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active { background: rgba(0,0,0,0.04); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }



@media (max-width: 768px) {
  .navbar { padding: 10px 0; }
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 8px 0;
    gap: 0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
  }
  .nav-menu.active { display: flex; }

  .nav-menu li { width: 100%; }

  .nav-menu a {
    display: block;
    padding: 12px 20px !important;
    font-size: 0.92rem !important;
    color: var(--text) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.2s ease;
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover,
  .nav-menu a:active { background: rgba(59, 130, 246, 0.06) !important; }
  .nav-menu a.active { color: var(--secondary) !important; }

  .nav-menu li:last-child { padding: 8px 12px 12px; }
  .nav-menu .nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-size: 0.88rem !important;
    color: #fff !important;
    background: var(--secondary) !important;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.25) !important;
  }
}

/* ===== SECTIONS ===== */
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--secondary); }
.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0e4f7a 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(27, 197, 189, 0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--secondary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { stroke: var(--secondary); width: 20px; height: 20px; }
.info-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.info-item p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.faq-header:hover { background: var(--bg); }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo img { height: 36px; margin-bottom: 14px; filter: brightness(10); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--secondary); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); }
.footer-social a:hover { background: var(--secondary); }
.footer-social a:hover svg { stroke: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--secondary); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SECTION TRANSITIONS ===== */
section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(59,130,246,0.5); }
.back-to-top svg { width: 20px; height: 20px; stroke: #fff; }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== HERO (Tailwind-driven, minimal overrides) ===== */

/* ===== LEGAL PAGE ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary-light);
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.93rem;
  line-height: 1.75;
}
.legal-content ul {
  margin-bottom: 14px;
  padding-left: 20px;
}
.legal-content ul li {
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 6px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cookie-banner-text {
  flex: 1;
}
.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}
.cookie-banner-text a:hover {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.cookie-btn-accept {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}
.cookie-btn-accept:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}
.cookie-btn-refuse {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid #E5E7EB;
}
.cookie-btn-refuse:hover {
  background: #F3F4F6;
  color: var(--text);
}
.cookie-btn-customize {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}
.cookie-btn-customize:hover {
  background: var(--secondary-light);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 14px;
  }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn { width: 100%; text-align: center; padding: 11px 20px; }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-modal-overlay.visible .cookie-modal {
  transform: translateY(0) scale(1);
}
.cookie-modal-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-header h3 i {
  color: var(--secondary);
  font-size: 1.3rem;
}
.cookie-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.1rem;
}
.cookie-modal-close:hover {
  background: #F3F4F6;
  color: var(--text);
}
.cookie-modal-body {
  padding: 20px 24px;
}
.cookie-modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-category {
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.cookie-category:hover {
  border-color: #D1D5DB;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-category-info {
  flex: 1;
}
.cookie-category-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #D1D5DB;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--secondary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 2px 8px;
  border-radius: 999px;
  background: #DBEAFE;
  color: var(--secondary);
  margin-left: 6px;
  vertical-align: middle;
}
.cookie-modal-footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 10px;
}
.cookie-modal-footer .cookie-btn {
  flex: 1;
  text-align: center;
  padding: 11px 20px;
}

@media (max-width: 480px) {
  .cookie-modal {
    border-radius: var(--radius-lg);
    max-height: 90vh;
  }
  .cookie-modal-header { padding: 20px 20px 0; }
  .cookie-modal-body { padding: 16px 20px; }
  .cookie-modal-footer { padding: 0 20px 20px; flex-direction: column; }
}

/* ===== TEAM SCROLL ===== */
.team-scroll-container::-webkit-scrollbar { height: 6px; }
.team-scroll-container::-webkit-scrollbar-track { background: transparent; margin: 0 max(24px, calc((100vw - 1200px) / 2 + 24px)); }
.team-scroll-container::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 999px; }
.team-scroll-container::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }
.team-scroll-container { scrollbar-width: thin; scrollbar-color: #D1D5DB transparent; }
.team-scroll-container.dragging { cursor: grabbing; user-select: none; }
.team-scroll-container.dragging a { pointer-events: none; }

/* ===== TESTIMONIAL MARQUEE ===== */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
}
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee::before { left: 0; background: linear-gradient(90deg, #f8f9fb, transparent); }
.testimonial-marquee::after  { right: 0; background: linear-gradient(270deg, #ffffff, transparent); }

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }

@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 300px;
  padding: 20px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: rgba(59,130,246,0.25);
}

@media (max-width: 640px) {
  .testimonial-card { width: 260px; padding: 16px 20px; }
  .testimonial-track { gap: 14px; }
}

/* ===== PAGE TRANSITIONS ===== */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: pageIn 0.5s ease-out both;
}
