/* ===== Variables ===== */
:root {
  --navy: #0a1d2e;
  --navy-dark: #0b111e;
  --navy-hero: #0a192f;
  --navy-card: #112240;
  --navy-section: #0b1d2a;
  --orange: #f5a623;
  --orange-bright: #ffa229;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --max-w: 1280px;
  --font: 'Poppins', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled .header-inner {
  max-width: calc(100% - 2rem);
  margin: 0.5rem auto 0;
  background: var(--white);
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  transition: all 0.3s;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-nav .logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .logo-nav .logo-img {
    height: 56px;
    max-width: 220px;
  }
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header.scrolled .logo-icon {
  border-color: var(--navy);
  background: var(--white);
}

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-register {
  color: var(--white);
  transition: color 0.3s;
}

.header.scrolled .logo-register {
  color: var(--navy);
}

.logo-karo {
  color: var(--orange);
}

.nav {
  display: none;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--orange);
}

.header.scrolled .nav a {
  color: var(--gray-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header.scrolled .icon-btn {
  color: var(--gray-600);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .icon-btn:hover {
  background: var(--gray-100);
}

.btn-outline {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.header.scrolled .btn-outline {
  border-color: var(--gray-200);
  color: var(--gray-800);
}

.btn-orange {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-orange:hover {
  background: var(--orange-bright);
}

@media (min-width: 640px) {
  .btn-outline {
    display: block;
  }
}

@media (min-width: 1280px) {
  .nav {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 5rem;
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a1d2e 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -100px;
  left: -100px;
}

.hero::after {
  width: 350px;
  height: 350px;
  background: #60a5fa;
  bottom: -80px;
  right: -80px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem 0 4rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.rating-icon.google {
  background: var(--white);
  color: #2563eb;
}

.rating-icon.trust {
  background: #00b67a;
  color: var(--white);
}

.rating-text {
  text-align: left;
  color: var(--white);
}

.rating-text p {
  font-size: 0.875rem;
  font-weight: 500;
}

.rating-text small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 1px;
}

.rating-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  display: none;
}

@media (min-width: 640px) {
  .rating-divider {
    display: block;
  }
}

/* Lead form */
.lead-form {
  max-width: 64rem;
  margin: 2.5rem auto 0;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 0 40px rgba(100, 180, 255, 0.25);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .form-row.top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .form-row.top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-row.bottom {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .form-row.bottom {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-100);
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--gray-800);
  outline: none;
}

.form-input:focus {
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.4);
}

.phone-group {
  display: flex;
  background: var(--gray-100);
  border-radius: 0.75rem;
  overflow: hidden;
}

.phone-group select {
  padding: 0.875rem 0.75rem;
  background: var(--gray-200);
  border: none;
  color: var(--gray-700);
  font-size: 0.875rem;
  cursor: pointer;
}

.phone-group input {
  flex: 1;
  min-width: 0;
  background: var(--gray-100);
  border-radius: 0;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  width: 100%;
  padding-right: 2.5rem;
  color: var(--gray-500);
  cursor: pointer;
}

.select-wrap svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray-400);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--orange-bright);
}

/* ===== Trust bar ===== */
.trust-bar {
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a1d2e 100%);
  padding: 0 0 3rem;
}

.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 1rem 1.5rem;
}

@media (min-width: 1024px) {
  .trust-inner {
    flex-direction: row;
  }
}

.trust-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.trust-label svg {
  color: var(--orange);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.trust-pill {
  background: var(--white);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-pill strong {
  color: var(--orange);
  font-weight: 700;
}

/* ===== Section common ===== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--gray-500);
  margin-top: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Services ===== */
.services {
  background: var(--white);
  padding: 4rem 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, rgba(224, 242, 254, 0.8), transparent);
  pointer-events: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  margin: 2.5rem 0;
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--orange);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-top h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  padding-right: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.card-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.card-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.know-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.know-more:hover {
  gap: 0.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 166, 35, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.dot.active {
  width: 32px;
  background: var(--orange);
}

/* ===== Process ===== */
.process {
  background: linear-gradient(to bottom, rgba(224, 242, 254, 0.5), var(--white));
  padding: 4rem 0 6rem;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  .process-step {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .process-step.reverse .step-visual {
    order: 1;
  }

  .process-step.reverse .step-content {
    order: 2;
  }
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.step-list svg {
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  border-radius: 0.75rem;
  background: transparent;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(245, 166, 35, 0.05);
}

/* Mockups */
.mockup {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  position: relative;
}

.mockup-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.mockup h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mock-field {
  margin-bottom: 0.75rem;
}

.mock-field label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.mock-bar {
  height: 40px;
  background: var(--gray-100);
  border-radius: 8px;
  margin-top: 0.25rem;
}

.mock-phone {
  display: flex;
  gap: 0.5rem;
}

.mock-phone .code {
  width: 64px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.mock-phone .mock-bar {
  flex: 1;
}

.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mock-tag-pill {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
}

.mock-tag-pill.active {
  border-color: var(--orange);
  background: rgba(245, 166, 35, 0.1);
  color: var(--orange);
}

.mock-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.mock-counter button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.mock-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mock-btns button {
  flex: 1;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.mock-btns .back {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: var(--white);
}

.mock-btns .continue {
  background: var(--orange);
  color: var(--white);
  border: none;
}

.mock-capital {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 0.75rem;
}

.payment-option {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

.payment-option.active {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.payment-option .radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  margin-top: 2px;
  flex-shrink: 0;
}

.payment-option.active .radio {
  border-color: #2563eb;
  background: #2563eb;
}

.payment-option strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}

.payment-option span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.thank-you-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
}

.thank-you-card .check {
  width: 32px;
  height: 32px;
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-mock {
  display: flex;
  gap: 1rem;
}

.email-sidebar {
  width: 96px;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.email-sidebar p:first-child {
  font-weight: 600;
  color: var(--navy);
}

.email-row {
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--gray-100);
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.email-row.highlight {
  border: 2px solid var(--orange);
  background: rgba(245, 166, 35, 0.05);
  color: var(--navy);
}

.email-row.highlight strong {
  display: block;
  font-size: 0.75rem;
}

.email-row.highlight p {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 3rem 0;
  background: var(--white);
}

.cta-inner {
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a1d2e 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 3.5rem;
  }
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-inner h2 {
    text-align: left;
  }
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 36rem;
}

/* ===== Comparison ===== */
.comparison {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.comparison-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(245, 166, 35, 0.1);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
}

.compare-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

@media (min-width: 768px) {
  .compare-card {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-col {
  padding: 2rem;
}

.compare-col.others {
  background: rgba(249, 250, 251, 0.8);
}

.compare-col h4.brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.compare-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.compare-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.compare-icon.yes {
  background: var(--orange);
}

.compare-icon.no {
  background: var(--gray-400);
}

.compare-item h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.compare-col.others .compare-item h5 {
  color: var(--gray-700);
}

.compare-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.others-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--gray-500);
  font-weight: 700;
  font-size: 1.125rem;
}

.others-header .compare-icon {
  background: var(--gray-300);
}

/* ===== Why Choose ===== */
.why-choose {
  background: var(--navy-section);
  padding: 4rem 0;
}

.why-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .why-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.why-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-box {
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1rem;
  padding: 2rem;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-feature:last-child {
  margin-bottom: 0;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.why-feature h4 {
  color: var(--white);
  font-weight: 600;
}

.why-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.why-box h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cert-badge {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  overflow: hidden;
}

.cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.cert-badge-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ===== Partners ===== */
.partners {
  background: var(--navy);
  padding: 3rem 0;
  border-radius: 0 0 1.5rem 1.5rem;
}

.partners h2 {
  text-align: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.partner-logos span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s;
}

.partner-logos span:hover {
  color: var(--white);
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--navy-dark);
  padding: 4rem 0;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .testimonials-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.testimonials-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-nav {
  display: flex;
  gap: 0.5rem;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.testimonial-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-top h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.875rem;
}

.testimonial-stars small {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.25rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== Blogs ===== */
.blogs {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.blogs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blogs-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
}

.btn-view-all {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-view-all:hover {
  background: rgba(245, 166, 35, 0.05);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 1.5rem;
  font-size: 1.125rem;
}

.blog-thumb.purple {
  background: linear-gradient(135deg, #e9d5ff, #bfdbfe);
}

.blog-thumb.orange {
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
}

.blog-thumb.blue {
  background: linear-gradient(135deg, #e0f2fe, #e0e7ff);
}

.blog-body {
  padding: 1.5rem;
}

.blog-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.blog-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-author {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-side p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}

.footer-map {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-map:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact h5 {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-app {
  margin-top: 1.5rem;
}

.footer-app h5 {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
}

.app-badge span {
  font-size: 1.5rem;
}

.app-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.625rem;
}

.footer-category {
  margin-bottom: 2.5rem;
}

.footer-category hr {
  border: none;
  border-top: 1px solid var(--orange);
  margin-bottom: 1rem;
}

.footer-category h3 {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-cols a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}

.footer-cols a:hover {
  color: var(--orange);
}

.footer-copy {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ===== Floating WhatsApp ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.fab-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: -1;
}

.fab-whatsapp-label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--white);
  color: #128c7e;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fab-whatsapp:hover .fab-whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
