/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0099ff;
  --blue-dark: #027ff4;
  --black: #0d0100;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #6f6f6f;
  --gray-light: #e3e3e3;
  --bg-light: #f6f5f5;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* keeps content centered with max ~1240px, min 40px padding on small screens */
  padding: 0 max(40px, calc((100% - 1240px) / 2));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 28, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,153,255,0.15);
  transition: background var(--transition);
}

.navbar--light {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--gray-light);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar--light .navbar__logo-text { color: var(--dark); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.navbar__nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.navbar__nav a.active {
  color: var(--white);
}

/* active dot indicator */
.navbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* separator before CTA */
.navbar__nav li:last-child {
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.navbar--light .navbar__nav a { color: var(--gray); }
.navbar--light .navbar__nav a:hover { color: var(--dark); background: rgba(0,0,0,0.04); }
.navbar--light .navbar__nav a.active { color: var(--dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover { background: #333; transform: translateY(-1px); }

/* ===== HAMBURGER ===== */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar--light .navbar__hamburger span { background: var(--dark); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: rgba(13,1,0,0.97);
  padding: 24px 40px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(3,6,20,0.93) 0%, rgba(3,6,20,0.72) 55%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero__content {
  max-width: 860px;
  padding: 140px 0 80px;
}

.hero__title {
  font-size: clamp(48px, 7.5vw, 96px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__title span { color: var(--blue); }

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark);
  margin-left: -10px;
}
.hero__avatars img:first-child { margin-left: 0; }

.hero__trust-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 180px;
}

/* ===== FEATURES ROW ===== */
.features {
  background: var(--white);
  padding: 60px 40px;
}

.features__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card__icon svg { color: white; }

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 80px 40px;
}


.section--dark {
  background: var(--dark2);
  color: var(--white);
}

.section--bg {
  background: var(--bg-light);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }

/* ===== SPLIT SECTION ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.split__image:hover img { transform: scale(1.03); }

.split__content { padding: 20px 0; }

.split__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.split__list-icon {
  width: 32px;
  height: 32px;
  background: rgba(0,153,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.split__list-icon svg { color: var(--blue); }

.split__list-text strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
}

.split__list-text p {
  font-size: 14px;
  color: var(--gray);
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item { text-align: center; }

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 14px;
  color: var(--gray);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.section--dark .service-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,153,255,0.12);
}

.service-card__num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.7;
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.section--dark .service-card__title { color: var(--white); }

.service-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

.section--dark .service-card__text { color: rgba(255,255,255,0.6); }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(0,153,255,0.1));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step__num {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.step__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.section--dark .step__title { color: var(--white); }
.section--dark .step__text { color: rgba(255,255,255,0.6); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.section--dark .review-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.section--dark .review-card__text { color: rgba(255,255,255,0.65); }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-light);
}

.review-card__name {
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-heading);
  color: var(--dark);
}

.section--dark .review-card__name { color: var(--white); }

.review-card__location {
  font-size: 12px;
  color: var(--gray);
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img { transform: scale(1.05); }

.team-card__info {
  padding: 20px 20px 22px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-card__role {
  font-size: 13px;
  color: var(--gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0d0100 0%, #0a1628 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,153,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}

.cta-banner__title span { color: var(--blue); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.6);
  padding: 48px 40px 32px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0d0100 0%, #0a1628 100%);
  padding: 140px 40px 80px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ABOUT FEATURES ===== */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.about-feature {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--transition);
}

.about-feature:hover { transform: translateY(-3px); }

.about-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,153,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature__icon svg { color: var(--blue); }

.about-feature__title {
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.about-feature__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.form__input,
.form__textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus { border-color: var(--blue); }

.form__textarea { min-height: 120px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__buttons { flex-direction: column; align-items: flex-start; }

  .section { padding: 60px 20px; }
  .features { padding: 48px 20px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }

  .features__grid,
  .services-grid,
  .steps,
  .reviews-grid,
  .team-grid,
  .stats { grid-template-columns: 1fr; }

  .steps::before { display: none; }

  .about-features { grid-template-columns: 1fr; }

  .contact-section { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-hero { padding: 120px 20px 60px; }

  .cta-banner { padding: 60px 20px; }
}

/* ===== ANIMATIONS ===== */

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* Hero animated gradient text */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__title span {
  background: linear-gradient(90deg, #0099ff, #00d4ff, #0060ff, #0099ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Hero content fade-in on load */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero__content { animation: heroIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both; }

/* Hero parallax */
.hero__bg img {
  will-change: transform;
  transition: none;
}

/* Navbar slide-in */
@keyframes navIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: none; }
}
.navbar { animation: navIn 0.5s cubic-bezier(0.22,1,0.36,1) both; }

/* Card hover glow */
.feature-card:hover,
.service-card:hover {
  box-shadow: 0 0 0 1px var(--blue), 0 16px 48px rgba(0,153,255,0.15);
}

/* Review card subtle lift */
.review-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Step number pulse on hover */
.step:hover .step__num {
  animation: pulse 0.6s cubic-bezier(0.22,1,0.36,1);
}
@keyframes pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Smooth image zoom on section hover (already have transition, enhancing) */
.split__image img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.split__image:hover img { transform: scale(1.04); }

/* CTA banner shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn--primary {
  background: linear-gradient(90deg, var(--blue) 40%, #00d4ff 60%, var(--blue) 80%);
  background-size: 200% auto;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,153,255,0.4);
}

/* Logo img sizing fix for navbar */
.navbar__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Team card image fix — portraits look better with top alignment */
.team-card__image img { object-position: center top; }

/* ===== HERO AWARD (static) ===== */
.hero__award {
  margin-top: 0;
  display: inline-block;
}
.hero__award-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,200,0,0.12), rgba(255,200,0,0.06));
  border: 1px solid rgba(201,150,12,0.5);
  border-radius: 50px;
  padding: 8px 18px 8px 10px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.hero__award-inner:hover {
  border-color: rgba(245,200,66,0.7);
  background: linear-gradient(135deg, rgba(255,200,0,0.18), rgba(255,200,0,0.10));
}
.hero__award-trophy {
  font-size: 22px;
  filter: drop-shadow(0 0 6px rgba(255,200,0,0.5));
}
.hero__award-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #f5c842;
  line-height: 1.2;
}
.hero__award-sub {
  font-size: 11px;
  color: rgba(245,200,66,0.7);
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.industry-card:hover {
  border-color: rgba(0,153,255,0.3);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,153,255,0.08);
}
.industry-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,153,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.industry-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}
.industry-card__text { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== COMPARE ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.compare__col { border-radius: var(--radius-lg); padding: 36px 32px; }
.compare__col--us { background: linear-gradient(135deg, #0077ee 0%, #0050cc 100%); }
.compare__col--them { background: var(--bg-light); border: 1.5px solid var(--gray-light); }
.compare__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.compare__col--us .compare__badge { background: rgba(255,255,255,0.18); color: white; }
.compare__col--them .compare__badge { background: rgba(0,0,0,0.07); color: var(--gray); }
.compare__title { font-family: var(--font-heading); font-weight: 800; font-size: 20px; margin-bottom: 24px; }
.compare__col--us .compare__title { color: white; }
.compare__col--them .compare__title { color: var(--dark); }
.compare__list { display: flex; flex-direction: column; gap: 14px; }
.compare__item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
.compare__col--us .compare__item { color: rgba(255,255,255,0.9); }
.compare__col--them .compare__item { color: var(--gray); }
.compare__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.compare__col--us .compare__icon { background: rgba(255,255,255,0.22); color: white; }
.compare__col--them .compare__icon { background: rgba(200,40,40,0.1); color: #cc2222; }

/* ===== FAQ ===== */
.faq-list { margin-top: 48px; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:first-child { border-top: 1px solid var(--gray-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.3s;
}
.faq-item.open .faq-q__icon { background: var(--blue); transform: rotate(45deg); }
.faq-q__icon svg { transition: stroke 0.2s; }
.faq-item.open .faq-q__icon svg { stroke: white !important; }
.faq-a {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 20px; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-light);
  transition: all 0.3s;
}
.value-card:hover { border-color: rgba(0,153,255,0.3); box-shadow: 0 12px 40px rgba(0,153,255,0.08); transform: translateY(-4px); }
.value-card__emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.value-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.value-card__text { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ===== TIMELINE ===== */
.timeline { position: relative; margin-top: 56px; max-width: 700px; margin-left: auto; margin-right: auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(0,153,255,0.1));
}
.timeline-item { position: relative; padding-left: 62px; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 10px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(0,153,255,0.22);
}
.timeline-year { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.timeline-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.timeline-text { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ===== GUARANTEE STRIP ===== */
.guarantee-strip {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
  border: 1.5px solid rgba(0,153,255,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.guarantee-num { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.guarantee-label { font-size: 13px; color: var(--gray); line-height: 1.4; }

/* ===== RATING SUMMARY ===== */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  margin-bottom: 56px;
  border: 1.5px solid var(--gray-light);
}
.rating-big { text-align: center; min-width: 100px; }
.rating-big__num { font-family: var(--font-heading); font-size: 64px; font-weight: 800; color: var(--dark); line-height: 1; }
.rating-big__stars { font-size: 22px; color: #f59e0b; margin: 8px 0 4px; letter-spacing: 2px; }
.rating-big__count { font-size: 13px; color: var(--gray); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rating-bar { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.rating-bar__label { min-width: 36px; color: var(--gray); text-align: right; }
.rating-bar__track { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.rating-bar__fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.rating-bar__pct { min-width: 32px; color: var(--gray); font-size: 12px; }
.rating-summary__aside { max-width: 220px; }
.rating-summary__quote { font-size: 14px; color: var(--gray); line-height: 1.7; font-style: italic; }
.rating-summary__cta { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* ===== TRUST SIGNALS ===== */
.trust-signals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.trust-signal-card {
  background: white;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: all 0.3s;
}
.trust-signal-card:hover { border-color: rgba(0,153,255,0.25); box-shadow: 0 8px 32px rgba(0,153,255,0.07); }
.trust-signal-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,153,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.trust-signal-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.trust-signal-card__text { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ===== PACKAGE LIST ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.package-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.25s;
}
.package-item:hover { border-color: rgba(0,153,255,0.2); background: white; }
.package-item__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,153,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.package-item__title { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.package-item__sub { font-size: 13px; color: var(--gray); }

/* ===== RESPONSIVE NEW ===== */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-signals { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .compare { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .guarantee-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 24px; }
  .rating-summary { flex-direction: column; gap: 28px; padding: 28px 24px; }
  .rating-summary__aside { max-width: none; }
  .trust-signals { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: 1fr; }
  .guarantee-strip { grid-template-columns: 1fr; }
}
