/* RYDT AIR — Sections CSS (Complete, Organized & Pristine) */

/* ── GLOBAL ICON & SVG CONSTRAINTS (CRITICAL FIX) ── */
svg { 
  max-width: 100% !important; 
  height: auto !important; 
  display: inline-block; 
  vertical-align: middle;
}
/* Force specific icon sizes */
.mega-icon svg, .stat-icon svg, .about-check-icon svg, .bento-icon svg, .testimonial-stars svg {
  width: 24px !important; height: 24px !important;
}
.dropdown-arrow svg, .bento-link svg, .service-learn-more svg, .why-pillar-icon svg {
  width: 18px !important; height: 18px !important;
}

/* ── HERO UPGRADED (Item 1-13) ── */
.rydt-hero { 
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; 
  padding-top: clamp(100px, 15vh, 160px);
  padding-bottom: clamp(60px, 10vh, 140px);
  justify-content: center; position: relative;
  /* overflow: visible to prevent clipping on mobile where content is tall */
  overflow: visible;
  isolation: isolate;
}
.rydt-hero-photo { position:absolute; inset:0; z-index:0; overflow:hidden; }
.rydt-hero-photo img {
  width:100%; height:100%; object-fit:cover; object-position:center;
}
.rydt-hero-photo::after {
  content:''; position:absolute; inset:0;
  /* Stronger gradient for better text contrast */
  background: linear-gradient(105deg, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0.85) 45%, rgba(10,10,15,0.6) 100%);
}
.rydt-hero-grid-overlay {
  position:absolute; inset:0; z-index:1;
  background-image: radial-gradient(rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size:50px 50px;
}
.rydt-hero .container { position: relative; z-index: 10; width: 100%; max-width: 1200px; padding: 0 24px; }

.hero-content { 
  text-align: center; margin: 0 auto; 
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-kicker {
  display:flex; align-items:center; gap:8px;
  padding:8px 20px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  border-radius:50px; font-size:0.7rem; font-weight:700; color:#FFFFFF;
  letter-spacing:1.5px; text-transform: uppercase;
  /* Prevent clipping on mobile */
  max-width: 100%; flex-wrap: wrap; justify-content: center;
  text-align: center; line-height: 1.4;
}
.hero-kicker .kicker-dot { width:6px; height:6px; background:var(--yellow-primary); border-radius:50%; }

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 900; line-height: 1.1;
  color: #FFFFFF; text-align: left; margin: 0; width: 100%;
}
.hero-headline em { font-style: italic; background: var(--liquid-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Georgia', serif; }

.hero-sub { font-size:1.15rem; color:rgba(255,255,255,0.85); max-width:680px; line-height:1.7; margin: 0 auto; }
.hero-actions { display:flex; flex-wrap:wrap; gap:16px; justify-content: center; }

.rydt-scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.7; z-index: 10; cursor: pointer; color: #fff;
  /* Ensure it stays within the hero section */
  pointer-events: none;
}
.rydt-scroll-indicator .chevron {
  width: 20px; height: 10px;
  border-left: 2px solid rgba(255,255,255,0.7); border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(-45deg);
  opacity: 0.6;
}

/* ── QUOTE/TRACK WIDGET (Item 14-17) ── */
.rydt-qt-outer {
  background: var(--bg-secondary);
  padding: 0 0 80px; /* Bottom padding gives breathing room before stats section */
}
.rydt-qt-widget {
  position: relative; z-index: 2;
  /* Widget floats up by 60px, overlapping the bottom of the hero */
  background: rgba(255,255,255,0.99); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(32px);
  box-shadow: var(--shadow-premium);
  max-width: 1100px; margin: -60px auto 0;
}
.qt-tabs { display:flex; gap:8px; margin-bottom:32px; background:var(--bg-secondary); border-radius:50px; padding:6px; width:fit-content; }
.qt-tab {
  padding:10px 24px; border-radius:50px; font-size:0.9rem; font-weight:700;
  cursor:pointer; border:none; background:transparent; color:var(--text-muted);
  transition:all 0.3s ease;
}
.qt-tab.active { background:var(--liquid-gold); color:#0A0A0F; box-shadow: 0 4px 15px rgba(245,197,24,0.3); }
.qt-panel { display:none; animation: fadeIn 0.4s ease forwards; }
.qt-panel.active { display:block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.qt-form-row { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:20px; align-items:end; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.form-control { 
  background: var(--bg-primary); border: 1.5px solid var(--border-subtle); 
  border-radius: 12px; padding: 12px 16px; font-size: 0.95rem; 
  transition: all 0.2s ease; 
}
.form-control:focus { border-color: var(--yellow-primary); outline: none; background: #fff; }

/* ── STATS BAND ── */
.rydt-stats-band { background: var(--ink-900); padding: 80px 0; position: relative; overflow: hidden; isolation: isolate; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat-item { display:flex; flex-direction:column; align-items:center; text-align:center; padding:24px; border-right: 1px solid var(--border-subtle); }
.stat-item:last-child { border-right: none; }
.stat-icon { width:56px; height:56px; background:var(--yellow-light); border-radius:14px; display:flex; align-items:center; justify-content:center; color:var(--yellow-primary); margin-bottom:20px; }
.stat-number { font-size:2.8rem; font-weight:900; color:var(--text-primary); line-height:1; letter-spacing: -1px; }
.stat-label { font-size:0.85rem; color:var(--text-muted); margin-top:8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SERVICES BENTO GRID (Item 23) ── */
.rydt-expertise { background: var(--bg-secondary); padding: 120px 0; isolation: isolate; }
.rydt-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 24px;
  align-items: stretch;
}
.bento-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  /* Prevent overflow from hover transforms bleeding into other sections */
  contain: layout;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-premium); border-color: var(--yellow-primary); }

/* Featured bento: column 1, spans both rows */
.bento-feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 0;
  contain: none; /* allow image overflow */
}
.bento-feature .bento-image { height: 280px; overflow: hidden; flex-shrink: 0; }
.bento-feature .bento-image img { width: 100%; height: 100%; object-fit: cover; }
.bento-feature .bento-content { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 14px; }

/* Small bento cells: column 2, one per row */
.bento-sm {
  grid-column: 2 / 3;
  grid-row: auto;
}

/* Accent bento: column 3, spans both rows */
.bento-sm-accent { 
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: var(--ink-900); color: #fff; 
  justify-content: center; 
  border: none;
}
.bento-sm-accent h3 { color: #fff; }
.bento-sm-accent p { color: rgba(255,255,255,0.7); }
.bento-sm-accent .bento-icon { background: rgba(255,255,255,0.1); color: var(--yellow-primary); }

.bento-tag { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow-deep); }
.bento-link { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink-900); text-decoration: none; margin-top: auto; }
.bento-sm-accent .bento-link { color: var(--yellow-primary); }

/* ── ABOUT BLOCK ── */
.rydt-about-block { background: var(--bg-primary); padding: 120px 0; isolation: isolate; }
.about-checks { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:32px 0; }
.about-check { display:flex; align-items:center; gap:12px; font-size:0.95rem; font-weight:600; color:var(--text-secondary); }
.about-check-icon { 
  width:28px; height:28px; background:var(--yellow-light); border-radius:50%; 
  display:flex; align-items:center; justify-content:center; color:var(--yellow-primary); 
  flex-shrink:0; 
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rydt-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-feature { grid-column: 1 / 2; grid-row: 1 / 2; min-height: 300px; }
  .bento-sm:first-of-type { grid-column: 2 / 3; }
  .bento-sm { grid-column: auto; grid-row: auto; }
  .bento-sm-accent { grid-column: 1 / 3; grid-row: auto; min-height: 240px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border-subtle); }
}
@media (max-width: 768px) {
  .rydt-hero { 
    min-height: auto;
    padding-top: 130px; 
    padding-bottom: 60px; 
    align-items: center; 
    justify-content: flex-start; 
  }
  .hero-content { text-align: center !important; width: 100% !important; margin: 0 auto !important; }
  .hero-headline { font-size: 1.8rem; text-align: center !important; line-height: 1.1; }
  .hero-sub { text-align: center !important; margin: 0 auto !important; font-size: 0.9rem; }
  .hero-kicker { font-size: 0.62rem; padding: 6px 16px; gap: 6px; }
  /* Bento: fully stacked on mobile */
  .rydt-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-feature,
  .bento-sm,
  .bento-sm-accent { grid-column: 1 / 2 !important; grid-row: auto !important; min-height: 260px; }
  .rydt-qt-widget { padding: 24px 16px; margin-top: -40px; }
  .rydt-scroll-indicator { display: none; }
  .qt-form-row { grid-template-columns: 1fr; }
}

/* ── QT WIDGET — SERVICE RADIO BUTTONS ── */
.qt-service-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.qt-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-secondary);
  user-select: none;
}
.qt-radio-label input[type="radio"] { display: none; }
.qt-radio-label:has(input:checked),
.qt-radio-label:hover {
  border-color: var(--yellow-primary);
  background: var(--yellow-light);
  color: var(--ink-900);
}

/* ── ABOUT IMAGE BLOCK ── */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--liquid-gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  z-index: 2;
}
.badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

/* Responsive about grid class */
.rydt-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── INDUSTRY SOLUTIONS ── */
.rydt-industry { background: var(--bg-secondary); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  aspect-ratio: 4/3;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.industry-card:hover img { transform: scale(1.08); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.4) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  transition: background 0.3s ease;
}
.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(10,10,15,0.97) 0%, rgba(10,10,15,0.6) 60%, transparent 100%);
}
.industry-chip {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--liquid-gold);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.industry-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}
.industry-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.industry-card:hover .industry-desc { max-height: 60px; }

/* ── HOW IT WORKS — PROCESS V2 ── */
.rydt-process-v2 { background: var(--bg-primary); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.process-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--yellow-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.process-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
}
.process-icon-wrap svg { width: 28px; height: 28px; }
.process-step:hover .process-icon-wrap {
  background: var(--liquid-gold);
  border-color: var(--yellow-primary);
  color: var(--ink-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.process-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── WHY CHOOSE US V2 ── */
.rydt-why-v2 { background: var(--bg-secondary); }
.why-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.why-pillar {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}
.why-pillar:hover {
  border-color: var(--yellow-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}
.why-pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
}
.why-pillar-icon svg { width: 22px; height: 22px; }
.why-pillar:hover .why-pillar-icon {
  background: var(--liquid-gold);
  color: var(--ink-900);
}
.why-pillar h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text-primary); }
.why-pillar p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.why-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}
.why-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.why-img:hover img { transform: scale(1.04); }

/* ── TESTIMONIALS ── */
.rydt-testimonials { background: var(--bg-primary); }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition-smooth);
}
.testimonial-card:hover {
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--yellow-primary); font-size: 1rem; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--liquid-gold);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* Swiper custom nav for testimonials */
.swiper-btn-prev,
.swiper-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
}
.swiper-btn-prev { left: -22px; }
.swiper-btn-next { right: -22px; }
.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--liquid-gold);
  border-color: var(--yellow-primary);
  color: var(--ink-900);
}
.swiper-btn-prev svg,
.swiper-btn-next svg { width: 18px; height: 18px; }
.swiper-btn-prev svg { transform: rotate(180deg); }

/* ── WORLD MAP ── */
.rydt-world-map { background: var(--bg-secondary); }
.map-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.map-hub {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  z-index: 2;
}
.hub-dot {
  width: 14px;
  height: 14px;
  background: var(--yellow-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,197,24,0.25);
  animation: hubPulse 2.5s ease-in-out infinite;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,197,24,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(245,197,24,0.08); }
}
.hub-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

/* ── BLOG / NEWS ── */
.rydt-blog { background: var(--bg-primary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--yellow-primary);
}
.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--liquid-gold);
  color: var(--ink-900);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.blog-title a:hover { color: var(--yellow-primary); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: 4px;
}
.blog-read-more:hover { color: var(--yellow-deep); }

/* ── FAQ ACCORDION ── */
.rydt-faq { background: var(--bg-secondary); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: sticky;
  top: 100px;
}
.faq-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:has(.faq-answer:not([aria-hidden="true"])) {
  border-color: var(--yellow-primary);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--yellow-primary); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform 0.3s ease, color 0.2s ease;
  display: inline-block;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--yellow-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer:not([aria-hidden="true"]) {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── CTA STRIP ── */
.rydt-cta-strip {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.rydt-cta-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rydt-cta-strip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rydt-cta-strip-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.78) 100%);
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.cta-strip-text h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip-text p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── RESPONSIVE: NEW SECTIONS ── */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .process-steps::before { display: none; }
  .why-grid-v2 { grid-template-columns: 1fr; gap: 25px; }
  .why-img { order: -1; }
  .why-img img { height: 320px; }
  .faq-grid { grid-template-columns: 1fr; gap: 25px; }
  .faq-img { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-text p { margin: 0 auto; }
  .cta-strip-actions { justify-content: center; }
  .rydt-about-grid { grid-template-columns: 1fr; gap: 25px; }
  .about-img-main img { height: 340px; }
  .about-img-badge { right: 16px; bottom: -16px; }
}

@media (max-width: 768px) {
  .industry-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-pillars { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; }
  .swiper-btn-prev { left: 0; }
  .swiper-btn-next { right: 0; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .qt-service-radios { flex-direction: column; }
  .about-img-badge { display: none; }
}

/* ══════════════════════════════════════════════════════
   RYDT AIR — Premium Upgrade Styles
   ════════════════════════════════════════════════════ */

/* ── SECTION HEADER UTILITY ── */
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-label,
.section-header-center p { margin-left: auto; margin-right: auto; }
.section-header-center .section-label { justify-content: center; }

/* ── FORM INPUTS ── */
.rydt-label {
  display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px;
}
.rydt-input {
  width: 100%; background: var(--bg-primary); border: 1.5px solid var(--border-subtle);
  border-radius: 12px; padding: 12px 16px; font-size: 0.95rem;
  color: var(--text-primary); transition: all 0.2s ease; outline: none;
}
.rydt-input:focus { border-color: var(--yellow-primary); box-shadow: 0 0 0 3px rgba(245,197,24,0.1); }

/* ── BENTO ICON (missing from bento items) ── */
.bento-icon {
  width: 48px; height: 48px; background: var(--yellow-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; color: var(--yellow-primary); margin-bottom: 16px;
  flex-shrink: 0;
}
.bento-icon svg { width: 24px !important; height: 24px !important; }
.bento-sm-content { display: flex; flex-direction: column; gap: 10px; }

/* ── HERO — 2-COLUMN LAYOUT ── */
.rydt-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.rydt-hero-layout .hero-content {
  text-align: left; align-items: flex-start; margin: 0;
}
.rydt-hero-layout .hero-headline { text-align: left; }
.rydt-hero-layout .hero-sub { text-align: left; margin: 0; }
.rydt-hero-layout .hero-actions { justify-content: flex-start; }

/* Kicker live indicator */
.kicker-live {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 10px; background: rgba(74,222,128,0.12);
  border-radius: var(--radius-full); font-size: 0.7rem; color: #4ADE80;
}
.kicker-live-dot {
  width: 6px; height: 6px; background: #4ADE80; border-radius: 50%;
}

/* Hero CTA buttons */
.btn-hero { padding: 16px 36px; font-size: 1rem; }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-full);
  font-family: var(--font-primary); font-size: 1rem; font-weight: 600;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2); text-decoration: none;
  transition: all var(--transition-smooth); white-space: nowrap; cursor: pointer;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4);
  color: #fff; transform: translateY(-2px);
}

/* Hero trust row */
.hero-trust-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500;
}
.hero-trust-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ── HERO — LIVE SHIPMENT CARD ── */
.hero-widget-wrap { position: relative; padding: 30px 0 30px 0; overflow: visible; }
.hero-shipment-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 28px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,197,24,0.08);
}
.hero-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 24px;
}
.hero-card-eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px;
}
.hero-card-id { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.hero-live-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
  color: #4ADE80; white-space: nowrap;
}
.live-pulse {
  width: 7px; height: 7px; background: #4ADE80; border-radius: 50%;
}

/* Route visual */
.hero-route-visual {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero-port { text-align: center; flex-shrink: 0; }
.hero-port-code {
  font-size: 1.3rem; font-weight: 900; color: #fff;
  letter-spacing: 1px; font-family: var(--font-heading);
}
.hero-port-name { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-route-center { flex: 1; }
.hero-progress-track {
  position: relative; height: 4px; background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full); margin-bottom: 6px;
}
.hero-progress-fill {
  height: 100%; background: var(--liquid-gold); border-radius: var(--radius-full);
}
.hero-plane-icon {
  position: absolute; top: 50%; transform: translate(-50%, -55%);
  color: var(--yellow-primary);
}
.hero-route-eta {
  font-size: 0.7rem; color: rgba(255,255,255,0.5); text-align: center; white-space: nowrap;
}

/* Shipment info grid */
.hero-shipment-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px;
}
.hero-shipment-item {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-md);
  padding: 10px 14px; display: flex; flex-direction: column; gap: 3px;
}
.hero-shipment-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); font-weight: 600;
}
.hero-shipment-value { font-size: 0.88rem; font-weight: 700; color: #fff; }
.hero-val-transit { color: var(--yellow-primary) !important; }
.hero-val-ontime { color: #4ADE80 !important; }
.hero-card-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px; border-radius: var(--radius-lg);
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2);
  color: var(--yellow-primary); font-size: 0.88rem; font-weight: 700;
  text-decoration: none; transition: all var(--transition-fast);
}
.hero-card-cta:hover {
  background: rgba(245,197,24,0.18); border-color: rgba(245,197,24,0.4);
  color: var(--yellow-primary);
}

/* Hero floating stat badges */
/* ── PARTNER LOGO CLOUD ── */
.rydt-partner-cloud {
  background: var(--bg-primary); padding: 48px 0;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.partner-eyebrow {
  text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px;
}
.logo-track-wrap { position: relative; overflow: hidden; }
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.logo-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }

.logo-track {
  display: flex; align-items: center; gap: 25px;
  animation: logoScroll 40s linear infinite; width: max-content;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 25px; background: #ffffff;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); flex-shrink: 0;
  transition: all var(--transition-base);
  width: 220px;
}
.logo-item:hover { 
  border-color: var(--yellow-primary); 
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.logo-item img {
  height: 70px; width: auto; max-width: 170px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}


.rydt-stats-band .stat-item { border-right-color: rgba(255,255,255,0.07); }
.rydt-stats-band .stat-number { color: #fff; }
.rydt-stats-band .stat-label { color: rgba(255,255,255,0.55); }
.rydt-stats-band .stat-icon { background: rgba(245,197,24,0.12); }
.stats-band-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}
.rydt-stats-band .container { position: relative; z-index: 1; }

/* ── ABOUT — FLOATING METRIC CARDS ── */
.about-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12); z-index: 3;
  border: 1px solid var(--border-subtle);
  min-width: 170px;
}
.about-float-card-1 {
  top: 28px; left: -28px;
  animation: floatCardA 4s ease-in-out infinite alternate;
}
.about-float-card-2 {
  bottom: 132px; right: -28px;
  animation: floatCardB 4s ease-in-out 1s infinite alternate;
}
@keyframes floatCardA { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes floatCardB { from { transform: translateY(0); } to { transform: translateY(6px); } }
.about-float-icon {
  width: 36px; height: 36px; background: var(--yellow-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-primary); flex-shrink: 0;
}
.about-float-num { font-size: 1.2rem; font-weight: 900; color: var(--ink-900); line-height: 1; }
.about-float-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.about-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 20px; letter-spacing: -0.02em;
}
.about-headline em { font-style: italic; color: var(--yellow-primary); font-family: 'Georgia', serif; }
.about-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }

/* ── INDUSTRY — FEATURED CARD + PREMIUM GRID ── */
.industry-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card-featured {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4/3;
  min-height: 0;
}
.industry-card-featured .industry-desc { max-height: none !important; }
.industry-learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; font-size: 0.82rem; font-weight: 700;
  color: var(--yellow-primary); text-decoration: none;
  transition: gap var(--transition-fast);
}
.industry-learn-more:hover { gap: 10px; color: var(--yellow-primary); }

.why-model-card {
  text-align: center;
}

.why-model-header {
  margin-bottom: 0;
}

.why-model-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.why-model-item {
  justify-content: center;
  gap: 12px;
  min-height: 180px;
}

.why-model-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  max-width: 240px;
}

.why-model-copy {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ── PROCESS — GHOST NUMBERS ── */
.process-ghost-num {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 6rem; font-weight: 900; color: rgba(0,0,0,0.04);
  font-family: var(--font-heading); line-height: 1; user-select: none;
  pointer-events: none; z-index: 0; letter-spacing: -2px;
}

/* ── DARK SECTION ── */
.rydt-dark-section { background: var(--ink-900) !important; }
.rydt-dark-section .section-label { color: rgba(255,255,255,0.5); }
.rydt-dark-section .section-label::before { background: var(--gradient-yellow); }
.rydt-dark-section .why-pillar {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
}
.rydt-dark-section .why-pillar:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(245,197,24,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.rydt-dark-section .why-pillar h4 { color: #fff; }
.rydt-dark-section .why-pillar p { color: rgba(255,255,255,0.6); }

.why-headline {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.why-headline em { font-style: italic; color: var(--yellow-primary); font-family: 'Georgia', serif; }
.why-intro { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 32px; }
.why-pillar-num {
  display: block; font-size: 0.65rem; font-weight: 900; letter-spacing: 2px;
  color: var(--yellow-primary); margin-bottom: 12px; font-family: var(--font-heading);
}

/* ── TESTIMONIALS — QUOTE ICON + STAR SVGS ── */
.testimonial-quote-icon {
  font-size: 5rem; line-height: 1; font-family: 'Georgia', serif; font-weight: 900;
  color: var(--yellow-primary); opacity: 0.15; margin-bottom: -10px; margin-top: -10px;
}
.testimonial-stars { display: flex; align-items: center; gap: 2px; }
.testimonial-stars svg { width: 16px !important; height: 16px !important; fill: var(--yellow-primary) !important; stroke: none !important; }

/* ── MAP STATS ROW ── */
.map-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px;
}
.map-stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px; background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); transition: all var(--transition-smooth);
}
.map-stat-item:hover { border-color: var(--yellow-primary); transform: translateY(-3px); }
.map-stat-num {
  font-size: 1.8rem; font-weight: 900; color: var(--text-primary);
  line-height: 1; font-family: var(--font-heading);
}
.map-stat-label {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px;
}

/* ── BLOG — SECTION HEADER + PREMIUM GRID ── */
.blog-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 48px;
}
.blog-grid-premium {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card-featured { grid-column: span 2; }
.blog-card-featured .blog-img { height: 300px; }
.blog-card-featured .blog-title { font-size: 1.3rem; }

/* ── FAQ — NUMBERED + CONTACT CARD ── */
.faq-q-num {
  font-size: 0.68rem; font-weight: 900; color: var(--yellow-primary);
  letter-spacing: 1.5px; margin-right: 4px; flex-shrink: 0;
}
.faq-img-overlay {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); z-index: 2;
}
.faq-contact-card {
  background: rgba(255,255,255,0.97); border-radius: var(--radius-lg);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); border: 1px solid var(--border-subtle);
}
.faq-contact-icon {
  width: 40px; height: 40px; background: var(--yellow-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-primary); flex-shrink: 0;
}
.faq-contact-icon svg { width: 18px !important; height: 18px !important; }
.faq-contact-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-bottom: 3px; }
.faq-contact-link {
  font-size: 0.88rem; font-weight: 700; color: var(--yellow-primary);
  text-decoration: none; transition: color var(--transition-fast);
}
.faq-contact-link:hover { color: var(--yellow-deep); }

/* ── CTA STRIP — PREMIUM ── */
.rydt-cta-noise {
  position: absolute; inset: 0; z-index: 1; opacity: 0.025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.cta-strip-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow-primary); margin-bottom: 12px;
}
.cta-strip-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--gradient-yellow); border-radius: 2px;
}
.cta-trust-indicators { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.cta-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500;
}
.btn-cta-lg { padding: 18px 40px !important; font-size: 1.05rem !important; }

/* ── PREMIUM RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-float-stat { display: none; }
}

@media (max-width: 1024px) {
  .about-float-card-1 { left: 16px; }
  .about-float-card-2 { right: 16px; bottom: 108px; }
  .rydt-hero-layout { grid-template-columns: 1fr; gap: 25px; }
  .rydt-hero-layout .hero-content { align-items: center; text-align: center; margin: 0 auto; }
  .rydt-hero-layout .hero-headline { text-align: center; }
  .rydt-hero-layout .hero-sub { text-align: center; margin: 0 auto; }
  .rydt-hero-layout .hero-actions { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  /* Widget wrap: fixed max-width, centered, no float stats */
  .hero-widget-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-float-stat { display: none; }
  .industry-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .industry-card-featured { grid-column: span 1; grid-row: span 1; min-height: 0; }
  .why-model-grid { grid-template-columns: 1fr; }
  .why-model-item {
    min-height: auto;
    border-right: none;
    border-top: 1px solid var(--border-subtle);
  }
  .why-model-item:first-child { border-top: none; }
  .map-stats-row { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { grid-column: span 2; }
  .blog-section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .about-float-card { display: none; }
  .industry-grid-premium { grid-template-columns: 1fr; }
  .industry-card-featured { grid-column: span 1; min-height: 0; }
  .blog-grid-premium { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }
  .blog-card-featured .blog-img { height: 220px; }
  .map-stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-headline { font-size: 2rem; }
  .hero-shipment-grid { grid-template-columns: 1fr 1fr; }
  /* Limit widget card height on small screens to avoid dominating the hero */
  .hero-shipment-card { padding: 20px; }
  .rydt-hero-layout { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-trust-sep { display: none; }
  .hero-trust-row { gap: 10px; }
  .map-stats-row { grid-template-columns: 1fr 1fr; }
  .cta-trust-indicators { display: none; }
  .blog-section-header .btn { display: none; }
}

/* ══════════════════════════════════════════════════════
   11. PREMIUM GLOBAL NETWORK — Aviation-Tech Style
   ════════════════════════════════════════════════════ */
.rydt-global-network {
  background: #0A0A0F; /* Matte Black Base */
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.rydt-global-network .section-header h2 {
  color: #fff;
  margin-top: 12px;
}

.rydt-global-network .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* Map Container Wrap */
.network-map-outer {
  position: relative;
  margin-top: 64px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.network-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

/* Generated Background Image */
.network-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 10s ease;
}

.network-map-container:hover .network-bg-image {
  transform: scale(1.05);
}

/* Dark cinematic overlay inside map */
.network-map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.8) 100%);
  pointer-events: none;
}

/* Animated Routes SVG */
.network-routes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.route-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRoute 3s ease-out forwards;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.4));
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

/* Airplane moving on path */
.moving-plane {
  offset-path: path(var(--path));
  animation: planeTravel 8s linear infinite;
  color: var(--yellow-primary);
  filter: drop-shadow(0 0 5px var(--yellow-primary));
}

@keyframes planeTravel {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Interactive Country Pins */
.network-pin {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pin-dot {
  width: 12px;
  height: 12px;
  background: var(--yellow-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--yellow-primary);
  position: relative;
}

.pin-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--yellow-primary);
  border-radius: 50%;
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.pin-label {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.network-pin:hover .pin-label {
  opacity: 1;
  transform: translateY(0);
}

.pin-label span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pin-flag {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

/* Stats Section Below Map */
.network-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -40px; /* Overlap effect */
  position: relative;
  z-index: 10;
}

.network-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.network-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 197, 24, 0.1);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 14px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
}

.network-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.network-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .network-stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .network-map-container { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  .rydt-global-network { padding: 80px 0; }
  .network-map-container { aspect-ratio: 4 / 3; }
  .network-stat-card { padding: 24px; }
  .network-stat-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .network-stats-grid { grid-template-columns: 1fr; }
  .network-map-outer { padding: 12px; border-radius: 24px; }
  .network-map-container { aspect-ratio: 1 / 1; border-radius: 20px; }
}
