/* ===================================================
   ADONIS ASSURANCES — Premium Insurance Website
   Colors extracted from logo: Blue-Purple butterfly + Orange flower
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Logo-derived palette */
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --navy-dark: #0f0f1e;
  --blue: #4a5eb5;
  --blue-light: #eef0fa;
  --blue-mid: #6ba3d6;
  --purple: #5b4dc7;
  --purple-light: #f0eefa;
  --orange: #e87b28;
  --orange-light: #fef3ea;
  --orange-dark: #d06a1e;
  --teal: #0ea5a0;
  --teal-light: #e6f7f7;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e5ef;
  --gray-300: #ced2df;
  --gray-400: #9ca3b8;
  --gray-500: #6b7294;
  --gray-600: #4b5170;
  --gray-700: #363b52;
  --gray-800: #1f2237;
  --gray-900: #111324;
  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.05);
  --shadow-md:
    0 4px 12px -2px rgba(26, 26, 46, 0.08),
    0 2px 4px -2px rgba(26, 26, 46, 0.04);
  --shadow-lg:
    0 12px 24px -4px rgba(26, 26, 46, 0.1),
    0 4px 8px -4px rgba(26, 26, 46, 0.04);
  --shadow-xl:
    0 20px 40px -8px rgba(26, 26, 46, 0.12),
    0 8px 16px -6px rgba(26, 26, 46, 0.04);
  --shadow-2xl: 0 32px 64px -12px rgba(26, 26, 46, 0.18);
  --shadow-orange: 0 8px 24px rgba(232, 123, 40, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}

.form-status {
  margin-top: 12px;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
}

.form-status.is-success {
  color: #047857;
}

.form-status.is-error {
  color: #b91c1c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--orange);
}
.text-accent-light {
  color: var(--orange);
  font-weight: 600;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  border-color: var(--orange-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--orange);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.btn--ghost::before {
  display: none;
}
.btn--ghost:hover {
  border-bottom-color: var(--orange);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
}

/* ---------- SECTION HEADERS ---------- */
.section-label {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    0 4px 16px rgba(26, 26, 46, 0.04);
}

.navbar.scrolled {
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.navbar__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}

.navbar__brand:hover .navbar__logo-img {
  transform: scale(1.05);
}

.navbar__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  transition: color var(--transition);
}

.navbar.scrolled .navbar__name {
  color: var(--navy);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}

.navbar__links a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 1px;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--navy);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar.scrolled .navbar__links a {
  color: var(--gray-500);
}
.navbar.scrolled .navbar__links a:hover,
.navbar.scrolled .navbar__links a.active {
  color: var(--navy);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.navbar__phone:hover {
  color: var(--orange);
}

.navbar.scrolled .navbar__phone {
  color: var(--gray-600);
}
.navbar.scrolled .navbar__phone:hover {
  color: var(--orange);
}

/* ---------- NAVBAR DROPDOWN ---------- */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar__dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.navbar__dropdown:hover .navbar__dropdown-arrow {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 0;
  box-shadow:
    0 20px 50px -12px rgba(26, 26, 46, 0.2),
    0 8px 20px -8px rgba(26, 26, 46, 0.1),
    0 0 0 1px rgba(26, 26, 46, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.25s ease;
  z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: -1px -1px 0 rgba(26, 26, 46, 0.04);
}

.navbar__dropdown-menu li {
  margin: 0 !important;
}

.navbar__dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  color: var(--gray-600) !important;
  white-space: nowrap;
  transition: all 0.2s ease !important;
}

.navbar__dropdown-menu li a::after {
  display: none !important;
}

.navbar__dropdown-menu li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.navbar__dropdown-menu li a:hover {
  color: var(--navy) !important;
  background: var(--gray-50);
  padding-left: 28px;
}

.navbar__dropdown-menu li a:hover::before {
  opacity: 1;
}

.navbar__dropdown-menu li:first-child a {
  border-radius: 12px 12px 0 0;
}

.navbar__dropdown-menu li:last-child a {
  border-radius: 0 0 12px 12px;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--navy);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 88%;
  max-width: 1600px;
  margin: 96px auto 40px;
  min-height: calc(100vh - 136px);
  display: flex;
  align-items: center;
  background: linear-gradient(
    145deg,
    var(--navy) 0%,
    var(--navy-light) 40%,
    #1e2d5a 70%,
    #2a3b6e 100%
  );
  padding: 80px 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 80px -20px rgba(26, 26, 46, 0.35);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(74, 94, 181, 0.08), transparent 70%);
}

.hero__circle--2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(232, 123, 40, 0.06),
    transparent 70%
  );
}

.hero__circle--3 {
  width: 300px;
  height: 300px;
  top: 35%;
  left: 25%;
  background: radial-gradient(circle, rgba(91, 77, 199, 0.05), transparent 70%);
}

.hero__gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse,
    rgba(74, 94, 181, 0.12),
    transparent 70%
  );
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 94, 181, 0.15);
  color: var(--blue-mid);
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(74, 94, 181, 0.2);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.hero__trust-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 700;
}

.hero__trust-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Hero Right — Floating Cards */
.hero__card-stack {
  position: relative;
  width: 100%;
  height: 480px;
}

.hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

.hero__floating-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 700;
}

.hero__floating-card span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.hero__fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__fc-icon--orange {
  background: var(--orange-light);
  color: var(--orange);
}
.hero__fc-icon--blue {
  background: var(--blue-light);
  color: var(--blue);
}
.hero__fc-icon--purple {
  background: var(--purple-light);
  color: var(--purple);
}
.hero__fc-icon--green {
  background: #ecfdf5;
  color: #059669;
}

.hero__floating-card--1 {
  top: 10px;
  right: 0;
  animation-delay: 0s;
}
.hero__floating-card--2 {
  top: 140px;
  left: -20px;
  animation-delay: 1.5s;
}
.hero__floating-card--3 {
  bottom: 140px;
  right: 10px;
  animation-delay: 3s;
}
.hero__floating-card--4 {
  bottom: 10px;
  left: 20px;
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- COUNTER SECTION ---------- */
.counter {
  padding: 64px 0;
  background: var(--white);
}

.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter__item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.counter__item + .counter__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

.counter__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.counter__suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  margin-left: 2px;
}

.counter__line {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 12px auto;
  opacity: 0.6;
}

.counter__label {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---------- CALLBACK FORM ---------- */
.callback {
  padding: 80px 0;
  background: var(--gray-50);
}

.callback__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.callback__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--orange));
  border-radius: 4px 0 0 4px;
}

.callback__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.callback__desc {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.callback__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.callback__phone-alt {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.callback__phone-alt span {
  display: block;
  font-size: 0.813rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.callback__phone-alt a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  transition: color var(--transition);
}

.callback__phone-alt a:hover {
  color: var(--orange);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 94, 181, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.callback__legal {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 44px 32px 36px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(74, 94, 181, 0.06), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px -20px rgba(26, 26, 46, 0.18),
    0 18px 30px -15px rgba(26, 26, 46, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-card__icon {
  transform: scale(1.06) rotate(-3deg);
}

.service-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 123, 40, 0.18), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #2a3b6e 100%);
  border-color: transparent;
  box-shadow: 0 24px 50px -18px rgba(26, 26, 46, 0.4);
}

.service-card--featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.service-card--featured:hover {
  box-shadow:
    0 36px 70px -20px rgba(26, 26, 46, 0.5),
    0 20px 40px -15px rgba(232, 123, 40, 0.2);
}

.service-card--featured .service-card__title {
  color: var(--white);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--featured .service-card__features li {
  color: rgba(255, 255, 255, 0.85);
}

.service-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  left: auto;
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 0.688rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px -6px rgba(232, 123, 40, 0.55);
  z-index: 3;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}

.service-card__icon--orange {
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd0a8 100%);
  color: var(--orange-dark);
  box-shadow:
    0 10px 24px -10px rgba(232, 123, 40, 0.45),
    0 0 0 1px rgba(232, 123, 40, 0.08);
}

.service-card__icon--blue {
  background: linear-gradient(135deg, #e0ecf8 0%, #b8d4ee 100%);
  color: var(--blue);
  box-shadow:
    0 10px 24px -10px rgba(74, 94, 181, 0.45),
    0 0 0 1px rgba(74, 94, 181, 0.08);
}

.service-card--featured .service-card__icon--blue {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  color: var(--white);
  box-shadow:
    0 10px 24px -10px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.service-card__icon--purple {
  background: linear-gradient(135deg, #ede7f6 0%, #d0c4ed 100%);
  color: var(--purple);
  box-shadow:
    0 10px 24px -10px rgba(91, 77, 199, 0.45),
    0 0 0 1px rgba(91, 77, 199, 0.08);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ----- Corner accent — aligned with icon row, right side ----- */
.service-card__title::before {
  content: "";
  position: absolute;
  top: -65px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.service-card__title::after {
  content: "";
  position: absolute;
  top: -69px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--orange);
  background: transparent;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.service-card:hover .service-card__title::before {
  transform: rotate(135deg);
}

.service-card:hover .service-card__title::after {
  transform: rotate(0deg);
}

.service-card--featured .service-card__title::before,
.service-card--featured .service-card__title::after {
  display: none;
}

.service-card__desc {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-card__features {
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-200);
}

.service-card--featured .service-card__features {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.service-card__features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 7px 0 7px 26px;
  position: relative;
  font-weight: 500;
}

.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  box-sizing: border-box;
  opacity: 1;
}

.service-card__features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card__features li::after {
  opacity: 1;
}

.service-card:hover .service-card__features li::before {
  background: transparent;
}

.service-card--featured .service-card__features li::before {
  background: rgba(232, 123, 40, 0.2);
  border-color: var(--orange);
}

.service-card--featured .service-card__features li::after {
  opacity: 1;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- FORMULAS (PRICING) ---------- */
.formulas {
  padding: 100px 0;
  background: var(--gray-50);
}

.formulas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.formula-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.formula-card--popular {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.formula-card--popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.formula-card__popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.formula-card__header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.formula-card__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.formula-card__tag {
  font-size: 0.813rem;
  color: var(--gray-400);
  font-weight: 500;
}

.formula-card__list {
  margin-bottom: 28px;
}

.formula-card__list li {
  padding: 10px 0;
  padding-left: 32px;
  font-size: 0.875rem;
  color: var(--gray-600);
  position: relative;
}

.formula-card__list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 1rem;
}

.formula-card__list li.included::before {
  content: "✓";
  color: #059669;
  font-weight: 700;
}

.formula-card__list li.excluded {
  color: var(--gray-400);
  text-decoration: line-through;
  opacity: 0.6;
}

.formula-card__list li.excluded::before {
  content: "—";
  color: var(--gray-400);
}

/* ---------- PROBLEM / SOLUTION ---------- */
.problem-solution {
  padding: 100px 0;
  background: var(--white);
}

.ps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ps__col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.ps__col--problem {
  border-left: 4px solid #ef4444;
}

.ps__col--solution {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-color: var(--navy);
  border-left: 4px solid #10b981;
}

.ps__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.ps__col-title--problem {
  color: #ef4444;
}

.ps__col-title--solution {
  color: #10b981;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ps__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.ps__list li:last-child {
  border-bottom: none;
}

.ps__list li strong {
  display: block;
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.ps__list li span {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.ps__list--solution li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ps__list--solution li strong {
  color: var(--white);
}

.ps__list--solution li span {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- WHY US ---------- */
.why-us {
  padding: 100px 0;
  background: var(--gray-50);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-us__item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.why-us__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-us__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all var(--transition);
}

.why-us__item:hover .why-us__icon {
  background: linear-gradient(135deg, var(--orange-light), #fff0e0);
  color: var(--orange);
}

.why-us__icon svg {
  width: 28px;
  height: 28px;
}

.why-us__item h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-us__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- PROCESS / STEPS ---------- */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}

.process__number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.process__connector {
  position: absolute;
  top: 72px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gray-300));
  z-index: 1;
}

.process__connector::before {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gray-300);
  border-top: 2px solid var(--gray-300);
  transform: rotate(45deg);
}

.process__step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.process__step p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  color: var(--orange);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-size: 0.813rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.938rem;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: 0.813rem;
  color: var(--gray-400);
}

/* ---------- BLOG ---------- */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card__img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-100);
}

.blog-card__cat {
    padding: 4px 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.688rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-card__body {
    padding: 24px;
}

.blog-card__date {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--orange);
    transition: opacity 0.2s;
}

.blog-card__link:hover { opacity: 0.7; }

@media (max-width: 1024px) {
    .blog__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--white);
}

.cta-section__inner {
  background: linear-gradient(
    145deg,
    var(--navy) 0%,
    var(--navy-light) 50%,
    #1e2d5a 100%
  );
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 123, 40, 0.15),
    transparent 70%
  );
}

.cta-section__inner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 94, 181, 0.1), transparent 70%);
}

.cta-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-section__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: var(--navy-dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 123, 40, 0.4), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.9fr 1.3fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer__name {
  color: var(--white) !important;
}

.footer__tagline {
  margin-top: 14px;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer__partner-note {
  color: var(--orange);
  font-weight: 500;
  opacity: 0.85;
  margin-top: 10px !important;
}

.footer__col h4 {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  padding-bottom: 12px;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer__col ul li {
  margin-bottom: 9px;
}

.footer__col ul li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

.footer__col ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--orange);
  margin-right: 0;
  transition: all var(--transition);
}

.footer__col ul li a:hover {
  color: var(--orange);
  padding-left: 0;
}

.footer__col ul li a:hover::before {
  width: 10px;
  margin-right: 8px;
}

/* Wider services column with 2-col grid layout */
.footer__grid > .footer__col:nth-child(3) ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}

.footer__grid > .footer__col:nth-child(3) ul li {
  margin-bottom: 0;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  margin-bottom: 12px;
}

.footer__contact li a {
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
}

.footer__contact li a:hover {
  color: var(--orange);
}

.footer__contact svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.78rem;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer__legal-links a:hover {
  color: var(--orange);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.15s;
}
.reveal--delay-2 {
  transition-delay: 0.3s;
}
.reveal--delay-3 {
  transition-delay: 0.45s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    display: none;
  }

  .services__grid,
  .formulas__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .formula-card--popular {
    transform: none;
  }
  .formula-card--popular:hover {
    transform: translateY(-4px);
  }

  .ps__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .process__connector {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .callback__card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .counter__item:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__right {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Mobile Menu */
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .navbar__links.open a {
    font-size: 1.25rem;
    color: var(--navy) !important;
  }

  .navbar__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar__toggle.open span {
    background: var(--navy) !important;
  }

  .hero {
    width: 92%;
    margin: 80px auto 24px;
    padding: 60px 0;
    min-height: auto;
    border-radius: 24px;
  }

  .hero__title {
    font-size: 2rem;
  }
  .hero__actions {
    flex-direction: column;
  }

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

  .counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .counter__item:nth-child(3)::before {
    display: none;
  }
  .counter__num {
    font-size: 2.25rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-section__inner {
    padding: 48px 28px;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .counter__num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .callback__card {
    padding: 28px 20px;
  }
  .section-header {
    margin-bottom: 48px;
  }

  .services,
  .formulas,
  .problem-solution,
  .why-us,
  .process,
  .testimonials,
  .cta-section {
    padding: 64px 0;
  }

  .counter {
    padding: 40px 0;
  }
  .counter__num {
    font-size: 1.75rem;
  }
  .counter__label {
    font-size: 0.75rem;
  }
}
