/* ========== Base Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fff;
}

/* ========== Typography ========== */
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: #444;
}

strong {
  font-weight: 600;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ========== Layout Utilities ========== */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse .text-block,
.two-col.reverse .image-block {
  direction: ltr;
}

.text-block {
  color: #222;
}

.image-block img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-block img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ========== Header ========== */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: #007aff;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007aff;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.apply-btn {
  background: #007aff;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 255, 0.2);
}

.apply-btn:hover {
  background: #005ed1;
  transform: translateY(-1px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-nav.active {
    display: flex;
  }
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .two-col.reverse .text-block {
    order: 2;
  }
  .two-col.reverse .image-block {
    order: 1;
  }
}

/* ========== Hero Section ========== */
.brand-hero {
  position: relative;
  padding: 8rem 1rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: #111;
}

.hero-content p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #444;
  font-size: 1.2rem;
  line-height: 1.7;
}

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

.cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta.pill {
  background: #007aff;
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
}

.cta.pill:hover {
  background: #005ed1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

.cta.secondary.pill {
  background: transparent;
  color: #007aff;
  border: 2px solid #007aff;
}

.cta.secondary.pill:hover {
  background: #007aff;
  color: #fff;
}
/* ===== Features ===== */
.features {
  padding: 6rem 1rem;
  background: #fff;
}

.features .feature {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: left;
}

.features h3 {
  font-size: 1.6rem;
  color: #007aff;
  margin-bottom: 0.5rem;
}

.features h4 {
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 0.75rem;
}

.features p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.features ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.features ul li::before {
  content: "•";
  color: #007aff;
  position: absolute;
  left: 0;
  font-weight: bold;
}
/* ========== Benefits Section ========== */
.highlight {
  background: #f9fafc;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 1.05rem;
  text-align: center;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  background: #f9fafc;
  border-left: 4px solid #007aff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.benefits-list li:hover {
  background: #f0f6ff;
  transform: translateY(-3px);
}

.benefits-list strong {
  color: #007aff;
}

/* ========== Form Section ========== */
.form-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  text-align: center;
}

.form-section form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-section form:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #333;
}

input, select {
  margin-top: 0.5rem;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
}

label.small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-actions .cta.pill {
  background: #007aff;
  color: #fff;
  padding: 1rem 2.25rem;
  font-weight: 600;
  border-radius: 9999px;
}

.form-actions .cta.pill:hover {
  background: #005ed1;
  transform: translateY(-2px);
}

.muted {
  color: #777;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ========== CTA Section ========== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
}

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

.cta-section p {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #444;
}

/* ========== Footer ========== */
.site-footer {
  background: #fafbff;
  border-top: 1px solid #eee;
  padding: 2rem 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.footer-nav a {
  color: #007aff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #005ed1;
}

.small.muted {
  color: #888;
}

/* ========== Responsive tweaks ========== */
@media (max-width: 600px) {
  .brand-hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 3.5rem 1rem;
  }
}
