/* ============================================================================
   LovShield Website — Complete Production CSS Stylesheet
   ============================================================================ */

/* ============================================================================
   1. RESET & BASE STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #111827;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================================
   2. TYPOGRAPHY
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@400;500;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.7;
}

small {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ============================================================================
   3. CONTAINER UTILITY
   ============================================================================ */

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

/* ============================================================================
   4. BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary {
  background-color: #128768;
  color: #ffffff;
  border: 2px solid #128768;
}

.btn-primary:hover {
  background-color: #0f6b53;
  border-color: #0f6b53;
}

.btn-outline {
  background-color: transparent;
  color: #128768;
  border: 2px solid #128768;
}

.btn-outline:hover {
  background-color: #128768;
  color: #ffffff;
}

.btn-cta-pill {
  background-color: #128768;
  color: #ffffff;
  border: 2px solid #128768;
  border-radius: 50px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-pill::after {
  content: '→';
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn-cta-pill:hover::after {
  transform: translateX(4px);
}

.btn-cta-pill:hover {
  background-color: transparent;
  color: #128768;
  border-color: #128768;
}

.btn-header {
  padding: 8px 22px;
  font-size: 0.9rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

/* ============================================================================
   5. HEADER & NAVIGATION
   ============================================================================ */

.header {
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 149, 255, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: #d1d5db;
  font-weight: 500;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0095FF;
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #0095FF;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #ffffff;
  cursor: pointer;
}

.nav-lang img {
  width: 28px;
  height: auto;
  border-radius: 3px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FE4258;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.6);
  z-index: 1999;
}

.nav-overlay.active {
  display: block;
}

/* Slide-in panel */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: #111827;
  z-index: 2000;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.nav-mobile.active {
  right: 0;
}

/* Header inside panel */
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nav-mobile-logo img {
  height: 28px;
  width: auto;
}

.nav-mobile-close {
  font-size: 2rem;
  color: #d1d5db;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-mobile-close:hover {
  color: #ffffff;
}

/* Nav links */
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link-mobile {
  display: block;
  color: #d1d5db;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link-mobile:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

/* CTA buttons */
.mobile-cta-group {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-cta-btn {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  padding: 12px 16px;
}

/* Lock body scroll when menu open */
body.nav-open {
  overflow: hidden;
}

/* ============================================================================
   6. HERO SECTION
   ============================================================================ */

.hero {
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-title .blue-text {
  color: #0095FF;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 340px;
}

.hero-image img {
  width: 340px;
  height: auto;
}

.hero-app-download {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.hero-app-label {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-store-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.store-btn {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-btn img {
  height: 53px;
  width: auto;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ============================================================================
   7. STATS BAR
   ============================================================================ */

.stats-bar {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(0, 149, 255, 0.1);
  border-bottom: 1px solid rgba(0, 149, 255, 0.1);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0095FF;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   8. FEATURES SECTION
   ============================================================================ */

.features {
  padding: 100px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 0 0 220px;
}

.feature-image img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.feature-title .blue-text {
  color: #0095FF;
}

.feature-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.feature-list li::before {
  content: '✓';
  color: #0095FF;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ============================================================================
   9. HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.05) 0%, transparent 100%);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.step {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 149, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  border-color: #0095FF;
  box-shadow: 0 10px 30px rgba(0, 149, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0095FF;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', sans-serif;
}

.step-title {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.step-description {
  color: #9ca3af;
  line-height: 1.7;
}

/* ============================================================================
   10. PRICING SECTION
   ============================================================================ */

.pricing {
  padding: 100px 0;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.pricing-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(0, 149, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #0095FF;
  box-shadow: 0 15px 50px rgba(0, 149, 255, 0.15);
}

.pricing-card.featured {
  border: 2px solid #0095FF;
  box-shadow: 0 10px 40px rgba(0, 149, 255, 0.2);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  border-color: #128768;
  box-shadow: 0 20px 60px rgba(18, 135, 104, 0.25);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0095FF;
  margin-bottom: 0.25rem;
  font-family: 'Oswald', sans-serif;
}

.plan-period {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.plan-features li::before {
  content: '✓';
  color: #0095FF;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

/* ============================================================================
   11. HARDWARE SECTION
   ============================================================================ */

.hardware {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.05) 0%, rgba(254, 66, 88, 0.05) 100%);
}

.hardware-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hardware-content {
  flex: 1;
}

.hardware-content h2 {
  margin-bottom: 1.5rem;
}

.hardware-content h2 .blue-text {
  color: #0095FF;
}

.hardware-content p {
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hardware-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.hardware-specs li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.hardware-specs li::before {
  content: '⚙';
  color: #FE4258;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hardware-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hardware-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ============================================================================
   12. TRUST SECTION
   ============================================================================ */

.trust {
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.trust-item {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 149, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: #0095FF;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 149, 255, 0.1);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-title {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.trust-description {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================================
   13. CTA BANNER
   ============================================================================ */

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(0, 149, 255, 0.1);
  border-bottom: 1px solid rgba(0, 149, 255, 0.1);
}

.cta-banner-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-banner h2 {
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   14. ABOUT PAGE
   ============================================================================ */

/* About - Mission Section */
.about-mission {
  padding: 80px 0 60px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
}

.about-row-reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-heading {
  color: #0095FF;
  margin-bottom: 1rem;
}

.about-text p {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-image {
  flex: 0 0 auto;
  text-align: center;
}

.about-image img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* About - Values Section */
.about-values {
  padding: 60px 0 80px;
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
}

.value-card-accent {
  background: linear-gradient(135deg, #0095FF 0%, #0077d4 100%);
  border: none;
  color: #ffffff;
}

.value-card-accent:hover {
  box-shadow: 0 10px 30px rgba(0, 149, 255, 0.3);
  transform: translateY(-5px);
}

.value-card-accent h4 {
  color: #ffffff;
}

.value-card-accent p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   15. VALUES SECTION
   ============================================================================ */

.values {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.05) 0%, transparent 100%);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.value-card p {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
}

.value-card.value-card-red {
  border: 2px solid #FE4258;
}

.value-card.value-card-red:hover {
  box-shadow: 0 8px 25px rgba(254, 66, 88, 0.2);
}

.value-card.value-card-blue {
  border: 2px solid #0095FF;
}

.value-card.value-card-blue:hover {
  box-shadow: 0 8px 25px rgba(0, 149, 255, 0.2);
}

/* ============================================================================
   16. FAQ / ACCORDION
   ============================================================================ */

.faq-section {
  padding: 100px 0;
}

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

.accordion {
  list-style: none;
}

.accordion-item {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(0, 149, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #0095FF;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.375rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #0095FF;
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: #0095FF;
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ============================================================================
   17. CONTACT FORM
   ============================================================================ */

.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.05) 0%, rgba(254, 66, 88, 0.05) 100%);
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0095FF;
  font-weight: 500;
  font-size: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(0, 149, 255, 0.6);
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0095FF;
  background-color: rgba(0, 149, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.1);
}

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

.form-submit {
  width: 100%;
}

.contact-also {
  flex: 1;
}

.contact-methods {
  list-style: none;
}

.contact-methods li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-methods li strong {
  color: #0095FF;
  min-width: 80px;
}

.contact-methods a {
  color: #0095FF;
}

.contact-methods a:hover {
  text-decoration: underline;
}

/* ============================================================================
   18. LEGAL PAGES
   ============================================================================ */

.legal-page {
  padding: 60px 0 80px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.effective-date {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  color: #0095FF;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #0095FF;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.legal-content h4 {
  color: #0095FF;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content a {
  color: #0095FF;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

/* ============================================================================
   19. LEARN ABOUT FRAUD
   ============================================================================ */

.learn-page {
  padding: 80px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.learn-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.3rem;
  background: #0f1219;
  border: 2px solid rgba(0, 149, 255, 0.45);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 149, 255, 0.1);
}

.learn-card:hover {
  border-color: #128768;
  box-shadow: 0 0 18px rgba(18, 135, 104, 0.25);
  transform: translateY(-3px);
}

.learn-card h4 {
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  text-align: center;
  transition: color 0.3s ease;
}

.learn-card:hover h4 {
  color: #128768;
}

.learn-card p {
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 0.5rem;
}

.btn-link {
  color: #0095FF;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
  text-align: left;
}

.learn-card:hover .btn-link {
  color: #128768;
}

.text-white {
  color: #ffffff;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Learn Detail Pages */
.learn-detail-hero {
  padding: 60px 0 20px;
}

.learn-detail-content {
  padding: 20px 0 80px;
}

.learn-detail-content p {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================================
   20. THANK YOU PAGE
   ============================================================================ */

.thankyou-section {
  padding: 120px 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-section h1 {
  margin-bottom: 1rem;
}

.thankyou-section .blue-text {
  color: #0095FF;
}

.thankyou-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d1d5db;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

/* ============================================================================
   20. FOOTER
   ============================================================================ */

.footer {
  background-color: #111827;
  border-top: 1px solid rgba(0, 149, 255, 0.1);
  padding: 60px 0 0;
  margin-top: 100px;
}

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

.footer-logo-section {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 149, 255, 0.1);
}

.footer-logo-section img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
  justify-content: center;
  padding-bottom: 2rem;
}

.footer-app-download {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.footer-app-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer-store-buttons .store-btn img {
  height: 38px;
  width: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-weight: 700;
  color: #0095FF;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0095FF;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-badge img {
  height: 35px;
  width: auto;
}

.footer-follow {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-follow .footer-title {
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(18, 135, 104, 0.1);
  border-radius: 50%;
  color: #128768;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #128768;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #6b7280;
  font-size: 0.9rem;
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #6b7280;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #0095FF;
}

/* ============================================================================
   21. UTILITY CLASSES
   ============================================================================ */

.blue-text {
  color: #0095FF;
}

.red-text {
  color: #FE4258;
}

.text-center {
  text-align: center;
}

.text-blue {
  color: #0095FF;
}

.text-sm {
  font-size: 0.875rem;
}

.text-muted {
  color: #9ca3af;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 0.75rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-small {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

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

.gap-md {
  gap: 1rem;
}

.section-sm {
  padding: 40px 0 60px;
}

/* Schedule Page */
/* ====================================================================
   HOW IT WORKS PAGE
   ==================================================================== */

.hiw-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 149, 255, 0.08) 0%, transparent 70%);
}

.hiw-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hiw-hero p {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

/* Steps row */
.hiw-steps {
  padding: 60px 0 80px;
}

.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.hiw-step {
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border: 1.5px solid rgba(0, 149, 255, 0.2);
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hiw-step:hover {
  transform: translateY(-6px);
  border-color: #0095FF;
  box-shadow: 0 12px 40px rgba(0, 149, 255, 0.12);
}

.hiw-step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: rgba(0, 149, 255, 0.35);
}

.hiw-step-icon svg {
  width: 48px;
  height: 48px;
}

.hiw-step:hover .hiw-step-icon {
  color: rgba(0, 149, 255, 0.6);
}

.hiw-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0095FF 0%, #0070cc 100%);
  color: #fff;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 149, 255, 0.3);
}

.hiw-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.hiw-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #9ca3af;
}

/* Protection split sections */
.hiw-protection {
  padding: 80px 0;
}

.hiw-protection-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hiw-protection-row:last-child {
  margin-bottom: 0;
}

.hiw-protection-row.reverse {
  direction: rtl;
}

.hiw-protection-row.reverse > * {
  direction: ltr;
}

.hiw-protection-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.hiw-protection-text h2 span {
  color: #0095FF;
}

.hiw-protection-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #9ca3af;
  margin-bottom: 14px;
}

.hiw-protection-text p strong {
  color: #d1d5db;
}

.hiw-protection-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiw-protection-img img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 8px 30px rgba(0, 149, 255, 0.1));
}

/* Features grid */
.hiw-features {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.03) 0%, transparent 100%);
}

.hiw-features-heading {
  text-align: center;
  margin-bottom: 50px;
}

.hiw-features-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hiw-feature-card {
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border: 1.5px solid rgba(0, 149, 255, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-feature-card:hover {
  border-color: #128768;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(18, 135, 104, 0.1);
}

.hiw-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 149, 255, 0.1);
  border-radius: 14px;
  color: #0095FF;
  transition: background 0.3s ease, color 0.3s ease;
}

.hiw-feature-card:hover .hiw-feature-icon {
  background: rgba(18, 135, 104, 0.15);
  color: #128768;
}

.hiw-feature-icon svg {
  width: 28px;
  height: 28px;
}

.hiw-feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.hiw-feature-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* CTA banner */
.hiw-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.08) 0%, rgba(18, 135, 104, 0.06) 100%);
  border-top: 1px solid rgba(0, 149, 255, 0.1);
  border-bottom: 1px solid rgba(0, 149, 255, 0.1);
}

.hiw-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.hiw-cta p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 32px;
}

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

/* Responsive */
@media (max-width: 991px) {
  .hiw-steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hiw-protection-row,
  .hiw-protection-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .hiw-protection-img {
    order: -1;
  }

  .hiw-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hiw-hero h1 {
    font-size: 2.2rem;
  }

  .hiw-protection-text h2 {
    font-size: 1.8rem;
  }

  .hiw-features-heading h2 {
    font-size: 1.8rem;
  }

  .hiw-cta h2 {
    font-size: 1.8rem;
  }

  .hiw-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .hiw-hero {
    padding: 60px 0 40px;
  }

  .hiw-hero h1 {
    font-size: 1.8rem;
  }

  .hiw-step {
    padding: 32px 24px 28px;
  }
}

.schedule-hero {
  padding: 60px 0 20px;
}

.schedule-hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0095FF;
  font-weight: 500;
  font-size: 1.2rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(0, 149, 255, 0.45);
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.3s ease;
}

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

.form-input:focus {
  outline: none;
  border-color: #0095FF;
  background-color: rgba(0, 149, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(0, 149, 255, 0.45);
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

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

.form-textarea:focus {
  outline: none;
  border-color: #0095FF;
  background-color: rgba(0, 149, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.1);
}

.legal-page {
  padding: 80px 0 60px;
}

.mt-medium {
  margin-top: 2rem;
}

.mt-large {
  margin-top: 3rem;
}

.mb-small {
  margin-bottom: 1rem;
}

.mb-medium {
  margin-bottom: 2rem;
}

.mb-large {
  margin-bottom: 3rem;
}

/* ============================================================================
   22. RESPONSIVE DESIGN
   ============================================================================ */

/* Tablets & Large Phones (1199px and below) */
@media (max-width: 1199px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-container {
    gap: 40px;
  }

  .feature-row {
    gap: 40px;
  }

  .hardware-container {
    gap: 40px;
  }

  .footer-links-section {
    gap: 2rem;
  }
}

/* Medium Tablets (991px and below) */
@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .header-right {
    gap: 0.75rem;
  }

  /* Logo 20% smaller, nudge left */
  .logo img,
  .logo-img {
    height: 32px;
  }

  .logo {
    margin-left: -8px;
  }

  /* Stack flag + language code vertically */
  .nav-lang {
    flex-direction: column;
    gap: 2px;
    font-size: 0.65rem;
    text-align: center;
    line-height: 1;
  }

  .nav-lang img {
    width: 22px;
  }

  /* Login button 10% narrower */
  .btn-header {
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
  }

  .about-row,
  .about-row-reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-image img {
    max-width: 200px;
  }

  .hardware-container {
    flex-direction: column;
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-container {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

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

/* Small Phones (575px and below) */
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }

  .container,
  .header-container {
    padding: 0 20px;
  }

  h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 40px 0;
    min-height: auto;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-store-buttons {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
  }

  .store-btn img {
    height: 46px;
  }

  .stats-bar {
    padding: 40px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    padding: 1.5rem;
  }

  .pricing-grid,
  .pricing-grid.three-col {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

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

  .values-grid {
    gap: 1rem;
  }

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

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

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

  .footer-legal-links {
    justify-content: center;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .feature-list,
  .hardware-specs {
    margin-bottom: 1.5rem;
  }

  .feature-list li,
  .hardware-specs li {
    margin-bottom: 0.75rem;
    gap: 0.75rem;
  }
}

/* Extra Small Phones (375px and below) */
@media (max-width: 375px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

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

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

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

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 35px;
    width: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .hamburger-menu,
  .cta-banner,
  .contact-form-section,
  .footer {
    display: none;
  }

  body {
    background-color: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-cta-pill {
    display: none;
  }
}

/* ============================================================================
   PAGE-SPECIFIC CLASSES (agent-generated pages)
   ============================================================================ */

/* Sticky header alias */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Secondary button (outline style) */
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #0095ff;
  color: #0095ff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn-secondary:hover {
  background: #0095ff;
  color: #ffffff;
}

/* CTA button groups */
.cta-buttons,
.cta-actions,
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-banner .cta-actions {
  justify-content: center;
}

.cta-link {
  color: #0095ff;
  font-weight: 500;
  transition: color 0.3s;
}
.cta-link:hover { color: #007acc; }

/* Hero banner (inner pages) */
.hero-banner {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-banner .section-title { margin-bottom: 16px; }
.hero-banner .section-subtitle { max-width: 700px; margin: 0 auto; }

/* Hero badges (app store links) */
.hero-badge-link { display: inline-block; }
.hero-badge-img,
.hero-badge-coming { height: 48px; width: auto; }
.hero-badge-coming { opacity: 0.7; }
.badge-featured {
  position: relative;
  display: inline-block;
  background: #0095FF;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.coming-soon-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 4px;
}

/* Logo img utility */
.logo-img { height: 40px; width: auto; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
}
.stat-card .stat-number { font-size: 2.5rem; font-weight: 700; color: #0095ff; }
.stat-card .stat-label { font-size: 0.95rem; color: #9ca3af; margin-top: 4px; }

/* Feature rows (left/right alternation) */
.feature-row-left,
.feature-row-right {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.feature-row-right { flex-direction: row-reverse; }

/* Feature grid (How It Works) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Protection sections (How It Works) */
.protection-section {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.protection-section.reverse { flex-direction: row-reverse; }
.protection-content { flex: 1; }
.protection-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.protection-image { flex: 0 0 240px; text-align: center; }
.protection-image img { max-width: 240px; }

/* Pricing card featured variant */
.pricing-card-featured,
.pricing-card.featured {
  border: 2px solid #0095FF;
  transform: scale(1.03);
}
.pricing-card-featured:hover,
.pricing-card.featured:hover {
  border-color: #128768;
  box-shadow: 0 20px 60px rgba(18, 135, 104, 0.25);
}
.featured-badge {
  display: inline-block;
  background: #0095FF;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Price breakdown */
.currency { font-size: 1.5rem; vertical-align: super; }
.amount { font-size: 3rem; font-weight: 700; }
.period { font-size: 1rem; color: #9ca3af; }

/* Pricing note */
.pricing-note {
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hardware section */
.hardware-text { flex: 1; }
.hardware-cta { margin-top: 24px; }

/* What's Included grid */
.what-included { padding: 80px 0; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.included-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

/* Billing FAQ (pricing page) */
.faq-item {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-toggle {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #0095ff;
}
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* Problem / Solution sections (About page) */
.problem-section,
.solution-section {
  padding: 60px 0;
}
.problem-text,
.solution-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.problem-text p,
.solution-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Values card (About page variant) */
.values-card {
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.values-card.red {
  background: rgba(254, 66, 88, 0.1);
  border: 1px solid rgba(254, 66, 88, 0.3);
}
.values-card.blue {
  background: rgba(0, 149, 255, 0.1);
  border: 1px solid rgba(0, 149, 255, 0.3);
}

/* Contact method cards */
.contact-method {
  background: #1e293b;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.contact-method h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.contact-method p,
.contact-method a {
  color: #9ca3af;
}
.contact-method a:hover {
  color: #0095FF;
}

/* FAQ section (pricing page variant) */
section.faq {
  padding: 60px 0;
}

/* Social section (footer variant) */
.social-section { text-align: center; }

/* Thank you page variants */
.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-logo {
  max-width: 200px;
  margin: 0 auto 24px;
}

/* ============================================================================
   RESPONSIVE: Page-specific overrides
   ============================================================================ */
@media (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row-left,
  .feature-row-right { flex-direction: column; text-align: center; }
  .hero-image { flex: 0 0 auto; }
  .hero-image img { width: 260px; }
  .feature-image { flex: 0 0 auto; }
  .feature-image img { width: 180px; height: 180px; }
  .protection-section { flex-direction: column; text-align: center; }
  .protection-section.reverse { flex-direction: column; }
  .protection-image { flex: 0 0 auto; }
  .hero-banner { padding: 50px 0 40px; }
  .cta-buttons,
  .cta-actions,
  .hero-actions { justify-content: center; }
}

@media (max-width: 575px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .stat-card .stat-number { font-size: 2rem; }
  .cta-buttons,
  .cta-actions,
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ====================================================================
   PRICING PAGE
   ==================================================================== */

.pricing-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(18, 135, 104, 0.08) 0%, transparent 70%);
}

.pricing-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Cards Grid */
.pricing-section {
  padding: 60px 0 80px;
}

.pricing-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-section-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-cards-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  gap: 22px;
}

.pricing-cards-grid.four-col .pricing-card-item {
  padding: 48px 24px 36px;
}

.pricing-cards-grid.four-col .plan-price-value {
  font-size: 2.8rem;
}

.pricing-cards-grid.four-col .plan-features-list {
  font-size: 0.95rem;
}

.pricing-card-item {
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border: 1.5px solid rgba(0, 149, 255, 0.2);
  border-radius: 20px;
  padding: 48px 28px 36px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-item:hover {
  border-color: #0095FF;
  box-shadow: 0 8px 30px rgba(0, 149, 255, 0.1);
}

.pricing-card-item.featured {
  border-color: #0095FF;
  box-shadow: 0 10px 30px rgba(0, 149, 255, 0.15);
}

.pricing-card-item.lifetime {
  border-color: #D4A843;
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.15);
  background: linear-gradient(160deg, #1a1f30 0%, #131a2b 100%);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0095FF;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card-badge.gold {
  background: linear-gradient(135deg, #D4A843, #B8902E);
  color: #111827;
}

.pricing-card-item .plan-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 12px;
}

/* Global billing toggle */
.global-billing-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 5px;
  margin: 0 auto 48px;
  width: fit-content;
  border: 1.5px solid rgba(0, 149, 255, 0.2);
}

.global-billing-toggle button {
  padding: 12px 38px;
  border: none;
  border-radius: 36px;
  background: transparent;
  color: #9ca3af;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.global-billing-toggle button.active {
  background: linear-gradient(135deg, #0095FF 0%, #0070cc 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 149, 255, 0.3);
}

.global-billing-toggle button:hover:not(.active) {
  color: #fff;
}

.save-badge {
  display: inline-block;
  background: #128768;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

.price-strike {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 0.5em;
  margin-right: 4px;
}

.adapter-note {
  color: #0095FF;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
  min-height: 20px;
}

.pricing-card-item .plan-price-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0095FF;
  margin: 8px 0;
}

.pricing-card-item.lifetime .plan-price-value {
  color: #D4A843;
}

.pricing-card-item .plan-period {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.plan-coverage-badge {
  color: #0095FF;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(0, 149, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Fixed-height top box for card alignment */
.plan-top-box {
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.pricing-card-item.lifetime .plan-name {
  margin-bottom: 2px;
}

.plan-subtitle-lifetime {
  font-size: 0.92rem;
  color: #D4A843;
  font-weight: 500;
  margin: 0 0 4px;
  opacity: 0.85;
}

.pricing-card-item.lifetime .adapter-note {
  color: #D4A843;
}

.pricing-card-item.lifetime .plan-coverage-badge {
  color: #D4A843;
  background: rgba(212, 168, 67, 0.08);
}

.pricing-card-item .plan-features-list {
  text-align: left;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}

.pricing-card-item .plan-features-list li {
  padding-left: 26px;
  position: relative;
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-card-item .plan-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0095FF;
  font-weight: bold;
  font-size: 1.1em;
}

.pricing-card-item.lifetime .plan-features-list li::before {
  color: #D4A843;
}

.plan-savings-badge {
  background: #0095FF;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

.pricing-card-item.lifetime .plan-savings-badge {
  background: linear-gradient(135deg, #D4A843, #B8902E);
  color: #111827;
}

.plan-urgency-text {
  color: #FE4258;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.plan-cta-area {
  margin-top: auto;
  padding-top: 16px;
}

.plan-cta-area .btn {
  width: 100%;
}

.plan-highlight-text {
  font-weight: 600;
  color: #FE4258;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
}

.comparison-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border-radius: 16px;
  border: 1.5px solid rgba(0, 149, 255, 0.15);
}

.comparison-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

.comparison-table-wrap th {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 20px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1.5px solid rgba(0, 149, 255, 0.15);
}

.comparison-table-wrap td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.comparison-table-wrap tr:last-child td {
  border-bottom: none;
}

.comparison-table-wrap .tbl-feature {
  color: #9ca3af;
  font-weight: 500;
}

.comparison-table-wrap .tbl-check {
  text-align: center;
  color: #0095FF;
  font-weight: 600;
}

.comparison-table-wrap .tbl-check.gold {
  color: #D4A843;
}

/* Hardware Section */
.hardware-section {
  padding: 80px 0;
}

.hardware-card {
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border: 1.5px solid rgba(0, 149, 255, 0.15);
  border-radius: 20px;
  padding: 60px 40px;
}

.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hardware-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.hardware-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0095FF;
  margin-bottom: 20px;
}

.hardware-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #9ca3af;
  margin-bottom: 14px;
}

.hardware-specs-list {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 20px 0;
  list-style: none;
}

.hardware-specs-list li {
  padding-left: 24px;
  position: relative;
  color: #9ca3af;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.hardware-specs-list li:last-child {
  margin-bottom: 0;
}

.hardware-specs-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0095FF;
  font-weight: bold;
}

.hardware-specs-list li strong {
  color: #d1d5db;
}

.hardware-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hardware-img img {
  max-width: 100%;
  max-height: 360px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 149, 255, 0.35)) drop-shadow(0 0 80px rgba(0, 149, 255, 0.15));
}

/* What's Included */
.included-section {
  padding: 80px 0;
}

.included-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

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

.included-card-item {
  background: linear-gradient(160deg, #131a2b 0%, #0f1219 100%);
  border: 1.5px solid rgba(0, 149, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.included-card-item:hover {
  border-color: #128768;
  transform: translateY(-4px);
}

.included-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 149, 255, 0.1);
  border-radius: 14px;
  color: #0095FF;
}

.included-card-item:hover .included-card-icon {
  background: rgba(18, 135, 104, 0.15);
  color: #128768;
}

.included-card-icon svg {
  width: 26px;
  height: 26px;
}

.included-card-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.included-card-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* Billing FAQ */
.billing-faq {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.billing-faq h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-note-text {
  text-align: center;
  color: #9ca3af;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* Pricing CTA */
.pricing-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 135, 104, 0.08) 0%, rgba(0, 149, 255, 0.06) 100%);
  border-top: 1px solid rgba(18, 135, 104, 0.15);
  border-bottom: 1px solid rgba(18, 135, 104, 0.15);
}

.pricing-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.pricing-cta p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 32px;
}

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

/* Pricing Responsive */
@media (max-width: 1200px) {
  .pricing-cards-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-cards-grid.four-col {
    grid-template-columns: 1fr;
    max-width: 480px;
  }


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

  .hardware-img {
    order: -1;
  }

  .included-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .comparison-table-wrap table {
    min-width: 800px;
  }
}

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.2rem;
  }

  .comparison-section h2,
  .included-section h2,
  .billing-faq h2,
  .pricing-cta h2 {
    font-size: 1.8rem;
  }

  .hardware-card {
    padding: 40px 24px;
  }

  .pricing-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .pricing-hero {
    padding: 60px 0 40px;
  }

  .pricing-hero h1 {
    font-size: 1.8rem;
  }

  .pricing-card-item {
    padding: 32px 20px 28px;
  }

  .pricing-card-item .plan-price-value {
    font-size: 2.2rem;
  }
}
