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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.35);

  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: #fff7ed;
  --accent-glow: rgba(249, 115, 22, 0.35);

  --secondary: #0f172a;
  --secondary-light: #1e293b;
  
  --emerald: #10b981;
  --emerald-light: #ecfdf5;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 15px 35px -5px rgba(37, 99, 235, 0.25);
  --shadow-accent-glow: 0 15px 35px -5px rgba(249, 115, 22, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -5px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: var(--text-white);
  box-shadow: var(--shadow-accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -5px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, #ea580c, #c2410c);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
  color: var(--text-dark);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--text-white);
  color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-accent {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.badge-emerald {
  background: var(--emerald-light);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px -2px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 16px);
  margin: 0 auto;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 7px 14px;
  font-size: 0.84rem;
  white-space: nowrap;
  gap: 6px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 85% 15%, rgba(249, 115, 22, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 10% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
              linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: rgba(37, 99, 235, 0.18);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(249, 115, 22, 0.16);
  filter: blur(130px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--secondary);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

/* Quick Search Box in Hero */
.hero-search-box {
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 580px;
  margin-bottom: 32px;
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

.search-input-row i {
  color: var(--primary);
  font-size: 1.2rem;
}

.search-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
}

.search-input-row input::placeholder {
  color: var(--text-light);
}

.search-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-pills span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.pill-item {
  font-size: 0.8rem;
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.pill-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.2);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual / Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0f172a;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 35px 70px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 6px solid #1e293b;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition);
}

.phone-mockup-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  background: #ffffff;
}

.phone-notch {
  width: 100px;
  height: 18px;
  background: #0f172a;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-app-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-user-greet {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.phone-user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
}

.phone-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.phone-banner {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.3);
}

.phone-banner-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.phone-quick-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.phone-cat-box {
  background: white;
  padding: 8px 4px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.phone-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.phone-active-order {
  background: white;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.phone-order-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.phone-order-status {
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-order-provider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-provider-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.phone-provider-info {
  font-size: 0.72rem;
}

.phone-provider-name {
  font-weight: 700;
  color: var(--secondary);
}

.phone-provider-role {
  color: var(--text-muted);
}

/* Floating Glass Badges around Phone */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.float-card-1 {
  top: 15%;
  left: -40px;
}

.float-card-2 {
  bottom: 20%;
  right: -35px;
  animation-delay: -2s;
}

.float-card-3 {
  bottom: 5%;
  left: -20px;
  animation-delay: -1s;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.float-icon.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.float-icon.blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.float-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.float-text {
  font-size: 0.82rem;
}

.float-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   PARTNERS / TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--bg-card);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cat-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.cat-filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.cat-filter-btn:hover, .cat-filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.08) rotate(-4deg);
}

.service-count-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-name {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.service-tag {
  font-size: 0.75rem;
  background: var(--bg-alt);
  color: var(--text-dark);
  padding: 3px 8px;
  border-radius: 6px;
}

.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  gap: 12px;
}

.service-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-light);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

.service-card-status i {
  font-size: 0.95rem;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(148, 163, 184, 0.2);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.step-card:nth-child(2) .step-icon-wrap {
  background: var(--accent-light);
  color: var(--accent);
}

.step-card:nth-child(3) .step-icon-wrap {
  background: var(--emerald-light);
  color: var(--emerald);
}

.step-card:nth-child(4) .step-icon-wrap {
  background: #fdf2f8;
  color: #db2777;
}

.step-title {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SIMULATOR / ORÇAMENTO RÁPIDO WIDGET
   ========================================================================== */
.simulator-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  box-sizing: border-box;
}

.sim-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.sim-glow-1 {
  top: -100px;
  right: -100px;
  background: rgba(37, 99, 235, 0.3);
}

.sim-glow-2 {
  bottom: -100px;
  left: -100px;
  background: rgba(249, 115, 22, 0.25);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.sim-info {
  min-width: 0;
}

.sim-info h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sim-info p {
  color: #94a3b8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.sim-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sim-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.sim-feat-item i {
  color: var(--emerald);
  font-size: 1.1rem;
}

.sim-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.sim-form-group {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.sim-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.sim-select, .sim-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.sim-select option {
  background: #0f172a;
  color: white;
}

.sim-select:focus, .sim-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.sim-range-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sim-range-label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.sim-range-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: 'Outfit', sans-serif;
}

.sim-btn-submit {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

/* ==========================================================================
   FOR PROFESSIONALS / PARTNER SECTION
   ========================================================================== */
.pro-section {
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pro-grid > div {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pro-card-calc {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-header {
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.calc-slider-group {
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #cbd5e1;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
  touch-action: pan-y;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}

.calc-result-box {
  background: var(--secondary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-top: 30px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.calc-result-label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.calc-result-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: #facc15;
  font-family: 'Outfit', sans-serif;
  margin: 6px 0;
  word-break: break-word;
}

.calc-result-sub {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.pro-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
  width: 100%;
  box-sizing: border-box;
}

.perk-item {
  display: flex;
  gap: 14px;
}

.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.perk-text h4 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.perk-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SAFETY & GUARANTEE SECTION
   ========================================================================== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safety-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.safety-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
}

.safety-title {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.safety-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.test-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.test-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

.test-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}

.test-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   DOWNLOAD CTA SECTION
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.35) 0%, transparent 50%),
              linear-gradient(135deg, #0b132b, #1c2541);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 520px;
}

.cta-apps-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  color: white;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: white;
}

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

.app-store-btn-text {
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.2;
}

.app-store-btn-text strong {
  display: block;
  font-size: 1.1rem;
}

.cta-qr-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-code-img {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-img svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #090e1a;
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 6px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  color: white;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.7rem;
  color: var(--secondary);
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--bg-alt);
}

.form-control:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--secondary);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  animation: slideInRight 0.4s ease forwards;
  border-left: 4px solid var(--emerald);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   UTILITY & MOBILE ENHANCEMENTS
   ========================================================================== */
.w-full {
  width: 100%;
}

.nav-menu-actions {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Bottom Floating Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 995;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 16px env(safe-area-inset-bottom, 12px) 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 10px;
}

.mobile-bar-btn {
  flex: 1;
  padding: 11px 14px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Mobile Navigation (<= 1180px) */
@media (max-width: 1180px) {
  .nav-container {
    height: 72px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1.25rem;
    gap: 8px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .nav-btn-pro {
    display: none; /* Shown inside hamburger drawer & mobile bottom bar */
  }

  .nav-btn-order {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: white;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu-actions {
    display: flex;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 32px auto;
  }

  .hero-search-box {
    margin: 0 auto 32px auto;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .phone-mockup-wrapper {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }

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

  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 36px;
  }

  .cta-content p {
    margin: 0 auto 32px auto;
  }

  .cta-apps-row {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for sticky mobile bottom bar */
  }

  .btn {
    max-width: 100%;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

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

  .section-desc {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Hero on mobile */
  .hero {
    padding: 100px 0 50px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-search-box {
    padding: 8px;
    border-radius: var(--radius-md);
  }

  .hero-stats-row {
    gap: 14px;
    justify-content: space-around;
  }

  .hero-stat-num {
    font-size: 1.35rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-visual {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
  }

  .phone-mockup-wrapper {
    width: 280px;
    height: 540px;
    transform: none !important;
    border-radius: 40px;
    border-width: 4px;
    box-shadow: var(--shadow-xl);
  }

  .float-card {
    display: none; /* Hide floating badges on mobile to prevent overflow */
  }

  /* Category Filter Scroll on mobile */
  .cat-filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 12px 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 28px;
    scrollbar-width: none;
  }

  .cat-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .cat-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .safety-card {
    padding: 28px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .simulator-wrapper {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    min-width: 0;
  }

  .sim-info {
    width: 100%;
    min-width: 0;
  }

  .sim-info h3 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .sim-info p {
    font-size: 0.92rem;
    margin-bottom: 16px;
  }

  .sim-card {
    padding: 20px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .sim-select {
    padding: 12px 14px;
    font-size: 16px; /* Prevents iOS Safari auto-zoom */
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sim-range-row {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sim-range-value {
    font-size: 1.3rem;
  }

  .sim-btn-submit,
  #simSubmitBtn {
    padding: 14px 14px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
    line-height: 1.35;
  }

  .pro-perks-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
  }

  .pro-section {
    padding: 50px 0;
    overflow: hidden;
  }

  .pro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .pro-card-calc {
    padding: 20px 14px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-header h3 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .calc-header p {
    font-size: 0.88rem;
  }

  .calc-slider-group {
    margin-bottom: 20px;
  }

  .calc-slider-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.84rem;
    gap: 4px;
  }

  .calc-slider {
    touch-action: pan-y;
  }

  .calc-result-box {
    padding: 18px 12px;
    margin-top: 20px;
    border-radius: var(--radius-md);
  }

  .calc-result-number {
    font-size: 2.1rem;
  }

  .calc-result-sub {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .cta-banner {
    padding: 36px 18px;
    border-radius: var(--radius-lg);
  }

  .cta-content h2 {
    font-size: 1.85rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-apps-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

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

  .cta-qr-box {
    display: none;
  }

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

  .footer {
    padding: 50px 0 24px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  /* Modals on mobile */
  .modal-backdrop {
    padding: 12px;
  }

  .modal-container {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    max-height: 88vh;
    width: 100%;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .form-control, .sim-select, .newsletter-input {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
  }

  /* Toast position on mobile */
  .toast-container {
    bottom: 80px;
    left: 16px;
    right: 16px;
  }

  .toast {
    font-size: 0.88rem;
    padding: 12px 16px;
  }
}

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

  .nav-btn-order span {
    display: none;
  }

  .nav-btn-order {
    padding: 8px 12px;
  }

  .hero-search-box {
    padding: 6px;
  }

  .search-input-row {
    padding: 6px 12px;
  }

  .search-input-row input {
    font-size: 16px;
  }

  .pill-item {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .simulator-wrapper {
    padding: 20px 12px;
  }

  .sim-card {
    padding: 16px 12px;
  }

  .sim-select {
    padding: 10px 12px;
    font-size: 16px;
  }

  .sim-range-row {
    padding: 12px 10px;
  }

  .sim-range-value {
    font-size: 1.2rem;
  }

  .sim-btn-submit,
  #simSubmitBtn {
    font-size: 0.9rem !important;
    padding: 12px 10px !important;
  }

  .pro-card-calc {
    padding: 16px 12px;
  }

  .calc-header h3 {
    font-size: 1.22rem;
  }

  .calc-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .calc-result-box {
    padding: 14px 10px;
  }

  .calc-result-number {
    font-size: 1.85rem;
  }

  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 10px;
  }

  .trust-item {
    font-size: 0.88rem;
  }
}
