/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

html {
  height: 100%;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */

:root {
  --lightBg: #fefefe;
  --darkText: #0d0d0d;
  --darkBg: #001745;
  --accentBlue: #024ce0;
  --accentGreen: #02c67c;
  --accentBlue-2: #0274b3;
  --accentBlue-3: #00968a;
  --accentMid: #0081a1;
  --lightText: #fefefe;
  --accentBlue-rgb: 2, 76, 224;
  --accentGreen-rgb: 2, 198, 124;
  --darkBg-rgb: 0, 23, 69;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f8f9ff;
  --gray-border: #e0e0e0;
  --gray-text: #666;
}

/* ============================================
   BODY & TYPOGRAPHY
   ============================================ */

body {
  background-color: var(--lightBg);
  color: var(--darkText);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

p,
span,
li,
a,
small,
button {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0s ease,
    box-shadow 0s ease;
}

.header.scrolled {
  background-color: rgba(var(--darkBg-rgb), 0.95);
  box-shadow: 0 2px 10px rgba(var(--black), 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--darkBg);
}

.navbar .logo {
  padding: 0px;
}

img {
  height: 60px;
  width: auto;
  margin-left: 20px;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--lightText);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu li:nth-child(1) a:hover {
  color: var(--accentBlue);
}

.nav-menu li:nth-child(2) a:hover {
  color: var(--accentBlue-2);
}

.nav-menu li:nth-child(3) a:hover {
  color: var(--accentBlue-3);
}

.nav-menu li:nth-child(4) a:hover {
  color: var(--accentGreen);
}

.nav-menu .cta a {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--lightText);
  background: linear-gradient(
    145deg,
    rgba(var(--accentBlue-rgb), 0.8) 0%,
    var(--accentMid) 50%,
    rgba(var(--accentGreen-rgb), 0.8) 100%
  );
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-menu .cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--black), 0.2);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 0.6rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--darkBg);
  border: 1px solid var(--accentBlue);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 2000;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: var(--lightText);
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--lightText);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-secondary {
  background-color: transparent;
  color: var(--accentBlue);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid var(--accentBlue);
  border-radius: 4px;
  margin-right: 1rem;
}

.btn-primary {
  background-color: var(--accentBlue);
  color: var(--lightText);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid var(--accentBlue);
  border-radius: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 5rem 0;
}

#hero {
  background: var(--darkBg);
  text-align: center;
  padding-top: 120px; /* Space for fixed header */
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--lightText);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--lightText);
}

#hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#hero .hero-actions .btn-primary,
#hero .hero-actions .btn-secondary {
  min-width: 238px;
  margin: 0;
  text-align: center;
  border: 0;
}

#hero .hero-actions a:nth-child(1) {
  background: linear-gradient(135deg, #0263e0 0%, var(--accentBlue) 100%);
}

#hero .hero-actions a:nth-child(2) {
  background: linear-gradient(
    90deg,
    var(--accentBlue) 0%,
    var(--accentMid) 50%,
    var(--accentGreen) 100%
  );
}

#hero .hero-actions a:nth-child(3) {
  background: linear-gradient(135deg, var(--accentGreen) 0%, #00b86f 100%);
}

/* About Page - Hero Section */
.hero,
#hero-about {
  background: linear-gradient(
    135deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  color: var(--lightText);
  text-align: center;
  padding: 120px 2rem 6rem 2rem;
}

.hero h1,
#hero-about h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--lightText);
}

.hero p,
#hero-about p {
  font-size: 1.3rem;
  color: var(--lightText);
  opacity: 0.95;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--lightBg);
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--darkText);
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--darkText);
  max-width: 600px;
  margin: 0 auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--lightBg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(var(--accentBlue-rgb), 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accentBlue), var(--accentGreen));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(var(--accentBlue-rgb), 0.15);
  border-color: var(--accentBlue);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accentBlue), var(--accentGreen));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--lightText);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--darkText);
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.feature-card p {
  color: var(--darkText);
  line-height: 1.8;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Company Values Section */
.company-values {
  padding: 5rem 2rem;
  background-color: var(--lightBg);
}

.story-text {
  max-width: 900px;
  margin: 2rem auto 0;
}

.story-text p {
  color: var(--darkText);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--lightBg);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--accentBlue);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(var(--accentBlue-rgb), 0.2);
  border-color: var(--accentGreen);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accentBlue);
}

.value-card p {
  color: var(--darkText);
  line-height: 1.8;
}

/* Team Section */
.team-section {
  padding: 5rem 2rem;
  background-color: var(--lightBg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--lightBg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(2, 76, 224, 0.2);
}

.member-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accentBlue), var(--accentGreen));
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-left: 0;
}

.member-info {
  padding: 2.5rem;
}

.member-info h3 {
  font-size: 1.5rem;
  color: var(--accentBlue);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 0.95rem;
  color: var(--accentGreen);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--darkText);
  line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 2rem;
  background-color: var(--lightBg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: var(--lightBg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accentBlue);
  transition: all 0.3s ease;
  position: relative;
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(var(--accentBlue-rgb), 0.15);
  border-left-color: var(--accentGreen);
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accentBlue), var(--accentGreen));
  color: var(--lightText);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.3rem;
  color: var(--darkText);
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--darkText);
  line-height: 1.8;
}

/* Stats Section */
.stats {
  background: var(--lightBg);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(var(--accentBlue-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--accentBlue-rgb), 0.1);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accentBlue);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.stat-item p {
  color: var(--darkText);
  font-size: 1rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* USP Section */
.usp {
  background: linear-gradient(
    135deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  color: var(--lightText);
  padding: 5rem 2rem;
  text-align: center;
}

.usp-container {
  max-width: 900px;
  margin: 0 auto;
}

.usp h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.usp-container > p {
  font-size: 1.1rem;
  opacity: 0.95;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

.usp-item {
  background: rgba(var(--white), 0.15);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(var(--white), 0.3);
  transition: all 0.3s ease;
}

.usp-item:hover {
  background: rgba(var(--white), 0.25);
  transform: translateY(-5px);
}

.usp-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.usp-item p {
  opacity: 0.95;
  line-height: 1.8;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--lightText);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.vision-mission-content h3 {
  font-size: 1.5rem;
  color: var(--accentBlue);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.vision-mission-content p {
  font-size: 1.1rem;
  color: var(--darkText);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.vision-mission-highlight {
  background: rgba(var(--accentBlue-rgb), 0.08);
  padding: 1.5rem;
  border-left: 4px solid var(--accentBlue);
  border-radius: 4px;
  margin-top: 2rem;
}

.vision-mission-highlight strong {
  color: var(--accentBlue);
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--darkBg) 0%,
    rgba(var(--darkBg-rgb), 0.9) 100%
  );
  color: var(--lightText);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.btn-primary-cta {
  background-color: var(--accentBlue);
  color: var(--lightText);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid var(--accentBlue);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accentBlue-rgb), 0.4);
}

/* CTA Section About */
.cta-section-about {
  background: linear-gradient(
    135deg,
    var(--darkBg) 0%,
    rgba(var(--darkBg-rgb), 0.9) 100%
  );
  color: var(--lightText);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section-about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cta-section-about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.btn-primary-cta-about {
  background-color: var(--accentBlue);
  color: var(--lightText);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid var(--accentBlue);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.btn-primary-cta-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accentBlue-rgb), 0.4);
}

/* Scroll Animation (disabled) */
.scroll-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.scroll-reveal.active {
  opacity: 1;
  transform: none;
}

/* Dark theme support */
body.dark .features,
body.dark .vision-mission,
body.dark .company-values,
body.dark .team-section,
body.dark .why-choose-us {
  background-color: var(--lightBg);
}

body.dark .stats {
  background-color: var(--lightBg);
  border-top-color: rgba(var(--white), 0.1);
  border-bottom-color: rgba(var(--white), 0.1);
}

body.dark .feature-card,
body.dark .value-card,
body.dark .team-member,
body.dark .why-item {
  background: var(--lightBg);
  border-color: rgba(var(--accentBlue-rgb), 0.2);
}

body.dark .section-title h2,
body.dark .section-title p,
body.dark .feature-card h3,
body.dark .feature-card p,
body.dark .stat-item p,
body.dark .vision-mission-content h3,
body.dark .vision-mission-content p,
body.dark .value-card h3,
body.dark .value-card p,
body.dark .member-info h3,
body.dark .member-bio,
body.dark .why-item h3,
body.dark .why-item p {
  color: var(--darkText);
}

body.dark .vision-mission-highlight {
  background: rgba(var(--accentBlue-rgb), 0.08);
}

body.dark .value-card {
  border-color: var(--accentBlue);
}

body.dark .why-item {
  border-left-color: var(--accentBlue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .usp h2 {
    font-size: 2rem;
  }

  .cta-section h2,
  .cta-section-about h2 {
    font-size: 2rem;
  }

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

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features {
    padding: 4rem 1rem;
  }

  .vision-mission {
    padding: 4rem 1rem;
  }

  .usp {
    padding: 4rem 1rem;
  }

  .cta-section,
  .cta-section-about {
    padding: 4rem 1rem;
  }

  .stats {
    padding: 3rem 1rem;
  }

  .stat-item h4 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .usp-item {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .usp-item h3 {
    font-size: 1.3rem;
  }

  .company-values {
    padding: 4rem 1rem;
  }

  .story-text {
    margin-top: 1.5rem;
  }

  .story-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .team-section {
    padding: 4rem 1rem;
  }

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

  .why-choose-us {
    padding: 4rem 1rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .vision-mission-content h3 {
    font-size: 1.2rem;
  }

  .vision-mission-content p {
    font-size: 0.95rem;
  }

  .cta-section p,
  .cta-section-about p {
    font-size: 1rem;
  }

  .btn-primary-cta,
  .btn-primary-cta-about {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .stat-item h4 {
    font-size: 1.8rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .usp-grid {
    gap: 1rem;
  }

  .team-member {
    margin-bottom: 1rem;
  }

  .member-image {
    height: 200px;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .why-item h3 {
    font-size: 1.1rem;
  }

  .why-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  margin-top: auto;
  background-color: var(--darkBg);
  color: var(--lightText);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(var(--white), 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

.footer-col {
  flex: 1;
  min-width: 1px;
}

.footer-col-info {
  flex: 2;
  max-width: 350px;
  margin-right: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accentBlue);
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--lightText);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

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

.footer-col-info .logo img {
  height: 60px;
  margin-left: 0;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(var(--white), 0.8);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-col-info {
    max-width: 100%;
  }
}

/* ============================================
   MOBILE RESPONSIVENESS & HAMBURGER MENU
   ============================================ */

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  /* Show hamburger menu */
  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000; /* Ensure it's above other elements */
  }

  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--lightText);
    transition: all 0.3s ease-in-out;
  }

  /* Hamburger animation to 'X' */
  .hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 70%;
    height: 100vh;
    background-color: var(--darkBg);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    gap: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.is-active {
    right: 0; /* Slide in */
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    padding: 0.75rem 0;
    display: block;
    font-size: 1.2rem;
  }

  /* Dark mode toggle on mobile */
  .dark-mode-toggle {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  #dark-mode-btn {
    font-size: 1.5rem;
  }

  /* Remove dropdown functionality on mobile to simplify */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static; /* Allow dropdown to flow naturally */
    border: none;
    box-shadow: none;
    margin-top: 0.5rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background-color: rgba(
      0,
      0,
      0,
      0.2
    ); /* Slightly different background for sub-menu */
    min-width: auto;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  /* Ensure the CTA button is styled correctly */
  .nav-menu .cta a {
    display: inline-block;
  }
}

/* General mobile adjustments */
@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem;
  }
}
/* ============================================
   DEMO PAGE STYLES
   ============================================ */

.demo-main {
  flex: 1;
}

/* Demo Form Section */
.demo-form-section {
  padding: 4rem 2rem;
  background-color: var(--lightBg);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.demo-content h2,
.demo-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--darkText);
}

/* Demo Video Container */
.demo-video-container {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f4ff;
  border: 2px solid #024ce0;
}

.demo-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.demo-placeholder:hover {
  background-color: #e5ecff;
}

.demo-placeholder p {
  margin-top: 1rem;
  color: var(--accentBlue);
  font-weight: 500;
}

/* Demo Features */
.demo-features {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
}

.demo-features h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.demo-features ul {
  list-style: none;
}

.demo-features li {
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--darkText);
  border-bottom: 1px solid var(--gray-border);
}

.demo-features li:last-child {
  border-bottom: none;
}

/* Form Container */
.demo-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--darkText);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accentBlue);
  box-shadow: 0 0 0 3px rgba(var(--accentBlue-rgb), 0.1);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}

.form-group.checkbox label {
  margin-bottom: 0;
}

.form-group.checkbox a {
  color: #024ce0;
  text-decoration: none;
}

.form-group.checkbox a:hover {
  text-decoration: underline;
}

.form-note {
  font-size: 0.85rem;
  color: #666;
  text-align: right;
}

/* Buttons */
.btn {
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accentBlue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accentBlue-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accentBlue-rgb), 0.3);
}

.btn-secondary {
  background-color: var(--accentGreen);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #02a563;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accentGreen-rgb), 0.3);
}

/* Benefits Section */
.demo-benefits {
  background-color: var(--gray-light);
  padding: 4rem 0;
}

.demo-benefits h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Interactive Demo Section */
.interactive-demo {
  padding: 4rem 0;
  background-color: var(--white);
}

.interactive-demo h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.calculator-demo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: flex-end;
  background-color: var(--gray-light);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.input-group input {
  padding: 0.8rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.input-group input:focus {
  outline: none;
  border-color: #024ce0;
  box-shadow: 0 0 0 3px rgba(2, 76, 224, 0.1);
}

.demo-result {
  background-color: #e8f5e9;
  border-left: 4px solid #02c67c;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.demo-result h3 {
  color: var(--accentGreen);
  margin-bottom: 1rem;
}

.demo-result p {
  color: #333;
  margin: 0.5rem 0;
}

.demo-result strong {
  color: var(--accentBlue);
  font-size: 1.2rem;
}

/* CTA Section */
.demo-cta {
  background: linear-gradient(
    135deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.demo-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.demo-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .demo-content h2,
  .demo-form-container h2 {
    font-size: 1.5rem;
  }

  .calculator-demo {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   HOW IT WORKS PAGE STYLES
   ============================================ */

.hero-howitworks {
  background: linear-gradient(135deg, #024ce0 0%, #02c67c 100%);
  color: var(--lightText);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 100px 0;
  text-align: center;
  min-height: 60vh;
}

.hero-howitworks h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--lightText);
  line-height: 1.2;
}

.hero-howitworks p {
  font-size: 1.3rem;
  color: rgba(254, 254, 254, 0.9);
  line-height: 1.6;
}

/* How it Works Section */
.howitworks-section {
  padding: 6rem 0;
  background-color: var(--lightBg);
}

.howitworks-section:nth-child(odd) {
  background-color: rgba(2, 76, 224, 0.03);
}

/* Intro Section */
.intro-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--darkText);
}

.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.intro-image {
  width: 100%;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  background-color: var(--lightBg);
}

.steps-container {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step-item {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(2, 76, 224, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-item:hover {
  transform: translateY(-10px);
  border-color: var(--accentBlue);
  box-shadow: 0 15px 40px rgba(2, 76, 224, 0.2);
}

.step-number {
  background: linear-gradient(
    135deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  padding: 1.5rem;
  text-align: center;
}

.step-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--darkText);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-image {
  width: 100%;
  margin-top: auto;
}

.step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--accentBlue);
  font-weight: 600;
}

/* Features Highlight Section */
.features-highlight {
  background-color: rgba(2, 76, 224, 0.03);
}

.feature-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card-howitworks {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(2, 76, 224, 0.1);
  transition: all 0.3s ease;
}

.feature-card-howitworks:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2, 76, 224, 0.15);
  border-color: var(--accentBlue);
}

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

.feature-card-howitworks h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--accentBlue);
}

.feature-card-howitworks p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Demo Section */
.demo-section {
  background: linear-gradient(
    135deg,
    var(--darkBg) 0%,
    rgba(var(--darkBg-rgb), 0.9) 100%
  );
  color: var(--lightText);
  padding: 6rem 0;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.demo-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: var(--lightText);
}

.demo-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(var(--white), 0.9);
  line-height: 1.7;
}

.demo-image {
  width: 100%;
}

.demo-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(var(--black), 0.3);
}

/* Responsive How it Works */
@media (max-width: 768px) {
  .hero-howitworks {
    padding: 120px 2rem 60px 2rem;
    min-height: auto;
  }

  .hero-howitworks h1 {
    font-size: 2rem;
  }

  .hero-howitworks p {
    font-size: 1rem;
  }

  .intro-section .container {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-item {
    max-width: 100%;
    min-width: auto;
  }

  .step-arrow {
    display: none;
  }

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

  .demo-container {
    grid-template-columns: 1fr;
  }

  .demo-content h2 {
    font-size: 1.8rem;
  }

  .howitworks-section {
    padding: 4rem 2rem;
  }

  .intro-text {
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

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

  .hero {
    padding: 120px 1rem 4rem 1rem;
  }

  .demo-form-container {
    padding: 1.5rem;
  }

  .demo-benefits h2,
  .interactive-demo h2,
  .demo-cta h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }
}

/* Contact Page Styles */
.contact-main {
  flex: 1;
}

.contact-section {
  padding: 4rem 2rem;
  background-color: var(--lightBg);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(2, 76, 224, 0.06);
  border: 1px solid rgba(2, 76, 224, 0.06);
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--darkText);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form .form-actions {
  margin-top: 1rem;
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(var(--accentBlue-rgb), 0.04),
    rgba(var(--accentGreen-rgb), 0.03)
  );
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 76, 224, 0.06);
}

.contact-info h3 {
  color: var(--accentBlue);
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accentBlue);
  text-decoration: none;
  font-weight: 600;
}

.contact-info p {
  color: var(--darkText);
  margin-bottom: 0.5rem;
}

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

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}
/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.hero-product {
  background: linear-gradient(
    135deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  color: var(--lightText);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0 80px 0;
  gap: 3rem;
  min-height: 80vh;
}

.hero-product .hero-content {
  flex: 1;
  padding-left: 2rem;
}

.hero-product h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--lightText);
  line-height: 1.2;
}

.hero-product p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(254, 254, 254, 0.9);
  line-height: 1.6;
}

.hero-product .hero-image {
  flex: 1;
  padding-right: 2rem;
}

.hero-product .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Product Section Styles */
.product-section {
  padding: 6rem 0;
  background-color: var(--lightBg);
}

.product-section:nth-child(odd) {
  background-color: rgba(2, 76, 224, 0.03);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--darkText);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Definition Section */
.definition-section {
  background-color: var(--lightBg);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--darkText);
}

.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #024ce0 0%, #02c67c 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-item p {
  color: #333;
  line-height: 1.6;
}

.section-image {
  width: 100%;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Section */
.why-section {
  background-color: rgba(2, 76, 224, 0.03);
}

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

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(2, 76, 224, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(2, 76, 224, 0.15);
  border-color: var(--accentBlue);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accentBlue);
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Features Detailed Section */
.features-section {
  background-color: var(--lightBg);
}

.features-detailed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.feature-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-detailed-item.reverse {
  direction: rtl;
}

.feature-detailed-item.reverse > * {
  direction: ltr;
}

.feature-detail-image {
  width: 100%;
}

.feature-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-detail-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--darkText);
}

.feature-detail-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #001745 0%, rgba(0, 23, 69, 0.9) 100%);
  color: var(--lightText);
  text-align: center;
  padding: 6rem 0;
}

.cta-container {
  max-width: 700px;
}

.cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--lightText);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(254, 254, 254, 0.9);
  line-height: 1.6;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  background-color: white;
  color: var(--accentBlue);
  border: 2px solid white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-large:hover {
  background-color: transparent;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Product Page */
@media (max-width: 768px) {
  .hero-product {
    flex-direction: column;
    padding: 100px 2rem 4rem 2rem;
    min-height: auto;
  }

  .hero-product .hero-content {
    padding-left: 0;
  }

  .hero-product h1 {
    font-size: 2rem;
  }

  .hero-product p {
    font-size: 1rem;
  }

  .hero-product .hero-image {
    padding-right: 0;
  }

  .section-content {
    grid-template-columns: 1fr;
  }

  .feature-detailed-item {
    grid-template-columns: 1fr;
  }

  .feature-detailed-item.reverse {
    direction: ltr;
  }

  .product-section {
    padding: 4rem 2rem;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   PAGE-SPECIFIC STYLING FOR VARIETY
   ============================================ */

/* Product Overview Page - 3 Column Layout */
.prodct-page .benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.prodct-page .benefit-card {
  background: linear-gradient(135deg, #fefefe 0%, rgba(2, 76, 224, 0.02) 100%);
  border-left: 4px solid var(--accentBlue);
}

.prodct-page .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 76, 224, 0.2);
}

.prodct-page .why-section {
  background: linear-gradient(
    180deg,
    rgba(2, 198, 124, 0.05) 0%,
    rgba(2, 76, 224, 0.03) 100%
  );
}

.prodct-page .definition-section {
  position: relative;
  overflow: hidden;
}

.prodct-page .definition-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 76, 224, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

.prodct-page .section-content {
  position: relative;
  z-index: 1;
}

/* How It Works Page - Styled Steps */
.howitworks-page .step-item {
  border-top: 5px solid var(--accentGreen);
  box-shadow: 0 5px 20px rgba(2, 76, 224, 0.1);
}

.howitworks-page .step-number {
  background: linear-gradient(135deg, #024ce0 0%, #02c67c 100%);
  font-size: 2rem;
}

.howitworks-page .feature-card-howitworks {
  border-left: 4px solid var(--accentGreen);
  background: white;
  border-top: none;
  border: 1px solid rgba(2, 198, 124, 0.2);
  border-left: 4px solid var(--accentGreen);
}

.howitworks-page .feature-card-howitworks:hover {
  border-color: var(--accentGreen);
  background: linear-gradient(
    135deg,
    rgba(2, 198, 124, 0.02),
    rgba(2, 76, 224, 0.02)
  );
}

.howitworks-page .intro-section {
  background: linear-gradient(
    90deg,
    rgba(2, 198, 124, 0.05) 0%,
    transparent 100%
  );
}

/* Security Page - Highlighted Cards */
.security-page .benefit-card {
  background: var(--white);
  border: 2px solid rgba(2, 76, 224, 0.1);
  position: relative;
}

.security-page .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accentBlue) 0%,
    var(--accentGreen) 100%
  );
  border-radius: 2px 2px 0 0;
}

.security-page .benefit-card:hover {
  border-color: var(--accentBlue);
  box-shadow: 0 15px 40px rgba(2, 76, 224, 0.15);
  transform: translateY(-8px);
}

.security-page .why-section {
  background: linear-gradient(
    180deg,
    rgba(2, 76, 224, 0.02) 0%,
    rgba(2, 198, 124, 0.02) 100%
  );
}

.security-page .definition-section {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(2, 198, 124, 0.08) 100%
  );
}

.security-page .section-image img {
  border: 2px solid rgba(2, 76, 224, 0.1);
}

.privacy-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content h1 {
  margin-bottom: 2rem;
}

.privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-content h3 {
  margin: 0 0 0.75rem 0;
}

.privacy-content p {
  margin: 0 0 1.25rem 0;
  line-height: 1.8;
}

.privacy-content ul {
  margin: 0 0 1.5rem 1.25rem;
  padding-left: 1.25rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.privacy-list-block {
  margin-bottom: 2rem;
}

/* Use Cases Page - Numbered Cards */
.use-page .benefit-card {
  background: white;
  counter-increment: card-count;
  border: 1px solid rgba(2, 76, 224, 0.1);
  position: relative;
  padding-top: 3rem;
}

.use-page .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #024ce0 0%, #02c67c 100%);
}

.use-page .benefit-icon {
  font-size: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(2, 76, 224, 0.1),
    rgba(2, 198, 124, 0.1)
  );
  border-radius: 12px;
  margin-bottom: 1rem;
}

.use-page .benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(2, 76, 224, 0.2);
  border-color: var(--accentBlue);
}

.use-page .why-section {
  background: linear-gradient(
    135deg,
    rgba(2, 76, 224, 0.04) 0%,
    rgba(2, 198, 124, 0.04) 100%
  );
}

.use-page .features-detailed {
  gap: 3rem;
}

.use-page .feature-detailed-item {
  position: relative;
}

.use-page .feature-detail-text {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--accentBlue);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .prodct-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .howitworks-page .benefit-card-howitworks {
    margin: 0;
  }
}

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

  .use-page .benefit-card:hover {
    transform: translateY(-8px);
  }

  .security-page .benefit-card::before {
    height: 3px;
  }

  .use-page .benefit-card::before {
    height: 4px;
  }
}

/* ============================================
   MOBILE STABILITY FIXES (NO DESKTOP CHANGES)
   ============================================ */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .navbar img.logo,
  .footer img.logo {
    height: 52px;
    width: auto;
  }

  #hero {
    padding-top: 110px;
  }

  #hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  #hero p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  #hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  #hero .btn-primary,
  #hero .btn-secondary {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

  .features-grid,
  .values-grid,
  .why-grid,
  .usp-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .value-card,
  .why-item,
  .usp-item,
  .benefit-card,
  .section-text,
  .section-image {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.65rem;
  }

  #hero p {
    font-size: 1rem;
  }
}
