/* ══════════════════════════════════════════════
   Orange Wifi — styles.css
   Color Palette: #cc4e00 · #ff9f01 · #faf8ee · #c2510a
   Fonts: Montserrat (headings) · Poppins (body)
   ══════════════════════════════════════════════ */

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

:root {
  --orange-dark: #cc4e00;
  --orange-bright: #ff9f01;
  --cream: #faf8ee;
  --brown: #c2510a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: #333;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   CHAT SUPPORT TOAST & WIDGET
   ══════════════════════════════════════════════ */

/* Chat Toast Notification */
/* Chat Button */

/* YuAskMe Chat Widget Styles */
iframe[src*="widget-chat"],
div[id*="yuaskme"],
div[class*="yuaskme"],
div[id*="chat-widget"],
div[class*="chat-widget"] {
  z-index: 9999 !important;
  position: fixed !important;
}

/* Mobile full-screen chat widget */
@media (max-width: 768px) {
  iframe[src*="widget-chat"],
  div[id*="yuaskme"],
  div[class*="yuaskme"],
  div[id*="chat-widget"],
  div[class*="chat-widget"] {
    z-index: 9999 !important;
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
  }
}

@media (max-width: 480px) {
  iframe[src*="widget-chat"],
  div[id*="yuaskme"],
  div[class*="yuaskme"],
  div[id*="chat-widget"],
  div[class*="chat-widget"] {
    z-index: 9999 !important;
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
  }
}

/* Mobile full-screen chat widget class */
@media (max-width: 768px) {
  .mobile-fullscreen {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
  }
}
.chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(204, 78, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(204, 78, 0, 0.5);
}

.chat-button svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Chat Button Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(204, 78, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(204, 78, 0, 0.6);
  }
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(250, 248, 238, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(194, 81, 10, 0.1);
  transition: padding 0.3s, box-shadow 0.3s;
}

.logo {
  flex: 0 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--orange-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  list-style: none;
}

.mobile-toggle {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

nav.scrolled {
  padding: 12px 48px;
  box-shadow: 0 4px 20px rgba(194, 81, 10, 0.1);
}



.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}



.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-bright);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--orange-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  color: white;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 78, 0, 0.3);
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 48px;
  padding: 140px 48px 80px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-dark);
  background: rgba(204, 78, 0, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #6b5a4e;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  color: white;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(204, 78, 0, 0.35);
}

.btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 40px;
  border: 2px solid var(--orange-dark);
  border-radius: 50px;
  background: transparent;
  color: var(--orange-dark);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--orange-dark);
  color: white;
  transform: translateY(-3px);
}

/* Hero Graphic — Image */
.hero-graphic {
  width: 100%;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
}

.hero-image {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(194, 81, 10, 0.2));
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL — .reveal class
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children delays */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 48px;
  text-align: center;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-bright);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b5a4e;
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  padding: 40px 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(194, 81, 10, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(194, 81, 10, 0.18);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(204, 78, 0, 0.1), rgba(255, 159, 1, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s, background 0.4s;
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(204, 78, 0, 0.2), rgba(255, 159, 1, 0.2));
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: #7a6a5e;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing {
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff5e8 100%);
  text-align: center;
}

.plans {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.plan {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  padding: 44px 36px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(194, 81, 10, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(194, 81, 10, 0.2);
}

.plan.featured {
  border: 2px solid var(--orange-bright);
  transform: scale(1.04);
}

.plan.featured:hover {
  transform: scale(1.04) translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 24px;
  border-radius: 50px;
  animation: badgeBounce 2s ease-in-out infinite;
}

.plan h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.plan .duration {
  font-size: 0.9rem;
  color: #9a8a7e;
  margin-bottom: 20px;
}

.plan .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange-dark);
  margin-bottom: 4px;
}

.plan .price-unit {
  font-size: 0.9rem;
  color: #9a8a7e;
  margin-bottom: 28px;
}

.plan ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.plan ul li {
  font-size: 0.95rem;
  color: #6b5a4e;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(255, 159, 1, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cc4e00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.plan-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  padding: 14px;
  border: 2px solid var(--orange-dark);
  border-radius: 50px;
  background: transparent;
  color: var(--orange-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.plan-btn:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  color: white;
  border-color: transparent;
  transform: scale(1.03);
}

.plan.featured .plan-btn {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange-bright));
  color: white;
  border-color: transparent;
}

.plan.featured .plan-btn:hover {
  box-shadow: 0 8px 24px rgba(204, 78, 0, 0.35);
  transform: scale(1.03);
}

/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
.features {
  padding: 100px 48px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 36px 28px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(194, 81, 10, 0.06);
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(194, 81, 10, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(204, 78, 0, 0.1), rgba(255, 159, 1, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s, background 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(204, 78, 0, 0.18), rgba(255, 159, 1, 0.18));
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #7a6a5e;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   MEDIA / IMAGE GALLERY
   ══════════════════════════════════════════════ */
.media-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, #fff5e8 0%, var(--cream) 100%);
  text-align: center;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.media-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 24px rgba(194, 81, 10, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(194, 81, 10, 0.16);
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.media-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(204, 78, 0, 0.05), rgba(255, 159, 1, 0.08));
  color: #b0917e;
}

.media-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.media-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Upload Area */
.upload-area {
  max-width: 600px;
  margin: 0 auto 32px;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 32px;
  border: 2px dashed rgba(204, 78, 0, 0.3);
  border-radius: 20px;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.upload-label:hover {
  border-color: var(--orange-bright);
  background: rgba(255, 159, 1, 0.04);
  transform: translateY(-2px);
}

.upload-label svg {
  width: 40px;
  height: 40px;
  color: var(--orange-dark);
}

.upload-label strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--orange-dark);
}

.upload-label span {
  font-size: 0.85rem;
  color: #9a8a7e;
}

/* Upload Preview */
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.preview-item {
  width: 140px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(194, 81, 10, 0.1);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
}

.preview-item.active {
  opacity: 1;
  transform: scale(1);
}

.preview-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.preview-item span {
  display: block;
  padding: 8px;
  font-size: 0.72rem;
  color: #7a6a5e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════
   HERO PARTICLES
   ══════════════════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  bottom: -10px;
  background: var(--orange-bright);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.4;
    transform: translateY(-10vh) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.5);
  }
}

/* ══════════════════════════════════════════════
   MOBILE MENU — open state
   ══════════════════════════════════════════════ */
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 238, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(194, 81, 10, 0.1);
  animation: slideDown 0.3s ease forwards;
}

.nav-btn.mobile-open {
  display: block !important;
  position: absolute;
  top: calc(100% + 140px);
  left: 24px;
  right: 24px;
  width: calc(100% - 48px);
  animation: slideDown 0.3s ease 0.1s forwards;
  opacity: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta {
  padding: 100px 48px;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 60px;
  background: linear-gradient(135deg, var(--orange-dark), var(--brown));
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 159, 1, 0.15);
  border-radius: 50%;
  animation: floatBlob 6s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 159, 1, 0.1);
  border-radius: 50%;
  animation: floatBlob 6s ease-in-out 3s infinite;
}

.cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  background: white;
  color: var(--orange-dark);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ══════════════════════════════════════════════
   ISP PARTNER
   ══════════════════════════════════════════════ */
.isp-partner {
  padding: 100px 48px;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 320px;
  margin: 0 auto;
}

.partner-card {
  padding: 36px 28px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(194, 81, 10, 0.06);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(204, 78, 0, 0.12);
}

.partner-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

.partner-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  padding: 60px 48px 32px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  background: rgba(255, 255, 255, 0.15);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul a:hover {
  color: var(--orange-bright);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════════ */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes badgeBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-4px); }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -20px); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 280px;
    gap: 32px;
    padding: 130px 32px 60px;
  }

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

  .hero-image {
    max-height: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  nav.scrolled {
    padding: 10px 24px;
  }

  .nav-links, .nav-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 24px 48px;
    min-height: auto;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-graphic {
    max-width: 280px;
    margin: 0 auto;
  }

  .how-it-works, .pricing, .features, .cta, .media-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step {
    max-width: 100%;
    width: 100%;
    padding: 32px 24px;
  }

  .plans {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .plan {
    max-width: 100%;
    width: 100%;
    padding: 36px 28px;
  }

  .plan.featured {
    transform: scale(1);
  }

  .plan.featured:hover {
    transform: translateY(-8px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .upload-label {
    padding: 32px 20px;
  }

  .cta-box {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-box p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .chat-button {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  nav {
    padding: 14px 16px;
  }

  nav.scrolled {
    padding: 10px 16px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 100px 16px 40px;
    gap: 24px;
  }

  .hero-graphic {
    max-width: 200px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .how-it-works, .pricing, .features, .cta, .media-section {
    padding: 48px 16px;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .step {
    padding: 28px 20px;
  }

  .step-number {
    font-size: 1.8rem;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .plan {
    padding: 32px 24px;
  }

  .plan .price {
    font-size: 2.4rem;
  }

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

  .upload-label {
    padding: 28px 16px;
  }

  .upload-label strong {
    font-size: 0.9rem;
  }

  .upload-label span {
    font-size: 0.75rem;
  }

  .cta {
    padding: 40px 16px;
  }

  .cta-box {
    padding: 36px 20px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }

  .cta-box p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 12px 32px;
    font-size: 0.9rem;
  }

  footer {
    padding: 40px 16px 20px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col ul a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .chat-button {
    bottom: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
  }

  .chat-button svg {
    width: 24px;
    height: 24px;
  }
}
