/* ========================================
   RUSSEA – Brand Website CSS
   Logo Colors: Orange #E84520 + Navy #1C2E4A
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Brand Colors — extracted from Russea logo */
  --orange: #E84520;
  --orange-dark: #C23510;
  --orange-mid: #F05530;
  --orange-light: #FF6844;
  --orange-glow: rgba(232, 69, 32, 0.22);
  --orange-pale: rgba(232, 69, 32, 0.08);

  --navy: #1C2E4A;
  --navy-deep: #111E30;
  --navy-mid: #243858;
  --navy-light: #2E4A6E;
  --navy-pale: rgba(28, 46, 74, 0.07);
  --navy-glass: rgba(28, 46, 74, 0.85);

  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --silver: #E4EAF2;
  --text-primary: #111E30;
  --text-secondary: #4A6080;
  --text-light: #8CA0B8;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #E84520 0%, #C23510 100%);
  --gradient-navy: linear-gradient(135deg, #1C2E4A 0%, #243858 100%);
  --gradient-mixed: linear-gradient(135deg, #E84520 0%, #1C2E4A 100%);
  --gradient-hero: linear-gradient(180deg, rgba(17, 30, 48, 0.72) 0%, rgba(17, 30, 48, 0.45) 40%, rgba(17, 30, 48, 0.85) 100%);
  --gradient-text-brand: linear-gradient(135deg, #E84520 0%, #F07050 50%, #E84520 100%);
  --gradient-text-navy: linear-gradient(135deg, #E84520 0%, #FF7050 60%, #C23510 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 46, 74, 0.10);
  --shadow-md: 0 8px 30px rgba(28, 46, 74, 0.14);
  --shadow-lg: 0 20px 60px rgba(28, 46, 74, 0.20);
  --shadow-orange: 0 8px 32px rgba(232, 69, 32, 0.30);
  --shadow-glow: 0 0 40px rgba(232, 69, 32, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232, 69, 32, 0.45);
  background: linear-gradient(135deg, #F05530 0%, #D03010 100%);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 10px 22px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(232, 69, 32, 0.35);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  padding: 0;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.btn-card:hover {
  border-bottom-color: var(--orange);
  gap: 12px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
  padding: 0 20px;
}

.navbar.scrolled {
  background: rgba(17, 30, 48, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232, 69, 32, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  /* White tint to show on dark navbar */
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

/* On light bg, show natural color */
.navbar:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(232, 69, 32, 0.15);
}

.nav-link.active {
  color: #FF8060;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-40%) translateY(-8px);
  width: 680px;
  background: rgba(15, 24, 40, 0.97);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(232, 69, 32, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 69, 32, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-40%) translateY(0);
}

/* Simple product dropdown (product pages) */
.prod-nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: rgba(15,24,40,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232,69,32,0.18);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1001;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.prod-nav-drop::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .prod-nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.prod-nav-drop li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.prod-nav-drop li a:hover,
.prod-nav-drop li a.pnd-active {
  background: rgba(232,69,32,0.14);
  color: #fff;
}

.mega-col h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 2px;
}

.mega-link:hover {
  background: rgba(232, 69, 32, 0.10);
}

.mega-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.mega-link strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}

.mega-link p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

.mega-col-cta {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 20px;
}

.mega-cta-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.85;
}

.mega-cta-card h4 {
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.mega-cta-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.0);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 69, 32, 0.15);
  border: 1px solid rgba(232, 69, 32, 0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  color: #FF8060;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  text-align: center;
}

.hero-stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--navy-deep);
  padding: 18px 0;
  border-bottom: 2px solid var(--orange);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.trust-item strong {
  color: var(--white);
  font-weight: 600;
}

.trust-icon {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
}

.trust-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
  user-select: none;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  display: block;
  text-align: center;
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(28, 46, 74, 0.09);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

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

.product-card:hover {
  box-shadow: 0 24px 60px rgba(232, 69, 32, 0.14), var(--shadow-lg);
  border-color: rgba(232, 69, 32, 0.25);
  transform: translateY(-8px) !important;
}

.product-card:nth-child(2) {
  transition-delay: 0.1s;
}

.product-card:nth-child(3) {
  transition-delay: 0.2s;
}

.product-card:nth-child(4) {
  transition-delay: 0.3s;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-orange);
}

.card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

/* Real photo used via <img> tag */
.card-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  display: block;
}

.product-card:hover .card-img-real {
  transform: scale(1.07);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(17, 30, 48, 0.55) 100%);
}

.card-content {
  padding: 28px;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.card-subtitle {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-specs {
  border-top: 1px solid rgba(28, 46, 74, 0.08);
  padding-top: 16px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-specs li {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-specs li span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 69, 32, 0.10) 0%, transparent 70%);
}

.stats-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.strip-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 180px;
}

.strip-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 69, 32, 0.12);
  border: 1px solid rgba(232, 69, 32, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.strip-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.strip-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* =============================================
   WHY RUSSEA
   ============================================= */
.why-russea {
  padding: 100px 0;
  background: var(--white);
}

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

.why-visual {
  position: relative;
}

.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.why-img-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 230px;
  background: rgba(17, 30, 48, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 69, 32, 0.25);
}

.why-img-card .why-card-icon {
  font-size: 24px;
}

.why-img-card strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.why-img-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

.why-img-stats {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.why-mini-stat {
  background: var(--gradient-brand);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: var(--shadow-orange);
}

.mini-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.why-mini-stat span {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

.why-content .section-title {
  margin-top: 12px;
}

.why-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
}

.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(28, 46, 74, 0.07);
  transition: var(--transition);
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature:hover {
  padding-left: 8px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: rgba(232, 69, 32, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.feature-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* =============================================
   BRAND STORY
   ============================================= */
.brand-story {
  padding: 80px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: 'RUSSEA';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 20px;
  white-space: nowrap;
}

.story-glass {
  display: flex;
  gap: 52px;
  align-items: center;
  padding: 52px 60px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 69, 32, 0.18);
}

.story-logo-wrap {
  flex-shrink: 0;
}

.story-logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.story-text .section-label {
  color: var(--orange);
}

.story-text .section-label::before {
  background: var(--orange);
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-text h2 em {
  background: var(--gradient-text-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.story-text p {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 16px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.story-text em {
  color: var(--orange-light);
  font-style: italic;
}

/* =============================================
   SUSTAINABILITY
   ============================================= */
.sustainability {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 500px;
}

.sustain-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sustain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sustain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 30, 48, 0.92) 0%, rgba(28, 46, 74, 0.82) 100%);
}

.sustain-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sustain-content .section-title {
  color: var(--white);
}

.sustain-content>p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 48px;
  max-width: 600px;
}

.sustain-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sustain-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 69, 32, 0.18);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}

.sustain-pillar:hover {
  background: rgba(232, 69, 32, 0.10);
  border-color: rgba(232, 69, 32, 0.35);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 28px;
}

.sustain-pillar strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.sustain-pillar span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  margin-top: 12px;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(28, 46, 74, 0.08);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(232, 69, 32, 0.25);
  box-shadow: 0 4px 16px rgba(232, 69, 32, 0.08);
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(232, 69, 32, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 19px;
  height: 19px;
  color: var(--orange);
}

.contact-item>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item>div span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-item>div a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-item>div a:hover {
  color: var(--orange);
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid rgba(28, 46, 74, 0.09);
  border-radius: 10px;
}

.badge-shield {
  width: 36px;
  height: 36px;
  background: var(--gradient-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
}

.trust-badge>span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

/* Form */
.form-card {
  padding: 40px;
  background: var(--white);
  border-color: rgba(28, 46, 74, 0.10);
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-card>p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--off-white);
  border: 1.5px solid rgba(28, 46, 74, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 69, 32, 0.08);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E84520' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.checkbox-group {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,69,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* White version of logo in dark footer */
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: rgba(232, 69, 32, 0.18);
  border-color: rgba(232, 69, 32, 0.35);
  color: var(--orange);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact-list {
  gap: 12px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-seo-note {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.12) !important;
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 69, 32, 0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .sustain-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(17, 30, 48, 0.98);
    padding: 24px;
    gap: 4px;
    border-bottom: 2px solid var(--orange);
  }

  .mega-menu {
    display: none !important;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .strip-divider {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 0;
  }

  .stat-divider {
    display: none;
  }

  .hero-stat {
    padding: 8px 20px 8px 0;
    text-align: left;
  }

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

  .story-glass {
    flex-direction: column;
    padding: 36px 28px;
  }

  .story-logo-img {
    width: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --nav-h: 70px;
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
  }

  .sustain-pillars {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-sep {
    display: none;
  }

  .form-card {
    padding: 24px 20px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
}

/* =============================================
   TRADEMARK SYMBOL
   ============================================= */
/* ™ rendered via &#8482; — inherits surrounding font naturally, no extra rules needed */

/* Explicit rule to scale ™ down when adjacent to large text */
h1 .tm,
h2 .tm,
h3 .tm {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: 0;
}

/* =============================================
   OTP VERIFICATION UI
   ============================================= */
.otp-email-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.otp-email-row input {
  flex: 1;
  min-width: 0;
}

.otp-enter-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: 10px;
}

.otp-enter-row input {
  flex: 1;
  min-width: 0;
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
  background: var(--off-white);
  border: 1.5px solid rgba(28, 46, 74, 0.14);
  border-radius: 10px;
  padding: 11px 16px;
  outline: none;
  transition: var(--transition);
  color: var(--navy);
}

.otp-enter-row input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 69, 32, 0.09);
  background: var(--white);
}

.btn-otp {
  flex-shrink: 0;
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(232, 69, 32, 0.25);
}

.btn-otp:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 69, 32, 0.35);
}

.btn-otp:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-otp-verify {
  background: linear-gradient(135deg, #1c6e3d, #22c55e);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.28);
}

.btn-otp-verify:hover:not(:disabled) {
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.38);
}

.otp-msg {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
  min-height: 18px;
  transition: color 0.2s;
}

.otp-msg.success {
  color: #22c55e;
}

.otp-msg.error {
  color: #ef4444;
}

.otp-msg.info {
  color: var(--text-secondary);
}

.btn-resend {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  text-decoration: underline;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}

.btn-resend:hover {
  opacity: 0.7;
}

.verified-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: none;
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.field-hint {
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.field-hint.invalid {
  color: #ef4444;
}

.field-hint.valid {
  color: #16a34a;
}

/* Phone input invalid highlight */
input#phone.invalid-phone {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.09);
}

/* Email verified border state */
input#email.email-ok {
  border-color: #22c55e;
  background: #f0fdf4;
}

/* =============================================
   SUCCESS POPUP MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 18, 32, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 52px 48px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(232, 69, 32, 0.12);
  animation: modalCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes modalCardIn {
  from {
    transform: scale(0.82) translateY(30px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 69, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(500px) rotate(720deg);
    opacity: 0;
  }
}

.modal-icon-wrap {
  margin-bottom: 20px;
}

.modal-icon {
  font-size: 62px;
  animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  display: inline-block;
}

@keyframes iconBounce {
  from {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-name {
  color: var(--orange);
  font-weight: 700;
}

.modal-id-box {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border: 2px dashed rgba(0, 51, 102, 0.25);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.modal-id-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.modal-id {
  font-family: monospace;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 4px;
}

.modal-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 1px solid rgba(0, 51, 102, 0.18);
  border-radius: 7px;
  padding: 5px 8px;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.modal-copy-btn:hover {
  background: rgba(0, 51, 102, 0.07);
  color: var(--navy);
  border-color: var(--navy);
}

.modal-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 28px;
}

.modal-actions {
  display: flex;
  justify-content: center;
}

.modal-close-btn {
  min-width: 220px;
  font-size: 15px;
  padding: 14px 32px;
}

@media (max-width: 520px) {
  .modal-card {
    padding: 40px 24px 36px;
  }

  .modal-id {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .otp-email-row,
  .otp-enter-row {
    flex-direction: column;
  }

  .btn-otp {
    padding: 11px 16px;
    width: 100%;
  }
}

/* =============================================
   SEO H1 SUBTITLE (below hero H1, crawled)
   ============================================= */
.seo-h1-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
  max-width: 600px;
  margin: -8px 0 16px;
  font-style: italic;
  letter-spacing: 0.2px;
}

/* =============================================
   SERVICE AREAS — PAN-INDIA LOCAL SEO SECTION
   ============================================= */
.service-areas {
  padding: 80px 0 60px;
  background: var(--white);
  border-top: 1px solid rgba(28, 46, 74, 0.06);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-bottom: 36px;
}

.area-state {
  background: var(--off-white);
  border: 1px solid rgba(28, 46, 74, 0.07);
  border-radius: 14px;
  padding: 22px 24px;
  transition: var(--transition);
}

.area-state:hover {
  border-color: rgba(232, 69, 32, 0.18);
  box-shadow: 0 4px 16px rgba(232, 69, 32, 0.06);
}

.area-state-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232, 69, 32, 0.12);
}

.area-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.area-cities li a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.area-cities li a::before {
  content: '→';
  font-size: 10px;
  color: var(--orange);
  flex-shrink: 0;
}

.area-cities li a:hover {
  color: var(--navy);
}

.areas-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.areas-cta {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

@media (max-width: 560px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .service-areas {
    padding: 56px 0 40px;
  }
}

/* =============================================
   FAQ SECTION — Native details/summary
   ============================================= */
.faq-section {
  padding: 90px 0 80px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(232, 69, 32, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.faq-section .section-label {
  color: var(--orange);
}

.faq-section .section-label::before {
  background: var(--orange);
}

.faq-section .section-title {
  color: var(--white);
}

.faq-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 69, 32, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(232, 69, 32, 0.35);
  box-shadow: 0 4px 20px rgba(232, 69, 32, 0.08);
}

.faq-item[open] {
  border-color: rgba(232, 69, 32, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.faq-q {
  list-style: none;
  padding: 20px 52px 20px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  position: relative;
  user-select: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] .faq-q {
  color: var(--orange-light, #ff7a50);
}

.faq-a {
  padding: 0 22px 20px;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-a p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.faq-a p a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .faq-section {
    padding: 64px 0 56px;
  }
}