/* =========================
   1. BASE / RESET
========================= */
:root {
  --bg: #000000;
  --bg-soft: #0b0b0b;
  --card: #111111;
  --card-2: #171717;
  --border: #262626;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  animation: fadeIn 0.6s ease;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   2. LAYOUT
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 96px 20px;
  border-bottom: 1px solid var(--border);
}

section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
}

section p {
  margin-bottom: 20px;
  color: var(--muted);
}

/* =========================
   3. HEADER / NAV
========================= */
header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid #1f2933;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-path {
  color: white;
}

.logo-load {
  color: var(--accent);
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
  background: transparent;
  border: none;
  color: white;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

nav a.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

/* =========================
   4. HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: url("Main hero.jpeg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.32),
    rgba(0, 0, 0, 0.78) 60%,
    rgba(0, 0, 0, 0.95)
  );
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  animation: heroFade 1s ease forwards;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero p {
  margin: 18px auto 0;
  font-size: 1.05rem;
  max-width: 620px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* =========================
   5. BUTTONS
========================= */
.btn-primary,
.btn-secondary,
.store-btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 13px 20px;

  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;

  border: 1px solid transparent; 
  outline: none; 

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(249, 115, 22, 0.55);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================
   6. GLOBAL CARD / ICON
========================= */
.card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.18);
}

.icon,
.insight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
}

.icon i,
.insight-icon i,
.insight-icon svg {
  font-size: 1.2rem;
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

/* =========================
   7. WHY SECTION
========================= */
.why,
.refunds {
  max-width: 1100px;
  margin: auto;
}

.why-grid,
.refund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card,
.refund-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  padding: 24px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.why-card:hover,
.refund-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.12);
}

.why-card h3,
.refund-card h3 {
  font-weight: 600;
}

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

/* =========================
   8. SERVICES
========================= */
.services-content {
  text-align: center;
}

.services-grid {
  margin-top: 40px;
}

.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* =========================
   9. APP SHOWCASE
========================= */
.app-showcase {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(249, 115, 22, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #090909, #000);
}

.app-showcase-inner {
  max-width: 1200px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.app-text {
  max-width: 560px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.app-text h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 700;
}

.app-text p {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 1.02rem;
  font-weight: 400;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-btn {
  min-width: 200px;
  justify-content: flex-start;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #242424;
  box-shadow: var(--shadow);
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.store-btn i {
  font-size: 1.5rem;
}

.store-btn small {
  display: block;
  font-size: 0.72rem;
  color: #cfcfcf;
  font-weight: 400;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.android-btn {
  background: linear-gradient(135deg, #16351f, #1f6f3d);
}

/* PHONE */
.app-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 610px;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(145deg, #1d1d1d, #090909);
  border: 1px solid #2d2d2d;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 70px rgba(249, 115, 22, 0.1);
  transition: transform 0.35s ease;
}

.phone-frame:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050505;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 32px;
  padding: 34px 16px 16px;
  background: radial-gradient(
      circle at top,
      rgba(249, 115, 22, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, #101010, #050505);
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #d4d4d4;
  margin-bottom: 16px;
  font-weight: 500;
}

.phone-card {
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.phone-card.main {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111;
  padding: 24px 18px;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.25);
}

.phone-card.main p,
.phone-card.main span {
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 0;
  font-weight: 500;
}

.phone-card.main h3 {
  font-size: 1.5rem;
  margin: 4px 0;
  font-weight: 700;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-card strong {
  font-weight: 600;
}

.feature-card p {
  margin: 2px 0 0;
  font-size: 0.88rem;
  color: #a3a3a3;
  font-weight: 400;
}

.feature-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

/* =========================
   10. INSIGHTS
========================= */
.insights {
  background: radial-gradient(circle at top, #0a0a0a, #000);
  text-align: center;
}

.insights-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.insights-header p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-weight: 400;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.insights-cta {
  margin-top: 40px;
}

/* =========================
   11. EXPANDABLE CARDS
========================= */
.expand-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
  text-align: left;
}

.expand-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.18);
}

.expand-card-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.expand-card-summary {
  flex: 1;
}

.expand-card-summary h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.expand-card-summary p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 400;
}

.learn-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.expand-card:hover .learn-more,
.expand-card.active .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.expand-card-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.expand-card.active .expand-card-content {
  max-height: 220px;
  padding: 0 24px 24px;
}

.expand-card.active {
  border-color: var(--accent);
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.22);
}

/* =========================
   12. STORY
========================= */
.story {
  text-align: center;
}

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

.story-label {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

.story h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.story-text {
  max-width: 750px;
  margin: 0 auto 40px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
}

.story-text::before {
  display: none;
}

.story-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.12);
}

.story-card::before {
  content: "“";
  font-size: 3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.story-highlight {
  color: var(--accent);
  font-weight: 600;
}

/* =========================
   13. CONTACT
========================= */
.contact-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0a0a0a, #000);
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header p {
  color: var(--muted);
  font-weight: 400;
}

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

.contact-card,
.contact-form {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 25px;
}

.contact-card h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item p {
  margin-bottom: 4px;
}

.contact-item strong {
  font-weight: 500;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #050505;
  border: 1px solid #222;
  padding: 13px 14px;
  border-radius: 10px;
  color: white;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit-btn {
  margin-top: 22px;
  width: 100%;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  min-height: 24px;
  font-weight: 500;
}

.form-status.success {
  color: #22c55e;
}

.form-status.error {
  color: #ef4444;
}

.contact-icon svg,
.contact-form svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

/* =========================
   14. FOOTER
========================= */
.footer {
  background: #000;
  color: var(--text);
  padding: 70px 20px 25px;
  border-top: 1px solid #1f1f1f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 35px;
  border-bottom: 1px solid #222;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 2rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 420px;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 400;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
}

.footer-contact-item span {
  font-weight: 500;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.25s ease;
  font-weight: 500;
}

.footer-links-list a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.social-icons a svg,
.social-icons a i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
}

.footer-bottom p {
  color: #b3b3b3;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 400;
}

/* =========================
   15. FLOATING BUTTON
========================= */
.floating-download {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  z-index: 40;
}

.floating-download.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.34);
}

@media (min-width: 1024px) {
  .floating-download {
    display: none;
  }
}

/* =========================
   16. TEXT / ANIMATION
========================= */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), #ff9a4d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =========================
   17. RESPONSIVE
========================= */
@media (max-width: 980px) {
  .app-grid,
  .contact-grid,
  .services-grid-inner,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .app-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .app-buttons {
    justify-content: center;
  }

  .why-grid,
  .refund-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 20px;
    background: #000;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
    min-width: 200px;
  }

  nav.active {
    display: flex;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 20px;
  }

  .hero {
    min-height: 72vh;
    padding: 80px 20px 40px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .phone-frame {
    width: 270px;
    height: 550px;
  }

  .expand-card-toggle {
    padding: 20px;
  }

  .store-btn {
    width: 100%;
    min-width: unset;
  }

  .story-card {
    padding: 28px;
  }

  .floating-download {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* =========================
   INSIGHTS HERO
========================= */
.insights-hero {
  padding: 110px 20px 80px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 30%),
    linear-gradient(180deg, #050505, #000);
}

.insights-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.insights-hero-text {
  max-width: 620px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 600;
}

.insights-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 800;
}

.insights-hero p {
  max-width: 590px;
  color: #a3a3a3;
  font-size: 1.03rem;
  margin-bottom: 18px;
}

.insights-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-mini-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.mini-stat {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, #101010, #0a0a0a);
  border: 1px solid #222;
}

.mini-stat strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mini-stat span {
  color: #9ca3af;
  font-size: 0.92rem;
}

.insights-hero-media {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   WHY PLATFORM SECTION
========================= */
.why-platform-section {
  padding: 90px 20px;
  background: #000;
}

.why-platform-wrap {
  max-width: 1100px;
}

.why-platform-header {
  max-width: 920px;
  margin: 0 auto 48px;
}

.why-platform-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-platform-header p {
  color: #c0c0c0;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.why-feature-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid #222;
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-feature-card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.12);
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #f97316;
}

.why-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-feature-card p {
  color: #a3a3a3;
  line-height: 1.65;
  margin: 0;
}

/* =========================
   INDUSTRY DETAIL SECTION
========================= */
.industry-detail-section {
  padding: 100px 20px;
  background: #000;
}

.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 90px;
}

.industry-row.reverse .industry-copy {
  order: 2;
}

.industry-row.reverse .industry-image {
  order: 1;
}

.industry-badge {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.industry-badge svg {
  width: 26px;
  height: 26px;
  stroke: #f97316;
}

.industry-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 560px;
}

.industry-copy p {
  max-width: 560px;
  color: #b3b3b3;
  line-height: 1.75;
  font-size: 1.02rem;
}

.industry-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  display: block;
  border: 1px solid #222;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .insights-hero-grid,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .insights-hero-text {
    max-width: 100%;
  }

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

  .industry-row.reverse .industry-copy,
  .industry-row.reverse .industry-image {
    order: initial;
  }
}

@media (max-width: 640px) {
  .insights-hero {
    padding: 90px 20px 60px;
  }

  .insights-hero h1 {
    font-size: 2.2rem;
  }

  .why-feature-card h3 {
    font-size: 1.25rem;
  }

  .industry-row {
    gap: 28px;
    margin-bottom: 64px;
  }
}

/* =========================
   TRANSPORT MATTERS
========================= */
.transport-matters-section {
  padding: 90px 20px;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  background: #000;
}

.transport-matters-wrap {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.transport-matters-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.transport-matters-header p {
  max-width: 860px;
  margin: 0 auto 34px;
  color: #b3b3b3;
  line-height: 1.7;
}

.transport-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.transport-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 18px 16px;
  border-radius: 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #f3f4f6;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.transport-pill:hover {
  transform: translateY(-3px);
  border-color: #f97316;
}

.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f97316;
  display: inline-block;
}

@media (max-width: 980px) {
  .transport-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .transport-pill-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHO SHOULD USE
========================= */
.who-should-use-section {
  padding: 90px 20px;
  background: #000;
}

.who-should-use-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.who-should-use-header {
  text-align: center;
  margin-bottom: 34px;
}

.who-should-use-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.use-case-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0c0c0c, #080808);
  border: 1px solid #202020;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: #f97316;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.08);
}

.use-case-card p {
  margin: 0;
  color: #f3f4f6;
  line-height: 1.6;
}

.use-case-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.use-case-icon svg {
  width: 18px;
  height: 18px;
  stroke: #f97316;
}

@media (max-width: 768px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   INSIGHTS CTA
========================= */
.insights-cta-banner {
  padding: 95px 20px;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.14), transparent 40%),
    linear-gradient(180deg, #170700, #120500);
}

.insights-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.insights-cta-inner h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
}

.insights-cta-inner p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #c7c7c7;
  font-size: 1.08rem;
  line-height: 1.7;
}

.insights-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   CAREERS HERO
========================= */
.careers-hero {
  padding: 110px 20px 70px;
  border-bottom: 1px solid #171717;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(180deg, #050505, #000);
}

.careers-hero-inner {
  text-align: center;
}

.careers-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
}

/* =========================
   CAREERS SECTION
========================= */
.careers-section {
  padding: 80px 20px 100px;
  background: #000;
}

.careers-section-inner {
  max-width: 1100px;
}

.careers-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.careers-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.careers-header p {
  color: #b3b3b3;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
}

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

.career-card {
  background: linear-gradient(145deg, #141414, #101010);
  border: 1px solid #252525;
  border-radius: 22px;
  padding: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.12);
}

.career-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.career-card-icon.neutral {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.career-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #f97316;
}

.career-card-icon.neutral svg {
  stroke: #d1d5db;
}

.career-card h3 {
  font-size: 1.95rem;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}

.career-card p {
  color: #b3b3b3;
  line-height: 1.75;
  font-size: 1.03rem;
  margin-bottom: 30px;
  max-width: 95%;
}

.career-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f97316;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.career-link span {
  font-size: 1.4rem;
  line-height: 1;
}

.btn-link {
  text-align: left;
}

/* =========================
   MODAL
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #171717, #111111);
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #242424;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: #bdbdbd;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.partnership-form {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
}

.partnership-form label {
  margin-top: 14px;
  margin-bottom: 7px;
  font-size: 0.95rem;
  color: #d1d5db;
  font-weight: 500;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
  background: #050505;
  border: 1px solid #242424;
  color: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
  color: #808080;
}

.partnership-form input:focus,
.partnership-form select:focus,
.partnership-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.partnership-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 26px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  color: #22c55e;
}

.form-status.error {
  color: #ef4444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .career-card {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .careers-hero {
    padding: 90px 20px 55px;
  }

  .careers-hero h1 {
    font-size: 2.4rem;
  }

  .careers-section {
    padding: 65px 20px 80px;
  }

  .career-card {
    padding: 24px;
  }

  .career-card h3 {
    font-size: 1.6rem;
  }

  .modal-header h3 {
    font-size: 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================
   TURNSTILE
========================= */

.cf-turnstile {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}