/* ===== VARIABLES & RESET ===== */
:root {
  --primary-color: #0A3652;
  --footer-color: #062336;
  --accent-color: #134a6d;
  --email-color: #4361EE;
  --email-hover: #304bd6;
  --bg-color: #F8F9FA;
  --surface-color: #FFFFFF;
  --text-color: #333333;
  --text-muted: #666666;
  --footer-height: 46px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'Inter', sans-serif;
  --nav-height: 80px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* ===== NAVIGATION ===== */
.navbar {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item a {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
  position: relative;
}

.nav-item a:hover {
  color: var(--accent-color);
}

.nav-logo {
  height: 40px;
  width: auto;
}

/* Hamburger - simplified for brevity, assume JS toggles .active on nav-menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

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

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }

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

/* ===== HERO SECTION ===== */
.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 40px;
  background: radial-gradient(circle at top right, #eef2ff 0%, #ffffff 50%);
  text-align: center;
  flex-direction: column;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-logo {
  height: 250px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(67, 97, 238, 0.2));
  animation: float 6s ease-in-out infinite;
}

.hero-slogan {
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.logo a {
  display: flex;
  align-items: center;
}

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

.hero-subtitle {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ===== BANNER ===== */
.banner-container {
  position: relative;
  width: 100%;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-color), #1a4d6e);
  color: white;
  text-align: center;
}

.banner-text {
  max-width: 900px;
  margin: 20px auto 15px auto;
}

.banner-text p {
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: clamp(28px, 5vw, 42px);
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
  position: relative;

}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 5px auto 0;
  border-radius: 2px;
}

.section-title-white {
  font-size: clamp(28px, 5vw, 42px);
  color: white;
  text-align: center;
  font-weight: 700;
  position: relative;

}

.section-title-white::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 5px auto 0;
  border-radius: 2px;
}

/* ===== CARDS & GRIDS ===== */
.steps-container,
.feature-container,
.different-grid,
.team-grid,
.benefits-wrapper,
.contact-content,
.privacy-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* How It Works */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 250px;
  background: var(--surface-color);
  padding: 25px 25px 30px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Features */
.feature-container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0px 50px 40px 50px;
}

.feature-container:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-image {
  flex: 1;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Why Different */
.different-container {
  background-color: white;
  padding: 40px 5px;
}

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

.different-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.different-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.different-card ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--text-color);
}

.different-card ul li::before {
  content: "✔";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Benefits */
.benefits-container {
  background-color: transparent;
  padding: 20px 5px;
}

.benefits-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefits-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.benefits-column h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.benefit-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: none;
  border-left: 2px solid var(--accent-color);
  padding-left: 15px;
}

.benefit-item h4 {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 5px;
}

/* Contact */
.contact-container {
  background-color: var(--primary-color);
  padding: 10px 0px 20px;
  color: white;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 20px 0px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: left;
}

.contact-item h3 {
  color: #a5b4fc;
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-email a {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--email-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}

.contact-email a:hover {
  background-color: var(--email-hover);
  transform: translateY(-2px);
}

/* Partners */
.partners-container {
  text-align: center;
  padding: 80px 20px;
}

.partners-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  align-items: center;
  width: 100%;
  background: white;
  padding: 10px 15px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.partner-logo {
  width: 60px;
  height: 60px;
  background-color: #eee;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.partner-info {
  text-align: left;
}

.partner-name {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s;
}

.team-card h4 {
  margin: -3px 0px 10px;
  color: var(--accent-color);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
}

.faq-question {
  color: var(--accent-color);
}

/* Footer */
.footer {
  background-color: var(--footer-color);
  color: white;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  height: var(--footer-height);
}

.footer-item {
  opacity: 0.9;
}

.footer-item:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 100px auto 20px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-text {
  padding: 15px;
}

.legal-text p {
  margin: 15px 0px;
}

.legal-text ul {
  padding: 0px 40px;
  list-style: disc;
}

.legal-text h1 {
  color: var(--primary-color);
}

.legal-text h2 {
  color: var(--primary-color);
  margin-top: 20px;
}

.legal-text h3 {
  color: var(--primary-color);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-slogan {
    font-size: 40px;
  }

  .feature-container {
    flex-direction: column !important;
  }

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

/* Contact Form Page */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background-color: var(--email-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.divider-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.divider-container::before,
.divider-container::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #eee;
}

.divider-container:not(:empty)::before {
  margin-right: .25em;
}

.divider-container:not(:empty)::after {
  margin-left: .25em;
}

.divider-text {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 0 10px;
}

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

.btn-email {
  display: inline-block;
  padding: 15px 40px;
  background-color: white;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-email:hover {
  background-color: #f0f4ff;
  text-decoration: none;
}

/* App Login */
.app-container {
  min-height: calc(100vh - var(--footer-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top right, #eef2ff 0%, #ffffff 50%);
  text-align: center;
  flex-direction: column;
  padding-top: 40px;
}