:root {
  --navy: #051441;
  --navy2: #162248;
  --navy3: #1A2960;
  --red: #f9102d;
  --red2: #C42E24;
  --red-light: rgba(232, 58, 47, 0.08);
  --amber: #F4B942;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg2: #F7F8FC;
  --bg3: #EEF0F8;
  --gray: #051441;
  --gray2: #4A5568;
  --text: #1A1F36;
  --card-bg: #FFFFFF;
  --card-shadow: 0 2px 24px rgba(13, 27, 62, 0.08);
  --border: rgba(13, 27, 62, 0.1);
  --border-red: rgba(232, 58, 47, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 27, 62, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 62, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6%;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 20px rgba(13, 27, 62, 0.06);
  min-height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  font-size: 18px;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 35px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #C42E24;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 48px 0;
  position: relative;
  overflow: hidden;
  background: #003a7d;
}

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 248, 248, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* red glow accent */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 44, 44, 0.12) 0%, transparent 70%);
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* LEFT CONTENT */
.hero-content {
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 253, 253, 0.04);
  border: 1px solid rgba(249, 248, 248, 0.08);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp .6s .1s ease both;
}

.hero-heading .accent {
  color: var(--red);
}

.hero-heading .thin {
  font-weight: 300;
  color: #94A3B8;
  display: block;
  font-size: 0.72em;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.hero-heading .line-sub {
  display: block;
  font-size: 0.34em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-top: 12px;
  line-height: 1.6;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  max-width: 535px;
  margin-bottom: 36px;
  animation: fadeUp .6s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp .6s .3s ease both;
}

.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232, 44, 44, 0.3);
}

.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 44, 44, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeUp .6s .4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.stat-num span {
  color: var(--red);
}

.stat-label {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

/* RIGHT PANEL */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp .6s .2s ease both;
}


/* Responsive */
@media (max-width: 900px) {

  .hero-inner {
    padding: 60px 0;
  }

  .hero-heading {
    font-size: clamp(28px, 7vw, 40px);
  }

  .iwp-stats {
    flex-wrap: wrap;
  }

  .iwp-stat {
    min-width: 50%;
  }
}

/* ── SECTION COMMON ── */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '//';
  color: var(--red);
  font-weight: 700
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-title span {
  color: var(--red);
}

.section-sub {
  font-size: 16px;
  color: var(--navy);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--bg2);
}

.services-head {
  text-align: center;
  margin-bottom: 56px;
}

.services-head .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.svc-card {
  background: #BCDBFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
  box-shadow: var(--card-shadow);
}

.svc-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(232, 58, 47, 0.12);
  transform: translateY(-5px);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-num {
  font-size: 30px;
  font-weight: 700;
  color: #05144163;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-style: italic;
  margin-top: -25px;
  margin-left: 220px;
}

.svc-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  background: var(--red-light);
  border: 1px solid rgba(232, 58, 47, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.svc-card:hover .svc-icon {
  background: rgba(232, 58, 47, 0.13);
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.svc-desc {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 500;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-features li {
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.svc-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}

.gallery-head {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-head .section-sub {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--card-shadow);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.15);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  height: 260px;
}

.gallery-item:nth-child(2) {
  height: 260px;
}

.gallery-item:nth-child(3) {
  height: 200px;
}

.gallery-item:nth-child(4) {
  height: 200px;
}

.gallery-item:nth-child(5) {
  grid-column: span 1;
  height: 200px;
}

.gallery-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(135deg, #25335d 0%, #0027b4 100%);
  position: relative;
  overflow: hidden;
}

.gallery-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232, 58, 47, 0.12), transparent 60%);
}

.gallery-img-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.gallery-sub {
  font-size: 14px;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--bg2);
}

.pricing-head {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-head .section-sub {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--card-shadow);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 27, 62, 0.12);
}

.price-card.featured {
  background: linear-gradient(135deg, #25335d 0%, #0027b4 100%);
  border-color: #fff;
  box-shadow: 0 12px 48px rgba(13, 27, 62, 0.3);
}

.price-card.featured:hover {
  box-shadow: 0 20px 60px rgba(13, 27, 62, 0.4);
}

.price-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.price-plan {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.price-card.featured .price-plan {
  color: #fff;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-amount sup {
  font-size: 22px;
  vertical-align: super;
  margin-right: 2px;
  color: var(--red);
}

.price-amount sub {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray);
}

.price-card.featured .price-amount sub {
  color: #fff;
}

.price-desc {
  font-size: 13px;
  color: var(--gray);
  margin: 14px 0 28px;
  line-height: 1.6;
}

.price-card.featured .price-desc {
  color: #fff;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.1);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: var(--gray2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-features li {
  color: #fff;
}

.price-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-card.featured .price-check {
  background: rgba(232, 58, 47, 0.25);
}

.price-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.price-btn-outline {
  border: 2px solid var(--border);
  color: var(--navy);
}

.price-btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.price-btn-solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 58, 47, 0.4);
}

.price-btn-solid:hover {
  background: #C42E24;
  box-shadow: 0 6px 28px rgba(232, 58, 47, 0.5);
  transform: translateY(-1px);
}

/* ── WHY US ── */
.why {
  padding: 100px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 480px;
}

.why-circle-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 3px solid rgba(13, 27, 62, 0.1);
  animation: rotateSlow 20s linear infinite;
}

.why-circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px dashed rgba(232, 58, 47, 0.2);
  animation: rotateSlow 12s linear infinite reverse;
}

.why-circle-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 58, 47, 0.1), rgba(232, 58, 47, 0.02));
  border: 1px solid rgba(232, 58, 47, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-circle-core svg {
  width: 40px;
  height: 40px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes rotateSlow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(232, 58, 47, 0.5);
}

.why-pill {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.08);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid rgba(232, 58, 47, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-style: italic;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--navy);
}

.why-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 100px 0;
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--navy), transparent);
  opacity: 0.2;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.08);
  font-style: italic;
}

.process-step:hover .step-circle {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(232, 58, 47, 0.35);
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.step-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
  box-shadow: var(--card-shadow);
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 12px 36px rgba(232, 58, 47, 0.1);
}

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars span {
  color: var(--amber);
  font-size: 20px;
}

.testi-quote {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.testi-role {
  font-size: 12px;
  color: var(--gray);
}

/* ── CONTACT FORM ── */
.contact-section {
  padding: 100px 0;
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-light);
  border: 1px solid rgba(232, 58, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.contact-info-value a {
  text-decoration: none;
  color: var(--navy);
}

.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--card-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg2);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 58, 47, 0.08);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 58, 47, 0.35);
}

.form-submit:hover {
  background: #C42E24;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232, 58, 47, 0.45);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray);
}

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #162248 50%, #0D1B3E 100%);
  border-radius: 24px;
  padding: 35px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 27, 62, 0.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232, 58, 47, 0.14) 0%, transparent 70%);
}

.cta-box .section-title {
  font-size: clamp(28px, 4vw, 54px);
  margin-bottom: 16px;
  color: #fff;
}

.cta-box .section-sub {
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
}

.cta-box .section-tag {
  color: var(--red);
  justify-content: center;
}

.cta-box .section-tag::before {
  background: var(--red);
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-box .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.cta-box .btn-outline:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(232, 58, 47, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 6% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: #fff;
}

.footer-bottom span {
  color: var(--red);
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waBounce 2s ease infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waBounce {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE 900px ── */
@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 0px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-left: -38px;
  }

  .hero-stats{gap:11px;}

  .hero-desc{max-width:350px;}

  .hero-img{max-width:4800px;}

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 48px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ── MOBILE 600px ── */
@media (max-width: 600px) {
  footer {
    padding: 48px 5% 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 12px auto 0;
  }

  .footer-brand .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h5 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-col ul {
    align-items: center;
    gap: 8px;
  }

  .footer-col ul li a {
    justify-content: center;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .contact-items {
    align-items: center;
  }

  .contact-item {
    font-size: 12px;
    justify-content: center;
  }

  .wa-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .wa-btn svg {
    width: 26px;
    height: 26px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 0px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-left: -38px;
  }

   .hero-stats{gap:11px;}

   .hero-desc{max-width:350px;}

   .hero-img{max-width:480px;}
   
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .cta-box {
    padding: 36px 20px;
    border-radius: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MOBILE 400px ── */
@media (max-width: 400px) {
  footer {
    padding: 40px 4% 24px;
  }

  .footer-col h5 {
    font-size: 11px;
  }

  .footer-col ul li a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  .wa-btn {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(13, 27, 62, 0.15);
  border-radius: 6px;
  padding: 8px;
  transition: border-color 0.2s, background 0.2s;
  z-index: 200;
}

.hamburger:hover {
  border-color: var(--red);
  background: rgba(232, 58, 47, 0.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--red);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--red);
}

/* ── MOBILE DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid rgba(13, 27, 62, 0.1);
  z-index: 150;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  box-shadow: -8px 0 40px rgba(13, 27, 62, 0.15);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

/* ── OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 62, 0.45);
  backdrop-filter: blur(4px);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE NAV LINKS ── */
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:active {
  background: rgba(232, 58, 47, 0.06);
  color: var(--red);
  border-left-color: var(--red);
  padding-left: 22px;
}

.mobile-menu ul li a .link-num {
  font-family: monospace;
  font-size: 11px;
  color: var(--red);
  font-weight: 400;
  min-width: 22px;
  opacity: 0.7;
}

/* ── MOBILE CTA ── */
.mobile-cta {
  display: block;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(232, 58, 47, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.mobile-cta:hover {
  background: #C42E24;
  transform: translateY(-1px);
}

/* ── MOBILE MENU FOOTER ── */
.mobile-menu-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 27, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #718096;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu-info a:hover {
  color: var(--red);
}

.mobile-menu-info svg {
  width: 15px;
  height: 15px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── SHOW HAMBURGER ON MOBILE ── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none !important;
  }
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: #f5f1eb;
  border: 1.5px solid #d4cfc8;
  margin-bottom: 28px;
  border-radius: 18px;
}

.captcha-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.captcha-eq {
  color: #8c8880;
  font-size: 1.2rem;
}

.captcha-input {
  border: none;
  border-bottom: 1.5px solid #d4cfc8 !important;
  width: 60px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0 !important;
}

.captcha-label {
  margin-left: auto;
  font-size: 0.68rem;
  color: #8c8880;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── FAQ SECTION ── */
.faq {
  padding: 100px 0;
  background: var(--bg2, #F4F6F9);
}

.faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-head .section-sub {
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.06);
}

.faq-item:hover {
  border-color: rgba(232, 58, 47, 0.3);
  box-shadow: 0 4px 24px rgba(232, 58, 47, 0.08);
}

.faq-item.open {
  border-color: rgba(232, 58, 47, 0.4);
  box-shadow: 0 4px 24px rgba(232, 58, 47, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(232, 58, 47, 0.03);
}

.faq-item.open .faq-question {
  background: rgba(232, 58, 47, 0.04);
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-num {
  font-family: monospace;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: #E53935;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 27, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  background: transparent;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #0D1B3E;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  background: #E53935;
  border-color: #E53935;
}

.faq-item.open .faq-icon svg {
  stroke: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.8;
  border-left: 3px solid #E53935;
  padding-left: 16px;
  margin: 0;
}

/* Bottom CTA strip */
.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--navy);
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
  box-shadow: 0 2px 20px rgba(13, 27, 62, 0.06);
}

.faq-cta p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.7;
}

.faq-cta strong {
  color: #0D1B3E;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-q-text {
    font-size: 14px;
  }

  .faq {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 18px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 18px;
  }
}

.about-line-sub {
  display: block;
  font-size: 1.20em;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  background: #0a29a8;
}