/* ── landing.css ─────────────────────────────────────────────────────────── */

/* ── Variables ── */
:root {
  --primary:       #275A84;
  --primary-dark:  #1c4262;
  --primary-light: #BDD6E5;
  --secondary:     #002433;
  --dark:          #1a2233;
  --light-bg:      #f5f9fc;
  --white:         #ffffff;
  --border:        #d4e3ee;
  --border2:       #E4DBED;
  --success:       #34AF3E;
  --success-bg:    #E8F6EA;
  --danger:        #CB3448;
  --danger-bg:     #F9E8EB;
  --gray:          #313131;
  --gray-light:    #AFA9B6;
  --radius:        10px;
  --shadow:        0 4px 24px rgba(39,90,132,.10);
}

/* ── Reset base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #54595f;
  background: var(--white);
  line-height: 1.4;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--primary); line-height: 1.3; }
h2 { font-size: 1.8rem; }

/* ── Layout ── */
.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-section { padding: 72px 0; scroll-margin-top: 90px; }
.lp-section-light { background: #e8eef3; }

/* ── Header ── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.lp-logo img { height: 52px; width: auto; }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lp-nav-links a {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .15s;
  white-space: nowrap;
}
.lp-nav-links a:hover { background: #f7f7f7; }
.lp-nav-links .btn-nav {
  font-family: 'Quicksand', sans-serif;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  border-radius: 27px;
  padding: 9px 22px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background .2s;
}
.lp-nav-links .btn-nav:hover { background: var(--primary-dark); color: var(--white); }
.lp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}
@media (max-width: 900px) {
  .lp-nav-links { display: none; }
  .lp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    z-index: 99;
  }
  .lp-mobile-toggle { display: block; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 27px;
  padding: 11px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: center;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 27px;
  padding: 11px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  border-radius: 27px;
  padding: 11px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-gray {
  display: inline-flex;
  align-items: center;
  background: #313131;
  color: var(--white);
  border: 2px solid #313131;
  border-radius: 27px;
  padding: 11px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-gray:hover { background: #1a1a1a; border-color: #1a1a1a; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #002433;
  color: var(--white);
  border: 2px solid #002433;
  border-radius: 27px;
  padding: 11px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: #001a26; border-color: #001a26; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 11px 26px; font-size: .95rem; }

/* ── Section heading ── */
.s-head { text-align: center; margin-bottom: 52px; }
.s-head h2 { margin-bottom: 12px; }
.s-head p { max-width: 680px; margin: 12px auto 0; font-size: 17px; }
.badge-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: 'Exo', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ── Hero ── */
.lp-hero {
  position: relative;
  background: url('../images/header-web.png') center center / cover no-repeat;
  padding: 80px 0 64px;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,242,248,.80) 0%, rgba(240,247,244,.75) 100%);
}
.lp-hero > * { position: relative; z-index: 1; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-form-col { order: -1; }
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 20px;
}
.lp-hero h1 em { font-style: normal; color: var(--primary); }
.lp-hero-sub {
  font-size: 17px;
  color: #54595f;
  margin-bottom: 32px;
}
.lp-hero-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.lp-hero-price strong { color: var(--primary); font-weight: 700; }
.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .lp-hero h1 { font-size: 1.8rem; }
  .lp-hero-ctas { flex-direction: column; }
  .lp-hero-ctas a { width: 100%; justify-content: center; }
}

/* ── Hero CTA block (replaces form col) ── */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 20px;
}
.hero-cta-claim {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  max-width: 340px;
}

/* ── Signup modal ── */
.signup-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,30,60,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.signup-modal-overlay.open { display: flex; }
.signup-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.signup-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  z-index: 10;
}
.signup-modal-close:hover { color: var(--primary); }
.signup-modal-box .hero-form-card {
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
}

/* ── Hero form card ── */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  border: 1px solid var(--border);
}
.hero-form-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 0 0 24px;
}

/* ── Form controls ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Quicksand', sans-serif;
  font-size: .9rem;
  border: 1px solid var(--border2);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--primary); }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2354595f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-control.invalid-input { border-color: var(--danger); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-2col { grid-template-columns: 1fr; } }
.field-error { font-size: .8rem; color: var(--danger); margin-top: 4px; }
.form-checks { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.form-checks input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.form-checks label {
  font-size: .78rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.5;
}
.form-checks a { color: var(--primary); text-decoration: underline; }
.form-submit-wrap { margin-top: 20px; }
.success-box {
  background: var(--success-bg);
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  margin-top: 16px;
}
.success-box h3 { color: var(--success); font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.success-box p { color: var(--dark); margin: 0; font-size: .9rem; }
.pw-checks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pw-checks p { font-size: .8rem; color: var(--gray); margin: 0; display: flex; align-items: center; gap: 4px; }

/* ── Features cards ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border-top: 3px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.feat-card:hover {
  border-top-color: var(--primary);
  box-shadow: 0 8px 28px rgba(39,90,132,.12);
  transform: translateY(-3px);
}
.feat-card-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.feat-card-icon i { color: var(--primary); font-size: 38px; flex-shrink: 0; }
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}
.feat-card p { font-size: 15px; color: #54595f; margin: 0; line-height: 1.7; }
.feat-card p a { color: var(--primary); font-weight: 700; }
.feat-cta { text-align: center; }

/* ── VeriFactu section ── */
.vf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .vf-grid { grid-template-columns: 1fr; } }
.vf-img img { max-width: auto; margin: 0 auto; }
.vf-text h2 { margin: 0 0 16px; }
.vf-text p { margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--secondary);
}
.check-list li i { color: var(--primary); font-size: 1.1rem; margin-top: 0; flex-shrink: 0; align-self: flex-start; line-height: inherit; }

/* ── FAQ accordion ── */
.lp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 960px; margin: 0 auto; align-items: start; }
.lp-faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lp-faq-summary { width: 100%; padding: 18px 24px; font-weight: 600; font-size: .97rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .15s; color: var(--dark); background: none; border: none; text-align: left; font-family: 'Quicksand', sans-serif; }
.lp-faq-summary:hover { background: #eaf2f8; }
.lp-faq-icon { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; font-weight: 300; }
.lp-faq-item.open .lp-faq-summary { background: #eaf2f8; color: var(--primary); }
.lp-faq-item:not(.open) .lp-faq-answer { display: none; }
.lp-faq-answer { padding: 0 24px 20px; font-size: .93rem; color: var(--gray); line-height: 1.8; }
@media (max-width: 680px) { .lp-faq-grid { grid-template-columns: 1fr; } }

/* ── Pricing ── */
.pricing-intro { text-align: center; max-width: 800px; margin: 0 auto 52px; }
.pricing-intro h2 { margin: 0 0 14px; }
.pricing-intro p { font-size: 16px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 680px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-bg);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(39,90,132,.18); }
.price-header { background: var(--primary); padding: 20px 32px; text-align: center; }
.price-header h3 { font-family: 'Quicksand', sans-serif; font-size: 2rem; font-weight: 600; color: var(--white); margin: 0 0 4px; }
.price-header .tagline { color: rgba(255,255,255,.85); font-size: 1.1rem; font-weight: 400; }
.price-body { padding: 24px 32px; flex: 1; display: flex; flex-direction: column; }
.price-amount { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 4px; }
.price-cur { font-family: 'Quicksand', sans-serif; font-size: 23px; font-weight: 600; color: var(--primary); align-self: flex-end; margin-bottom: 6px; }
.price-int { font-family: 'Quicksand', sans-serif; font-size: 48px; font-weight: 600; color: var(--primary); line-height: 1; }
.price-frac { font-family: 'Quicksand', sans-serif; font-size: 29px; font-weight: 600; color: var(--primary); align-self: flex-end; margin-bottom: 4px; }
.price-period { font-family: 'Quicksand', sans-serif; font-size: 18px; font-weight: 400; color: #303438; line-height: 1.6; align-self: flex-end; margin-bottom: 4px; margin-left: 4px; }
.price-annual { color: #303438; font-size: 15px; margin-bottom: 20px; }
.price-annual em { color: var(--gray); font-style: normal; }
.feat-list { list-style: none; flex: 1; margin-bottom: 24px; padding: 0; }
.feat-list li { font-family: 'Quicksand', sans-serif; font-size: 17px; font-weight: 400; color: #303438; padding: 8px 0 8px 26px; position: relative; }
.feat-list li::before { content: '\2713'; color: #00c761; font-weight: 700; position: absolute; left: 0; top: 8px; font-family: 'Quicksand', sans-serif; }
.feat-list li + li { border-top: 1px solid var(--border); }
.feat-list li.api-row { font-weight: 700; color: var(--primary); border-top: none; padding-bottom: 4px; padding-left: 0; }
.feat-list li.api-row::before { display: none; }
.pricing-note { text-align: center; margin-top: 20px; font-size: 15px; color: #54595f; }
.pricing-note a { color: var(--primary); text-decoration: underline; }
.btn-price { display: block; text-align: center; width: 100%; font-family: 'Quicksand', sans-serif; font-size: 20px; font-weight: 500; color: var(--white); background: var(--primary); border-radius: 25px; padding: 12px 24px; transition: background .2s; cursor: pointer; border: none; }
.btn-price:hover { background: #54595f; color: var(--white); }
.price-footer { padding: 0 32px 24px; }

/* ── Contact section ── */
.contact-wrap { max-width: 680px; margin: 0 auto; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 560px) { .contact-form-card { padding: 24px; } }
.msg-box { padding: 16px; border-radius: 6px; text-align: center; font-weight: 400; font-size: 14px; margin-top: 16px; display: none; }
.msg-box.success { background: var(--success-bg); color: var(--success); border: 1px solid var(--success); }
.msg-box.error { background: var(--danger-bg); color: var(--danger); border: 1px solid var(--danger); }

/* ── Footer ── */
.lp-footer { background: var(--primary); color: rgba(255,255,255,.65); padding: 60px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col { text-align: right; }
.footer-col h4 { color: var(--white); font-family: 'Exo', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-brand { text-align: left; }
.footer-col-left { text-align: left; }
.footer-brand img.footer-logo { height: 66px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 240px; line-height: 1.7; }
.footer-brand .accio-logo { margin-top: 24px; height: auto; max-height: 80px; max-width: 160px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.soc-links { display: flex; gap: 10px; }
.soc-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: background .15s, color .15s; }
.soc-links a:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── Spinner ── */
.spinner-svg { display: inline-block; animation: spin .7s linear infinite; width: 18px; height: 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Signup ── */
.signup-page { padding: 48px 0 80px; }
.signup-page .signup-layout .hero-form-card { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.signup-page .signup-feat-panel { border-radius: 0 var(--radius) var(--radius) 0; }
.signup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.signup-form-col { min-width: 0; }
.signup-panel-col { min-width: 0; display: flex; flex-direction: column; }
.signup-feat-panel {
  flex: 1;
  overflow: hidden;
  background: url('/public/assets/images/bg-2.png') center/cover no-repeat;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-feat-panel h2 {
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.signup-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.signup-feat-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 12px 14px;
  text-align: center;
}
.signup-feat-card img { width: 80px; height: auto; margin: 0 auto 8px; }
.signup-feat-card h3 { font-size: .82rem; color: var(--primary); margin-bottom: 4px; line-height: 1.3; }
.signup-feat-card p { font-size: .75rem; color: #54595f; margin: 0; line-height: 1.4; }
@media (max-width: 860px) {
  .signup-layout { grid-template-columns: 1fr; }
  .signup-panel-col { display: none; }
}
