/* ============================================
   ISTANBUL LOGISTICS FULFILLMENT SERVICES USA
   Stylesheet
   ============================================ */

:root {
  --navy-900: #0a1e4a;
  --navy-800: #0f2a5c;
  --navy-700: #163d7d;
  --navy-600: #1f4a96;
  --navy-500: #2e5fb3;
  --red-600: #c8202e;
  --red-500: #e02d3c;
  --red-400: #ef4555;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --gradient-brand: linear-gradient(135deg, #1f4a96 0%, #c8202e 100%);
  --gradient-navy: linear-gradient(135deg, #0a1e4a 0%, #163d7d 100%);
  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eef2f9 100%);
  --gradient-text: linear-gradient(135deg, #1f4a96 0%, #e02d3c 100%);
  --gradient-text-light: linear-gradient(135deg, #93c5fd 0%, #fca5a5 100%);

  --shadow-sm: 0 1px 2px rgba(15, 42, 92, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 92, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 42, 92, 0.12);
  --shadow-xl: 0 24px 70px rgba(15, 42, 92, 0.18);
  --shadow-glow: 0 20px 60px rgba(31, 74, 150, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --container: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-light {
  background: var(--gradient-text-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-700);
  padding: 6px 14px;
  background: rgba(31, 74, 150, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.eyebrow--center { display: inline-flex; }
.eyebrow--light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--red-500);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(224, 45, 60, 0.15);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(200, 32, 46, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(200, 32, 46, 0.4);
}
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-200, var(--gray-200));
}
.btn--ghost:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.topbar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}
.topbar__item a { transition: color 0.2s; }
.topbar__item a:hover { color: var(--red-400); }

/* Hide the · divider dots — spacing handles separation now */
.topbar__divider { display: none; }

/* Marketplace logos strip in topbar */
.topbar__marketplaces {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.topbar__marketplaces-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  white-space: nowrap;
}
.topbar__logos {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.bm-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: block;
  opacity: 1;
  transition: all 0.2s var(--ease-out);
}
.bm-icon:hover {
  transform: scale(1.12);
}

/* Hide the tagline earlier so phone + email don't get crowded */
@media (max-width: 1024px) {
  .topbar__item--hide { display: none; }
}
@media (max-width: 640px) {
  .topbar__inner { gap: 10px 16px; }
  .topbar__left { gap: 6px 16px; font-size: 12px; }
}

/* Language toggle pill */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  padding: 3px;
  position: relative;
  flex-shrink: 0;
}
.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.lang-toggle__btn:hover {
  color: rgba(255, 255, 255, 0.95);
}
.lang-toggle__btn.is-active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.lang-toggle__flag {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 480px) {
  .lang-toggle__btn { padding: 5px 10px; }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}
.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.brand:hover { transform: scale(1.02); }

/* Container crops the JPEG's built-in whitespace so the actual mark
   reads larger and fills the header banner. */
.brand__logo {
  width: 300px;
  height: 86px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.brand__logo img {
  width: 130%;
  height: auto;
  margin-left: -15%;
  object-fit: contain;
  display: block;
}

@media (max-width: 920px) {
  .brand__logo {
    width: 260px;
    height: 76px;
  }
}
@media (max-width: 480px) {
  .brand__logo {
    width: 220px;
    height: 66px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.nav a:hover {
  color: var(--navy-800);
  background: var(--gray-100);
}
.nav__cta { margin-left: 8px; }
.nav__cta:hover { background: var(--gradient-brand) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 340px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s var(--ease-out);
    z-index: 99;
  }
  .nav.is-open { right: 0; }
  .nav a { padding: 16px; font-size: 16px; text-align: left; }
  .nav__cta { margin: 16px 0 0; }
  .hamburger { display: flex; z-index: 101; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 74, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 74, 150, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__bg-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(31, 74, 150, 0.35), transparent 70%);
  top: -150px; left: -100px;
}
.hero__bg-glow--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(200, 32, 46, 0.25), transparent 70%);
  bottom: -100px; right: -80px;
}

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

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  font-size: 14px;
  color: var(--gray-600);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust svg {
  width: 16px; height: 16px;
  color: var(--red-500);
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease-out);
}
.hero__card:hover { transform: rotate(0deg); }

.hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.hero__badge strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 18px;
}
.hero__badge span {
  color: var(--gray-500);
  font-size: 12px;
}
.hero__badge--top {
  top: 30px; left: -40px;
  animation-delay: 0s;
}
.hero__badge--bottom {
  bottom: 40px; right: -30px;
  animation-delay: 1.5s;
}

.hero__badge-icon {
  width: 40px; height: 40px;
  background: rgba(31, 74, 150, 0.1);
  color: var(--navy-700);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 22px; height: 22px; }
.hero__badge-icon--red {
  background: rgba(200, 32, 46, 0.1);
  color: var(--red-600);
}

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

@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .hero__badge--top { left: -10px; }
  .hero__badge--bottom { right: 0; }
}

/* ============================================
   PHOTO SLOTS (placeholders for user photos)
   ============================================ */

.photo-slot {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #1f4a96 0%, #0a1e4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 32, 46, 0.2), transparent 50%);
}
.photo-slot__inner {
  position: relative;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px;
}
.photo-slot__inner svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.5;
}
.photo-slot__inner p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.photo-slot__inner span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
  opacity: 0.7;
}
.photo-slot--tall { aspect-ratio: 4 / 5; }

/* Real photos: fill their parent cards completely */
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 50px 0;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}

/* ============================================
   MARKETPLACES SHOWCASE
   ============================================ */

.marketplaces {
  padding: 90px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.marketplaces__head {
  text-align: center;
  margin-bottom: 48px;
}
.marketplaces__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.marketplaces__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.marketplace {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  min-height: 130px;
}
.marketplace:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.marketplace__icon {
  width: 52px;
  height: 52px;
  display: block;
  transition: transform 0.3s var(--ease-out);
}
.marketplace:hover .marketplace__icon {
  transform: scale(1.08);
}
.marketplace span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .marketplaces { padding: 70px 0; }
  .marketplaces__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .marketplaces__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .marketplaces { padding: 56px 0; }
  .marketplaces__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .marketplace { padding: 22px 14px; min-height: 110px; }
  .marketplace__icon { width: 44px; height: 44px; }
  .marketplace span { font-size: 12.5px; }
}

/* ============================================
   GENERIC SECTION
   ============================================ */

.section {
  padding: 100px 0;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.section__title--light { color: var(--white); }
.section__sub {
  font-size: 17px;
  color: var(--gray-600);
}
.section__sub--left { text-align: left; }

/* ============================================
   SERVICES
   ============================================ */

.services {
  background: var(--gray-50);
  position: relative;
}

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

.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-out);
}
.service__icon svg { width: 28px; height: 28px; }
.service__icon--blue {
  background: rgba(31, 74, 150, 0.1);
  color: var(--navy-700);
}
.service__icon--red {
  background: rgba(200, 32, 46, 0.1);
  color: var(--red-600);
}
.service:hover .service__icon { transform: scale(1.08) rotate(-3deg); }

.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service p {
  color: var(--gray-600);
  font-size: 15px;
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY US
   ============================================ */

.why {
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why__visual {
  position: relative;
}
.why__visual .photo-slot {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.why__floating {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why__floating strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 16px;
}
.why__floating span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
}
.why__floating-icon {
  width: 44px; height: 44px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__floating-icon svg { width: 22px; height: 22px; }

.why__list {
  list-style: none;
  margin-top: 36px;
  display: grid;
  gap: 22px;
}
.why__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why__list-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(31, 74, 150, 0.08);
  color: var(--navy-700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.why__list-icon svg { width: 22px; height: 22px; }
.why__list li:hover .why__list-icon {
  background: var(--gradient-brand);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.why__list h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.why__list p { color: var(--gray-600); font-size: 15px; }

@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr; gap: 60px; }
  .why__visual { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-500);
}
.step__num {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(200, 32, 46, 0.25);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: 14.5px; }

@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
}
@media (max-width: 480px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  background: var(--white);
}
.about__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about__text {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 24px 0 36px;
}

/* ============================================
   QUOTE SECTION + FORM
   ============================================ */

.quote {
  background: var(--gradient-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote::before, .quote::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.quote::before {
  width: 600px; height: 600px;
  background: rgba(31, 74, 150, 0.4);
  top: -200px; left: -200px;
}
.quote::after {
  width: 500px; height: 500px;
  background: rgba(200, 32, 46, 0.25);
  bottom: -150px; right: -100px;
}

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

.quote__copy .section__title { margin-bottom: 20px; }
.quote__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16.5px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.quote__points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.quote__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.quote__points svg {
  width: 18px; height: 18px;
  color: #4ade80;
  flex-shrink: 0;
}

.quote__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 14px;
  transition: all 0.3s;
}
.quote__contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.quote__contact-item svg { width: 16px; height: 16px; }

/* Form */
.quote__form {
  background: var(--white);
  color: var(--gray-800);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.quote__form-hp {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.quote__form-title {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--navy-900);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field label span { color: var(--red-600); }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 74, 150, 0.1);
}
.field textarea { resize: vertical; min-height: 100px; }

.checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.check {
  position: relative;
  display: block;
  cursor: pointer;
}
.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-700);
  transition: all 0.2s;
}
.check:hover span {
  border-color: var(--navy-500);
  color: var(--navy-700);
}
.check input:checked + span {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.quote__form-note {
  margin-top: 16px;
  font-size: 12.5px;
  text-align: center;
  color: var(--gray-500);
}
.quote__form-note strong { color: var(--navy-700); }

.quote__success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  animation: fadeIn 0.4s var(--ease-out);
}
.quote__success[hidden] {
  display: none;
}
.quote__success-icon {
  width: 80px; height: 80px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pop 0.5s var(--ease-spring);
}
.quote__success-icon svg { width: 40px; height: 40px; }
.quote__success h4 { font-size: 24px; margin-bottom: 8px; color: var(--navy-900); }
.quote__success p { color: var(--gray-600); max-width: 360px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@media (max-width: 900px) {
  .quote__grid { grid-template-columns: 1fr; gap: 50px; }
  .quote__form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .checks { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #050d24;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 360px;
}
.footer__logo {
  height: 70px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
  object-fit: contain;
}
.footer__col h5 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer__col ul {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.footer__col a {
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer__col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer__bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .footer { padding-top: 60px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FLOATING CTA
   ============================================ */

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(200, 32, 46, 0.4);
  z-index: 50;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-out), box-shadow 0.3s;
}
.float-cta svg { width: 18px; height: 18px; }
.float-cta.is-visible { transform: translateY(0); }
.float-cta:hover {
  box-shadow: 0 18px 40px rgba(200, 32, 46, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .float-cta span { display: none; }
  .float-cta { padding: 16px; }
  .float-cta svg { width: 22px; height: 22px; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__badge { animation: none; }
  html { scroll-behavior: auto; }
}
