/* =========================================================
   ISSA Entertainment — Global Stylesheet
   Purple + White Corporate AI Theme
   ========================================================= */

/* === RESET & BASE ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a0533;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === CSS VARIABLES ======================================= */
:root {
  --p900: #0d0020;
  --p800: #1e0a3c;
  --p700: #2d1b69;
  --p600: #4c1d95;
  --p500: #7b2fbe;
  --p400: #a855f7;
  --p300: #c084fc;
  --p200: #e9d5ff;
  --p100: #f3e8ff;
  --p50:  #faf5ff;
  --white: #ffffff;
  --gray-50: #f9f7ff;
  --gray-100: #f0ebfa;
  --gray-200: #ddd6fe;
  --gray-600: #6b5a8e;
  --gray-800: #2d1b47;
  --accent: #d946ef;
  --accent2: #06b6d4;
  --text: #1a0533;
  --text-muted: #6b5a8e;
  --border: rgba(168, 85, 247, 0.18);
  --shadow: 0 4px 24px rgba(123, 47, 190, 0.12);
  --shadow-md: 0 8px 32px rgba(123, 47, 190, 0.18);
  --shadow-lg: 0 16px 64px rgba(123, 47, 190, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
  --container: 1200px;
}

/* === UTILITY ============================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; letter-spacing: 0.02em; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--p500) 0%, var(--p400) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,85,247,0.55); }
.btn-outline {
  background: transparent; color: var(--p400);
  border: 2px solid var(--p400);
}
.btn-outline:hover { background: var(--p400); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--p600);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--p400);
  background: var(--p100); padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--p400);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--p800); line-height: 1.2; letter-spacing: -0.02em;
}
.section-title span { color: var(--p400); }
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 640px;
  margin-top: 12px;
}
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* === HEADER ============================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 0, 32, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 0, 32, 0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.4rem; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
}
.logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen; /* makes white bg transparent on dark header */
}
.logo span { color: var(--p300); }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: #fff; background: rgba(168,85,247,0.2); }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* === HERO ================================================ */
.hero {
  min-height: 100vh;
  background: var(--p900);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/bg-waves.png');
  background-size: cover; background-position: center bottom;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,0,32,0.92) 0%,
    rgba(44,27,105,0.7) 50%,
    rgba(13,0,32,0.85) 100%);
}
.hero-glow-1 {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%);
  bottom: 0; left: 10%; border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite alternate-reverse;
}
@keyframes pulse-glow { from { opacity: 0.5; transform: scale(1); } to { opacity: 1; transform: scale(1.15); } }

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 80px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3);
  color: var(--p300); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--p300); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--p300), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--p800);
  background: linear-gradient(135deg, var(--p500), var(--p300));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.7rem; font-weight: 700;
  margin-left: -10px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.hero-trust-text strong { color: #fff; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-rings-img {
  width: 100%; max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,0.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.hero-stat-cards { position: absolute; right: -20px; top: 20%; display: flex; flex-direction: column; gap: 12px; }
.hero-stat-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 14px; padding: 14px 20px; min-width: 160px;
}
.hero-stat-card .num { font-size: 1.6rem; font-weight: 800; color: #fff; }
.hero-stat-card .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.hero-stat-card .num span { color: var(--p300); }

/* === STATS BAR =========================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--p700) 0%, var(--p500) 100%);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-item .stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; letter-spacing: -0.03em;
}
.stat-item .stat-num span { color: var(--p200); }
.stat-item .stat-lbl {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  font-weight: 500; margin-top: 4px;
}
.stat-item .stat-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* === SECTION BASE ======================================== */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--p900); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* === SERVICES GRID ======================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p500), var(--p300));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--p100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--p800); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--p400); font-size: 0.85rem; font-weight: 600;
  margin-top: 16px; transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* === ABOUT SPLIT ========================================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(123,47,190,0.35));
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--p500), var(--p400));
  color: #fff; border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.about-badge .big { font-size: 2rem; font-weight: 900; display: block; }
.about-badge .sm { font-size: 0.8rem; opacity: 0.8; }
.about-text .section-sub { max-width: 100%; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--p50); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.about-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--p100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.about-feat h4 { font-size: 0.95rem; font-weight: 700; color: var(--p800); margin-bottom: 4px; }
.about-feat p { font-size: 0.85rem; color: var(--text-muted); }

/* === HOW IT WORKS ======================================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--p500), var(--p300));
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p500), var(--p400));
  color: #fff; font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 8px 24px rgba(168,85,247,0.35);
  border: 4px solid #fff;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--p800); margin-bottom: 8px; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); }

/* === SOLUTIONS =========================================== */
.solutions-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.solution-card {
  border-radius: var(--radius-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card.featured {
  background: linear-gradient(145deg, var(--p700) 0%, var(--p500) 100%);
  color: #fff; grid-row: span 1;
}
.solution-card.featured .solution-title { color: #fff; }
.solution-card.featured .solution-text { color: rgba(255,255,255,0.75); }
.solution-card.light { background: var(--gray-50); border: 1px solid var(--border); }
.solution-card.light .solution-title { color: var(--p800); }
.solution-card.light .solution-text { color: var(--text-muted); }
.solution-icon {
  font-size: 2.5rem; margin-bottom: 24px;
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border-radius: 16px;
}
.solution-card.light .solution-icon { background: var(--p100); }
.solution-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.solution-text { font-size: 0.9rem; line-height: 1.7; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.solution-tag {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
  font-size: 0.75rem; padding: 4px 12px; border-radius: 50px;
}
.solution-card.light .solution-tag { background: var(--p100); color: var(--p500); }

/* === INDUSTRIES ========================================== */
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center; transition: var(--transition); cursor: default;
}
.industry-card:hover {
  background: var(--p50); border-color: var(--p300);
  transform: translateY(-4px); box-shadow: var(--shadow);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.industry-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--p800); margin-bottom: 6px; }
.industry-card p { font-size: 0.8rem; color: var(--text-muted); }

/* === CLIENTS ============================================= */
.clients-section { background: var(--p900); padding: 80px 0; }
.clients-title { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 48px; }
.clients-logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 40px;
}
.client-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: var(--transition); opacity: 0.65;
  min-width: 140px;
}
.client-logo-item:hover {
  opacity: 1; transform: translateY(-3px);
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 8px 24px rgba(168,85,247,0.15);
}
.client-logo-svg {
  height: 32px; width: auto; overflow: visible;
}
.clients-logos { gap: 16px; }

/* === CASES =============================================== */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--p100), var(--p50));
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.case-logo-placeholder {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 800; flex-shrink: 0;
}
.case-company { font-size: 0.85rem; color: var(--text-muted); }
.case-company strong { display: block; font-size: 1rem; font-weight: 700; color: var(--p800); }
.case-card-body { padding: 24px 28px; }
.case-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.case-results { display: flex; gap: 16px; flex-wrap: wrap; }
.case-result {
  background: var(--p50); border: 1px solid var(--p200);
  border-radius: 8px; padding: 10px 16px; text-align: center;
}
.case-result .cr-num { font-size: 1.3rem; font-weight: 800; color: var(--p500); display: block; }
.case-result .cr-lbl { font-size: 0.72rem; color: var(--text-muted); }
.case-tag {
  display: inline-block;
  background: var(--p100); color: var(--p500);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
}

/* === TECHNOLOGIES ======================================== */
.tech-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}
.tech-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--p50); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 20px;
  transition: var(--transition);
}
.tech-badge:hover { background: var(--p100); border-color: var(--p300); transform: translateY(-2px); }
.tech-badge-icon { font-size: 1.4rem; }
.tech-badge-name { font-size: 0.875rem; font-weight: 600; color: var(--p700); }

/* === WHY US ============================================== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(168,85,247,0.3);
}
.why-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--p800); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* === TEAM PREVIEW ======================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem; font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--p200);
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--p800); margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--p400); font-weight: 600; margin-bottom: 10px; }
.team-card .bio { font-size: 0.82rem; color: var(--text-muted); }
.team-socials { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.team-social {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--p100); color: var(--p500);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: var(--transition);
}
.team-social:hover { background: var(--p400); color: #fff; }

/* === REVIEWS ============================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition); position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '\201C'; font-size: 5rem; line-height: 0.6;
  color: var(--p200); position: absolute; top: 20px; right: 24px;
  font-family: Georgia, serif;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-stars span { color: #f59e0b; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.review-author-name { font-size: 0.9rem; font-weight: 700; color: var(--p800); }
.review-author-company { font-size: 0.78rem; color: var(--text-muted); }

.rating-summary {
  display: flex; align-items: center; gap: 24px; justify-content: center;
  background: var(--p50); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 40px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.rating-big { font-size: 4rem; font-weight: 900; color: var(--p500); line-height: 1; }
.rating-stars-big { display: flex; gap: 6px; }
.rating-stars-big span { font-size: 1.5rem; color: #f59e0b; }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }

/* === FAQ ================================================= */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; font-weight: 600;
  font-size: 0.975rem; color: var(--p800); transition: var(--transition);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-q:hover { background: var(--p50); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--p100); color: var(--p400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--p400); color: #fff; }
.faq-a {
  padding: 0 28px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }

/* === CTA BANNER ========================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--p800) 0%, var(--p600) 50%, var(--p500) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/bg-waves.png');
  background-size: cover; opacity: 0.08;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; margin-bottom: 16px; letter-spacing: -0.02em;
}
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === FOOTER ============================================== */
.site-footer {
  background: var(--p900); color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--p300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.83rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.83rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--p300); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social:hover { background: var(--p500); color: #fff; }

/* === BREADCRUMB ========================================== */
.breadcrumb-section { background: var(--gray-50); padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-muted); }
.breadcrumb a { color: var(--p400); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* === PAGE HERO (subpages) ================================ */
.page-hero {
  background: var(--p900);
  padding: calc(var(--header-h) + 64px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,27,105,0.7), rgba(13,0,32,0.9));
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/bg-waves.png');
  background-size: cover; opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 900;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 16px;
}
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }

/* === TEAM PAGE =========================================== */
.team-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-page-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.team-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card-header {
  padding: 40px 28px; text-align: center;
  background: linear-gradient(135deg, var(--p800), var(--p600));
}
.team-big-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p300), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2.2rem; font-weight: 800;
  margin: 0 auto 16px; border: 4px solid rgba(255,255,255,0.2);
}
.team-card-header h3 { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.team-card-header .role { color: var(--p200); font-size: 0.85rem; font-weight: 600; }
.team-card-body { padding: 28px; }
.team-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  background: var(--p50); color: var(--p500); border: 1px solid var(--p200);
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
}

/* === ABOUT PAGE ========================================== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--p500), var(--p300));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  border: 3px solid #fff; box-shadow: 0 0 0 3px var(--p200);
}
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--p400); margin-bottom: 4px; }
.timeline-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--p800); margin-bottom: 8px; }
.timeline-item p { font-size: 0.875rem; color: var(--text-muted); }

/* === SERVICES PAGE ======================================= */
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-page-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; gap: 24px; transition: var(--transition);
}
.service-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--p300); }
.service-page-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem;
}
.service-page-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--p800); margin-bottom: 10px; }
.service-page-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.service-features li {
  font-size: 0.83rem; color: var(--text-muted); padding: 4px 0;
  padding-left: 18px; position: relative;
}
.service-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--p400); font-weight: 700;
}

/* === CONTACT PAGE ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--p100); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-info-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--p800); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.875rem; color: var(--text-muted); }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--p800); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.9rem; font-family: inherit; color: var(--text);
  background: var(--p50); transition: var(--transition); outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--p400); background: #fff; box-shadow: 0 0 0 3px rgba(168,85,247,0.12); }
.form-group textarea { min-height: 120px; }
.form-submit { width: 100%; padding: 16px; }

/* === CASES PAGE ========================================== */
.cases-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.case-page-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.case-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-page-header {
  padding: 36px 32px; background: linear-gradient(135deg, var(--p800), var(--p600));
}
.case-page-header h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.case-page-header .case-client { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.case-page-body { padding: 32px; }
.case-page-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.case-metric { background: var(--p50); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.case-metric .cm-num { font-size: 1.4rem; font-weight: 800; color: var(--p500); display: block; }
.case-metric .cm-lbl { font-size: 0.72rem; color: var(--text-muted); }

/* === BI ICONS ============================================ */
.bi { display: inline-block; vertical-align: -0.125em; }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--p100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.svc-icon-wrap svg { width: 26px; height: 26px; stroke: var(--p500); fill: none; stroke-width: 1.6; }
.svc-icon-wrap.lg { width: 64px; height: 64px; border-radius: 16px; }
.svc-icon-wrap.lg svg { width: 32px; height: 32px; }
.svc-icon-wrap.white { background: rgba(255,255,255,0.14); }
.svc-icon-wrap.white svg { stroke: #fff; }
.svc-icon-wrap.gradient {
  background: linear-gradient(135deg, var(--p500), var(--p300));
  box-shadow: 0 8px 24px rgba(168,85,247,0.32);
}
.svc-icon-wrap.gradient svg { stroke: #fff; }

/* === TRUST / SECURITY SECTION ============================ */
.trust-section {
  position: relative; overflow: hidden;
  padding: 120px 0; color: #fff;
}
.trust-bg {
  position: absolute; inset: 0;
  background-image: url('assets/img-shield.png');
  background-size: cover; background-position: center;
}
.trust-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,0,32,0.88) 0%,
    rgba(76,29,149,0.75) 50%,
    rgba(13,0,32,0.88) 100%);
}
.trust-inner { position: relative; z-index: 1; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.trust-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.trust-card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(168,85,247,0.2); border: 1px solid rgba(168,85,247,0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.trust-card-icon svg { width: 28px; height: 28px; stroke: var(--p300); fill: none; stroke-width: 1.6; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.trust-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* === TECH BG SECTION ===================================== */
.tech-section {
  position: relative; overflow: hidden; padding: 100px 0;
}
.tech-section-bg {
  position: absolute; inset: 0;
  background-image: url('assets/img-cluster.png');
  background-size: cover; background-position: center;
}
.tech-section-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,0,32,0.96) 0%,
    rgba(13,0,32,0.85) 40%,
    rgba(13,0,32,0.95) 100%);
}
.tech-section .section-title { color: #fff; }
.tech-section .section-sub { color: rgba(255,255,255,0.65); }
.tech-section .section-label { background: rgba(255,255,255,0.1); color: var(--p200); }
.tech-section .tech-badge {
  background: rgba(255,255,255,0.07); border-color: rgba(168,85,247,0.25); color: #fff;
}
.tech-section .tech-badge-name { color: rgba(255,255,255,0.85); }
.tech-section .tech-badge:hover { background: rgba(168,85,247,0.2); border-color: var(--p300); }
.tech-section > .container { position: relative; z-index: 1; }

/* === PRICING SECTION ===================================== */
.pricing-section { background: var(--gray-50); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: start;
}
.pricing-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--p400);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--p500), var(--p300));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.pricing-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.popular .pricing-header {
  background: linear-gradient(135deg, var(--p800), var(--p600));
}
.pricing-card.popular .pricing-name { color: #fff; }
.pricing-card.popular .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-card.popular .pricing-price { color: #fff; }
.pricing-card.popular .pricing-price-sub { color: rgba(255,255,255,0.6); }
.pricing-card.popular .pricing-badge { top: 28px; right: 28px; }
.pricing-name {
  font-size: 1.1rem; font-weight: 800; color: var(--p800);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--p700); letter-spacing: -0.03em; line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price-sub { font-size: 0.83rem; color: var(--text-muted); margin-top: 6px; }
.pricing-body { padding: 28px 32px 36px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: var(--gray-800);
}
.pricing-feat svg { width: 18px; height: 18px; stroke: var(--p400); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.pricing-feat.dim { color: var(--text-muted); }
.pricing-feat.dim svg { stroke: var(--gray-200); }
.pricing-cta { display: block; width: 100%; text-align: center; padding: 16px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; transition: var(--transition); }
.pricing-cta.outline {
  border: 2px solid var(--p400); color: var(--p500);
}
.pricing-cta.outline:hover { background: var(--p400); color: #fff; }
.pricing-cta.solid {
  background: linear-gradient(135deg, var(--p500), var(--p400));
  color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(168,85,247,0.35);
}
.pricing-cta.solid:hover { box-shadow: 0 8px 28px rgba(168,85,247,0.5); transform: translateY(-2px); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.83rem; color: var(--text-muted); }

/* === HERO VISUAL (video / img) =========================== */
.hero-robot-img, .hero-video {
  width: 100%; max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,0.45));
  animation: float 5s ease-in-out infinite;
}
.hero-video {
  border-radius: 24px;
  object-fit: cover;
}

/* === TECH BADGE ICONS — SimpleIcons ====================== */
.tech-si-icon {
  width: 24px; height: 24px; object-fit: contain; flex-shrink: 0;
}
/* In tech section (dark bg) icons are already white from CDN param */
/* On light backgrounds the icon color matches brand purple from CDN param */

/* === AWARDS STRIP ========================================= */
.awards-strip {
  background: var(--p50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.awards-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 40px;
}
.award-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.82rem; font-weight: 600;
}
.award-item svg { width: 22px; height: 22px; stroke: var(--p400); fill: none; stroke-width: 1.8; }
.award-item span { color: var(--p700); }

/* === MAP FOOTER =========================================== */
.footer-map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
}
.footer-map-wrap iframe { display: block; }
.footer-address {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.83rem; color: rgba(255,255,255,0.6); margin-top: 12px;
}
.footer-address svg { width: 16px; height: 16px; stroke: var(--p300); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* === WHY-AI-NOW SECTION ================================== */
.why-now {
  background: var(--p900); color: #fff; padding: 100px 0; overflow: hidden; position: relative;
}
.why-now::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(168,85,247,0.15), transparent 60%);
  pointer-events: none;
}
.why-now-inner { position: relative; z-index: 1; }
.why-now-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-now-stats { display: flex; flex-direction: column; gap: 24px; }
.wn-stat {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius); padding: 20px 24px;
  transition: var(--transition);
}
.wn-stat:hover { background: rgba(168,85,247,0.1); border-color: var(--p400); }
.wn-stat-num { font-size: 2rem; font-weight: 900; color: var(--p300); min-width: 80px; }
.wn-stat-num span { color: var(--p200); }
.wn-stat-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.wn-stat-text p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* === SCROLL REVEAL ======================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === MOBILE NAV ========================================== */
@media (max-width: 1023px) {
  .nav-list { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--p900); padding: 32px 24px;
    overflow-y: auto; z-index: 999; align-items: flex-start;
  }
  .nav-list a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  body.nav-open .nav-list { display: flex; }
  body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* === RESPONSIVE ========================================== */
@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-page-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1023px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .why-now-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 767px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cases-page-grid { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: 1fr; }
  .about-split img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stat-cards { display: none; }
  .hero-trust { flex-wrap: wrap; }
  .trust-grid { grid-template-columns: 1fr; }
  .awards-row { gap: 20px; }
}
