:root {
  --bg: #f5f4ef;
  --dark: #1a1a2e;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --accent3: #06d6a0;
  --text: #1a1a2e;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(124,58,237,0.12);
  --pill: #ede9fe;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* â”€â”€â”€ ABSTRACT BG SHAPES â”€â”€â”€ */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* â”€â”€â”€ NAV (top bar only â€” avoids hitting <nav class="drawer-nav"> in the drawer) â”€â”€â”€ */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,244,239,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg,#7c3aed,#a855f7,#06d6a0);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='12' cy='12' r='3' fill='white' opacity='0.5'/%3E%3Ccircle cx='20' cy='8' r='2' fill='white' opacity='0.6'/%3E%3Ccircle cx='28' cy='12' r='2.5' fill='white' opacity='0.4'/%3E%3Ccircle cx='28' cy='20' r='2' fill='white' opacity='0.7'/%3E%3Ccircle cx='20' cy='25' r='3' fill='white' opacity='0.5'/%3E%3Ccircle cx='12' cy='20' r='2' fill='white' opacity='0.6'/%3E%3C/svg%3E") center/cover;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--dark);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  z-index: 1100;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€â”€ SIDE DRAWER NAV (LTR slide-in, enterprise rail) â”€â”€â”€ */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(15,17,25,0.45); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .32s ease;
}
.drawer-overlay.open { display: block; }
.drawer-overlay.visible { opacity: 1; }

.side-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; right: auto; z-index: 1060;
  width: min(300px, 88vw);
  max-width: 100%;
  height: 100%;
  max-height: 100dvh;
  background: #fcfcfd;
  border-right: 1px solid rgba(26,26,46,0.08);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  box-shadow: 12px 0 48px rgba(15,17,25,0.12);
  will-change: transform;
}
.side-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  min-height: 68px;
  border-bottom: 1px solid rgba(26,26,46,0.07);
  background: #fff;
}
.drawer-close {
  width: 38px; height: 38px; border-radius: 10px;
  background: #fff; border: 1px solid rgba(26,26,46,0.1); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; color: var(--muted);
  transition: background .18s, border-color .18s, color .18s;
}
.drawer-close:hover {
  background: var(--pill); border-color: rgba(124,58,237,0.25); color: var(--accent);
}

.drawer-nav {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-nav a {
  text-decoration: none; color: var(--dark);
  font-weight: 500; font-size: 15px; letter-spacing: 0.01em;
  padding: 0.75rem 0.85rem 0.75rem 0.75rem;
  margin-left: 2px;
  border-radius: 0 10px 10px 0;
  display: flex; align-items: center; gap: 0.75rem;
  transition: background .18s, color .18s, box-shadow .18s;
  border: none;
  border-left: 3px solid transparent;
  box-shadow: none;
}
.drawer-nav a:hover {
  background: rgba(124,58,237,0.06);
  color: var(--accent);
  border-left-color: var(--accent);
}
.drawer-nav a .nav-icon {
  font-size: 17px; width: 26px; text-align: center;
  opacity: 0.92;
}
.drawer-nav-divider {
  height: 1px; background: rgba(26,26,46,0.08);
  margin: 0.65rem 0 0.65rem 0.5rem;
}

.drawer-cta {
  flex-shrink: 0;
  padding: 1.25rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(26,26,46,0.07);
  background: #fff;
}
.drawer-cta-btn {
  display: block; width: 100%; text-align: center;
  background: var(--dark);
  color: #fff !important; padding: 0.875rem 1rem; border-radius: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(26,26,46,0.12);
}
.drawer-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.28);
}
.drawer-contact-info { margin-top: 1rem; }
.drawer-contact-info p { font-size: 11px; color: var(--muted); text-align: center; margin-top: .4rem; letter-spacing: 0.02em; }

/* â”€â”€â”€ MODAL â”€â”€â”€ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,20,0.6); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; transition: opacity .3s ease;
}
.modal-overlay.open { display: flex; }
.modal-overlay.visible { opacity: 1; }
.modal-box {
  background: #fff; border-radius: 24px; width: 100%; max-width: 540px;
  max-height: min(90vh, 720px);
  overflow: hidden;
  padding: 0;
  transform: scale(.92) translateY(20px);
  transition: transform .3s ease;
  position: relative;
  box-shadow: 0 24px 80px rgba(15, 17, 25, 0.14);
}
.modal-overlay.visible .modal-box { transform: scale(1) translateY(0); }
.modal-scroll {
  max-height: min(90vh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.5rem 2.25rem 2.5rem 2.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.45) rgba(124, 58, 237, 0.06);
}
.modal-scroll::-webkit-scrollbar {
  width: 8px;
}
.modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin: 20px 0 24px 0;
}
.modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.modal-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.55);
  background-clip: padding-box;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.15rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pill); border: none; cursor: pointer;
  font-size: 18px; color: var(--accent); display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 3;
}
.modal-close:hover { background: var(--accent); color: #fff; }
.modal-tag { display: inline-block; background: var(--pill); color: var(--accent); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .8rem; }
.modal-title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: .5rem; }
.modal-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

.hero-bg-blob1 { width: 600px; height: 600px; background: #a855f7; top: -100px; right: -100px; }
.hero-bg-blob2 { width: 400px; height: 400px; background: #06d6a0; bottom: -80px; left: -80px; }
.hero-bg-blob3 { width: 300px; height: 300px; background: #7c3aed; top: 200px; left: 30%; }

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1280px; margin: 0 auto; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pill); border: 1px solid rgba(124,58,237,0.2);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; color: var(--accent); font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: '\2726'; }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero p {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  background: var(--dark); color: #fff;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--dark);
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(26,26,46,0.2);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero-trust {
  display: flex; align-items: center; gap: 12px; margin-top: 2rem;
  animation: fadeUp .6s .4s ease both;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #7c3aed, #06d6a0);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff; font-weight: 700;
  margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--muted); }
.trust-text strong { color: var(--dark); }

/* HERO RIGHT â€“ stats cards */
.hero-right {
  position: relative;
  animation: fadeUp .6s .2s ease both;
}
.hero-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.hero-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform .2s;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card .card-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: .5rem; }
.hero-card .card-val {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--dark);
}
.hero-card .card-val span { font-size: 1rem; color: var(--accent); }
.hero-card .card-sub { font-size: 12px; color: var(--muted); margin-top: .4rem; }
.hero-card .card-bar {
  height: 6px; border-radius: 3px;
  background: #e5e7eb; margin-top: .8rem; overflow: hidden;
}
.hero-card .card-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--accent),var(--accent3)); width: 72%; }
.hero-card-wide { grid-column: 1/-1; }
.card-icon { font-size: 2rem; margin-bottom: .5rem; }
.card-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-purple { background: var(--pill); color: var(--accent); }

/* â”€â”€â”€ SECTION GENERIC â”€â”€â”€ */
section { padding: 90px 5%; position: relative; overflow: hidden; }
.section-label {
  display: inline-block; background: var(--pill);
  color: var(--accent); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 1rem;
  letter-spacing: .5px; text-transform: uppercase;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.max-w { max-width: 1280px; margin: 0 auto; }

/* â”€â”€â”€ STATS STRIP â”€â”€â”€ */
.stats-strip {
  background: var(--dark);
  padding: 40px 5%;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item .num {
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-item .num span { color: var(--accent3); }
.stat-item .lbl { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: .4rem; }

/* â”€â”€â”€ SERVICES â”€â”€â”€ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.04), transparent);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(124,58,237,0.14); transform: translateY(-5px); border-color: rgba(124,58,237,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.2rem;
}
.icon-purple { background: #ede9fe; }
.icon-green  { background: #d1fae5; }
.icon-blue   { background: #dbeafe; }
.icon-orange { background: #fff3e0; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 1.2rem;
  font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* â”€â”€â”€ APPROACH â”€â”€â”€ */
.approach-section { background: #fff; }
.approach-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.approach-visual {
  position: relative;
}
.approach-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative; overflow: hidden;
}
.approach-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(124,58,237,0.2), transparent 60%);
}
.approach-floating-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--card); border-radius: 16px; padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
}
.approach-floating-card .label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.approach-floating-card .value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); }
.approach-floating-card .sub { font-size: 12px; color: var(--accent); font-weight: 600; }

.accordion-item {
  border: 1px solid var(--border); border-radius: 14px; margin-bottom: .8rem;
  overflow: hidden; transition: border-color .2s;
}
.accordion-item.active { border-color: rgba(124,58,237,0.4); }
.accordion-head {
  padding: 1.1rem 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 15px;
  user-select: none;
}
.accordion-body { display: none; padding: 0 1.4rem 1.1rem; color: var(--muted); font-size: 14px; line-height: 1.6; }
.accordion-item.active .accordion-body { display: block; }
.accordion-arrow { font-size: 18px; transition: transform .3s; }
.accordion-item.active .accordion-arrow { transform: rotate(45deg); }

/* â”€â”€â”€ PRODUCTS â”€â”€â”€ */
.products-section { background: var(--bg); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.product-card {
  background: var(--card); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(124,58,237,0.13); }
.product-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--dark), #2d1b69);
  position: relative; overflow: hidden;
}
.product-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='150' cy='50' r='80' fill='white' opacity='0.03'/%3E%3Ccircle cx='30' cy='150' r='60' fill='white' opacity='0.03'/%3E%3C/svg%3E") center/cover;
}
.product-tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.product-header h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.product-header p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.product-body { padding: 1.5rem 2rem 2rem; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.product-features li { display: flex; align-items: center; gap: .5rem; font-size: 14px; color: var(--muted); }
.product-features li::before { content: '\2713'; color: var(--accent3); font-weight: 800; }
.product-icon-big { font-size: 2.5rem; margin-bottom: .8rem; }

/* â”€â”€â”€ PARTNERS â”€â”€â”€ */
.partners-section { background: #fff; }
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.partner-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.partner-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.partner-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.partner-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.testi-section { background: var(--dark); }
.testi-section .section-title { color: #fff; }
.testi-section .section-label { background: rgba(124,58,237,0.3); color: var(--accent2); }
.testi-section .section-sub { color: rgba(255,255,255,0.5); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2rem;
  transition: background .2s;
}
.testi-card:hover { background: rgba(124,58,237,0.1); }
.testi-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 14px;
}
.testi-author-info .name { font-weight: 600; color: #fff; font-size: 14px; }
.testi-author-info .role { font-size: 12px; color: rgba(255,255,255,0.4); }

/* â”€â”€â”€ TEAM DIFFERENCE â”€â”€â”€ */
.diff-section { background: var(--bg); }
.diff-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.diff-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.diff-card {
  background: var(--card); border-radius: 16px; padding: 1.4rem;
  border: 1px solid var(--border); transition: transform .2s;
}
.diff-card:hover { transform: translateY(-4px); }
.diff-icon { font-size: 2rem; margin-bottom: .8rem; }
.diff-card h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.diff-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.diff-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.diff-stat { display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem; background: var(--card); border-radius: 16px; border: 1px solid var(--border); }
.diff-stat .snum { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--accent); min-width: 80px; }
.diff-stat .sinfo .slabel { font-weight: 700; font-size: 15px; }
.diff-stat .sinfo .sdesc { font-size: 13px; color: var(--muted); }

/* â”€â”€â”€ CTA â”€â”€â”€ */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #6d28d9, #4c1d95);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='white' opacity='0.03'/%3E%3Ccircle cx='50' cy='50' r='100' fill='white' opacity='0.04'/%3E%3Ccircle cx='350' cy='350' r='120' fill='white' opacity='0.03'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.cta-section h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 2.5rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--accent); padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .2s; }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: background .2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
.contact-section { background: #fff; }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pill); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item-info .label { font-weight: 700; font-size: 14px; margin-bottom: .2rem; }
.contact-item-info p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-form { background: var(--bg); border-radius: 24px; padding: 2.5rem; }
.contact-form h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: .4rem; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--dark); color: #fff; border: none;
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.btn-submit:hover { background: var(--accent); }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: 60px 5% 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem;
}
footer .logo-text { color: #fff; }
.footer-about { font-size: 14px; line-height: 1.7; margin-top: 1rem; }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 16px;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--accent); color: #fff; }
.footer-col h4 { color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 1rem; font-size: 15px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent2); }
.footer-newsletter { display: flex; gap: .5rem; margin-top: .8rem; }
.footer-newsletter input {
  flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none;
}
.footer-newsletter button {
  padding: 10px 16px; background: var(--accent); color: #fff; border: none;
  border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  white-space: nowrap; transition: background .2s;
}
.footer-newsletter button:hover { background: var(--accent2); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: flex-end; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent2); }

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .hero-inner, .approach-inner, .contact-inner, .diff-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  section { padding: 60px 5%; }
  .diff-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .approach-floating-card { right: 0; bottom: -16px; }
  .modal-scroll { padding: 1.8rem 1.35rem 1.8rem 1.4rem; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-badge { font-size: 12px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .modal-box { border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; }
}
