/* =========================================================
   BizoraCora OÜ — SiteCheck
   Shared stylesheet
========================================================= */

:root{
  --navy: #0b2545;
  --navy-dark: #071a33;
  --teal: #0f9b8e;
  --teal-light: #14b8a6;
  --teal-pale: #e6f7f5;
  --ink: #1c2733;
  --muted: #5c6b7a;
  --border: #e3e8ee;
  --bg: #f7f9fb;
  --white: #ffffff;
  --warn: #d97706;
  --danger: #dc2626;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.14);
  --max-width: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

h1, h2, h3, h4{
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

p{ margin: 0 0 1em; }

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }

.section-head{ max-width: 720px; margin: 0 auto 48px; text-align: center; }
.eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 155, 142, 0.28);
}
.btn-primary:hover{ background: var(--teal-light); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover{ background: var(--navy); color: #fff; }
.btn-light{
  background: #fff;
  color: var(--navy);
}
.btn-light:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block{ width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.brand img{ width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.brand small{
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  font-weight: 500;
  color: var(--navy);
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a.active,
.nav-links a:hover{ color: var(--teal); }
.nav-links a.active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-actions{ display: flex; align-items: center; gap: 16px; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 860px){
  .nav-toggle{ display: block; }
  .nav-links{
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links li{ width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-actions .btn-outline{ display: none; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(15,155,142,0.35), transparent 55%);
  pointer-events:none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.hero h1{ color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 20px; }
.hero h1 span{ color: var(--teal-light); }
.hero p.lead{ color: #cdd9e8; font-size: 1.15rem; max-width: 540px; }
.hero-cta{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust{
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust div{ display: flex; flex-direction: column; }
.hero-trust strong{ font-size: 1.5rem; color: var(--teal-light); font-family: 'Poppins', sans-serif; }
.hero-trust span{ font-size: 0.85rem; color: #a9bbd0; }
.hero-media{ position: relative; }
.hero-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-badge{
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  color: var(--navy);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge i{ color: var(--teal); font-size: 1.3rem; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; padding: 56px 0; }
  .hero-media{ order: -1; }
  .hero-badge{ left: 12px; bottom: -14px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
}
.page-hero .eyebrow{ color: var(--teal-light); }
.page-hero h1{ color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.page-hero p{ color: #cdd9e8; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb{ color: #a9bbd0; font-size: 0.85rem; margin-bottom: 14px; }
.breadcrumb a{ color: #d8e3f0; }
.breadcrumb a:hover{ color: var(--teal-light); }

/* ---------- Cards grid ---------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.card p{ color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Process steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step::before{
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px; left: 22px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 14px rgba(15,155,142,0.35);
}
.step h4{ margin-top: 10px; font-size: 1.05rem; }
.step p{ color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px){ .pricing-grid{ grid-template-columns: 1fr; } }
.price-card{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured{
  border: 2px solid var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card.featured .badge-pop{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.price-card h3{ font-size: 1.3rem; margin-bottom: 4px; }
.price-card .price-sub{ color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.price-card .price{
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card .price span{ font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-list{ list-style: none; padding: 0; margin: 22px 0 28px; flex-grow: 1; }
.price-list li{
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 0.94rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--border);
}
.price-list li:last-child{ border-bottom: none; }
.price-list i{ color: var(--teal); margin-top: 3px; }
@media (max-width: 900px){ .price-card.featured{ transform: none; } }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial-card .stars{ color: #f5a623; margin-bottom: 14px; }
.testimonial-card p.quote{ font-style: italic; color: var(--ink); }
.testimonial-author{ display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-author .avatar{
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Poppins', sans-serif;
}
.testimonial-author strong{ display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial-author span{ font-size: 0.82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--teal) 0%, #0c8a7e 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2{ color: #fff; margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p{ color: rgba(255,255,255,0.9); margin-bottom: 0; }

/* ---------- About page specifics ---------- */
.about-hero-img{ border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.founder-wrap{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px){ .founder-wrap{ grid-template-columns: 1fr; } }
.founder-photo{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.founder-photo img{
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}
.founder-photo h3{ margin-bottom: 2px; }
.founder-photo .role{ color: var(--teal); font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; }
.founder-photo .tags{ display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.founder-photo .tag{
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.founder-bio h3{ margin-top: 28px; }
.founder-bio h3:first-child{ margin-top: 0; }
.timeline{ list-style: none; padding: 0; margin: 18px 0; }
.timeline li{
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}
.timeline li::before{
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
}
.timeline li::after{
  content: '';
  position: absolute;
  left: 5px; top: 16px;
  width: 2px; height: calc(100% + 8px);
  background: var(--border);
}
.timeline li:last-child::after{ display: none; }
.timeline .year{ font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif; display: block; font-size: 0.9rem; margin-bottom: 4px; }

.value-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
@media (max-width: 900px){ .value-grid{ grid-template-columns: 1fr; } }

.company-facts{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
@media (max-width: 800px){ .company-facts{ grid-template-columns: repeat(2, 1fr); } }
.company-facts .fact{ text-align: center; }
.company-facts .fact strong{ display: block; color: var(--teal); font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 4px; }
.company-facts .fact span{ font-size: 0.82rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.96rem;
  background: #fbfcfd;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.form-two{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px){ .form-two{ grid-template-columns: 1fr; } }
.form-note{ font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
#form-status{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}
#form-status.success{ display: block; background: #e6f7f0; color: #0d7a4d; border: 1px solid #b6e6cf; }
#form-status.error{ display: block; background: #fdeeee; color: #b3261e; border: 1px solid #f6c8c6; }

.contact-info-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
@media (max-width: 800px){ .contact-info-grid{ grid-template-columns: 1fr; } }
.contact-info-card{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-info-card .icon{
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.3rem;
}
.contact-info-card h4{ margin-bottom: 6px; font-size: 1.02rem; }
.contact-info-card p{ color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question{
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.faq-question i{ transition: transform 0.2s ease; color: var(--teal); }
.faq-item.open .faq-question i{ transform: rotate(45deg); }
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq-item.open .faq-answer{ padding: 0 22px 20px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy-dark);
  color: #cdd9e8;
  padding: 64px 0 24px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img{ width: 36px; height: 36px; border-radius: 8px; }
.footer-brand span{ font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; }
.site-footer p{ color: #97a9c0; font-size: 0.9rem; }
.site-footer h5{ color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: 12px; }
.footer-links a{ color: #b8c6d9; font-size: 0.92rem; }
.footer-links a:hover{ color: var(--teal-light); }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #7f92aa;
}
.social-links{ display: flex; gap: 12px; }
.social-links a{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #cdd9e8;
}
.social-links a:hover{ background: var(--teal); color: #fff; }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.mt-40{ margin-top: 40px; }
.mb-0{ margin-bottom: 0; }
.badge-inline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
}
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; } }
.list-check{ list-style: none; padding: 0; margin: 0; }
.list-check li{ display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.list-check i{ color: var(--teal); margin-top: 4px; }
