/* ===============================
   HEADER BASE
================================ */
.hd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.hd-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO
================================ */
.hd-logo a {
  font-size: 22px;
  font-weight: 700;
  color: #151240;
  text-decoration: none;
}

/* ===============================
   DESKTOP NAV
================================ */
.hd-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hd-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.hd-nav a:hover {
  color: #151240;
}

/* ===============================
   CALL BUTTON (NO NUMBER)
================================ */
.hd-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #151240;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.hd-call-btn.small {
  padding: 8px 14px;
  font-size: 13px;
}

/* ===============================
   MOBILE CONTROLS
================================ */
.hd-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.hd-menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===============================
   MOBILE MENU
================================ */
.hd-mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.hd-mobile-menu a {
  padding: 14px 20px;
  text-decoration: none;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

.hd-mobile-call {
  padding: 16px 20px;
  background: #151240;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hd-nav {
    display: none;
  }

  .hd-mobile-actions {
    display: flex;
  }

  .hd-mobile-menu.active {
    display: flex;
  }
}
/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: #f8fafc;
  color: #1f2937;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  width: 100%;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #151240;
  color: #fff;
}

.btn.primary:hover {
  background: #1e4fd8;
}

.btn.secondary {
  background: #ffffff;
  color: #111827;
}

.btn.secondary:hover {
  background: #eab308;
}

.btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.outline:hover {
  background: #ffffff;
  color: #1e3a8a;
}

.btn.large {
  font-size: 18px;
  padding: 16px 36px;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, #000000, #4338ca);
  color: #ffffff;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: #dbeafe;
  margin-bottom: 25px;
}

.hero-features {
  list-style: none;
  margin-bottom: 35px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.hero-features i {
  color: #facc15;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================
   DISCLAIMER
========================= */
.disclaimer {
  background: #eef2ff;
  padding: 25px 0;
  text-align: center;
}

.disclaimer p {
  font-size: 14px;
  color: #374151;
}

/* =========================
   SECTION HEAD
========================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-head p {
  color: #6b7280;
  font-size: 16px;
}

/* =========================
   PLANS
========================= */
.plans {
  padding: 90px 0;
  background: #f9fafb;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.plan-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.plan-tag {
  font-size: 14px;
  color: #6b7280;
}

.price {
  font-size: 42px;
  font-weight: 700;
  margin: 25px 0;
}

.price span {
  font-size: 14px;
  font-weight: 400;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan-card ul li {
  margin-bottom: 10px;
}

.plan-card.featured {
  background: #151240;
  color: #ffffff;
  transform: scale(1.05);
}

.plan-card.featured .plan-tag {
  color: #dbeafe;
}

/* =========================
   WHY US
========================= */
.why-us {
  padding: 90px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-box {
  text-align: center;
  padding: 30px 20px;
}

.why-box i {
  font-size: 36px;
  color: #151240;
  margin-bottom: 15px;
}

.why-box h4 {
  margin-bottom: 8px;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 90px 0;
  background: #f9fafb;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about img {
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about p {
  margin-bottom: 14px;
}

.about-points {
  list-style: none;
  margin: 20px 0 30px;
}

.about-points li {
  margin-bottom: 8px;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 90px 0;
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f9fafb;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card i {
  font-size: 38px;
  color: #151240;
  margin-bottom: 15px;
}

/* =========================
   CTA
========================= */
.cta {
   background: linear-gradient(135deg, #000000, #4338ca);
  padding: 90px 20px;
  color: #ffffff;
  text-align: center;
}

.cta h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.cta p {
  color: #dbeafe;
  margin-bottom: 30px;
}

/* =========================
   FAQ
========================= */
.faq {
  padding: 90px 0;
  background: #ffffff;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 25px;
  border-radius: 14px;
  background: #f9fafb;
}

.faq-item h4 {
  margin-bottom: 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .plan-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}
.container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Disclaimer */
.site-disclaimer {
  background: #1f2937;
  color: #d1d5db;
  font-size: 14px;
}

.site-disclaimer .container {
  padding: 28px 16px;
}

.site-disclaimer strong {
  color: #ffffff;
}

.site-disclaimer .highlight-email {
  color: #60a5fa;
}

.site-disclaimer .mt {
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5f5;

}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact i {
  margin-right: 8px;
  color: #60a5fa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  /* Footer */
.site-footer {
  padding: 20px;
  
}
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-disclaimer,
  .footer-bottom {
    text-align: center;
  }
}
/* CONTACT SPLIT SECTION */
.contact-split {
  background: linear-gradient(90deg, #0f172a 50%, #f8fafc 50%);
  padding: 80px 16px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* LEFT PANEL */
.contact-info {
  color: #ffffff;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.contact-info h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
}

.contact-lead {
  font-size: 17px;
  color: #c7d2fe;
  max-width: 420px;
  line-height: 1.6;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item .label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item a {
  color: #93c5fd;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item .value {
  color: #cbd5f5;
  font-size: 14px;
}

/* RIGHT PANEL */
.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.form-sub {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}

/* FORM */
.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid #e2e8f0;
  padding: 12px 4px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #6366f1;
}

.contact-form button {
  margin-top: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-split {
    background: linear-gradient(180deg, #0f172a 50%, #f8fafc 50%);
  }

  .contact-info h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .contact-info h1 {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 26px;
  }
}
