/* ========================================
   TAVOZUN — SHARED PAGES STYLES
   ======================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,Arial,sans-serif;
}

body{
  background:
    radial-gradient(circle at 20% 30%, rgba(55,81,203,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(108,124,255,0.15), transparent 40%),
    linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
  color:#111827;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

a{ color:#3751cb; text-decoration:none; }
a:hover{ text-decoration:underline; }

/* ---- NAV ---- */

.nav{
  padding:18px 0;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #e9eef7;
  position:sticky;
  top:0;
  z-index:100;
}

.nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.nav-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.nav-logo img{
  height:56px;
  width:auto;
  display:block;
}

.nav-logo:hover{ text-decoration:none; }

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}

.nav-links a{
  font-size:14px;
  font-weight:600;
  color:#374151;
  transition:color .15s;
}

.nav-links a:hover{
  color:#3751cb;
  text-decoration:none;
}

.nav-links .nav-cta{
  background:#3751cb;
  color:#fff;
  padding:10px 20px;
  border-radius:10px;
  font-weight:700;
  transition:background .15s;
}

.nav-links .nav-cta:hover{
  background:#2f45b5;
  color:#fff;
}

/* ---- HAMBURGER (mobile) ---- */

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}

.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#111827;
  margin:5px 0;
  border-radius:2px;
  transition:.2s;
}

/* ---- CONTAINER ---- */

.container{
  width:90%;
  max-width:1100px;
  margin:0 auto;
}

/* ---- HERO SECTION (Landing) ---- */

.hero-landing{
  padding:80px 0 60px;
  text-align:center;
}

.hero-landing h1{
  font-size:44px;
  font-weight:900;
  line-height:1.12;
  margin-bottom:18px;
  color:#111827;
}

.hero-landing h1 span{
  color:#3751cb;
}

.hero-landing .subtitle{
  font-size:18px;
  color:#5b6578;
  max-width:640px;
  margin:0 auto 40px;
  line-height:1.6;
}

.hero-cta{
  display:inline-block;
  padding:18px 42px;
  background:linear-gradient(135deg,#3751cb,#4f6bff);
  color:#fff;
  font-weight:800;
  font-size:18px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(55,81,203,.30);
  transition:.2s;
  text-decoration:none;
}

.hero-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(55,81,203,.40);
  text-decoration:none;
  color:#fff;
}

/* ---- BENEFITS GRID ---- */

.benefits{
  padding:60px 0;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.benefit-card{
  background:#fff;
  border:1px solid #e9eef7;
  border-radius:20px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 8px 24px rgba(55,81,203,.06);
  transition:transform .2s, box-shadow .2s;
}

.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(55,81,203,.12);
}

.benefit-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  margin:0 auto 16px;
  background:rgba(55,81,203,.08);
  border-radius:14px;
}

.benefit-icon svg{
  display:block;
}

.benefit-card h3{
  font-size:16px;
  font-weight:800;
  margin-bottom:8px;
  color:#111827;
}

.benefit-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.5;
}

/* ---- HOW IT WORKS (Steps) ---- */

.steps-section{
  padding:60px 0;
}

.steps-section .section-title{
  text-align:center;
  font-size:32px;
  font-weight:900;
  margin-bottom:12px;
}

.steps-section .section-subtitle{
  text-align:center;
  font-size:16px;
  color:#6b7280;
  margin-bottom:48px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.5;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.step-card{
  background:#fff;
  border:1px solid #e9eef7;
  border-radius:20px;
  padding:28px 22px;
  text-align:center;
  position:relative;
  box-shadow:0 8px 24px rgba(55,81,203,.06);
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  background:linear-gradient(135deg,#3751cb,#4f6bff);
  color:#fff;
  font-weight:800;
  font-size:18px;
  border-radius:50%;
  margin-bottom:14px;
}

.step-card h3{
  font-size:15px;
  font-weight:800;
  margin-bottom:8px;
  color:#111827;
}

.step-card p{
  font-size:13px;
  color:#6b7280;
  line-height:1.5;
}

/* ---- TRUST BLOCK ---- */

.trust{
  padding:50px 0;
}

.trust-box{
  background:#fff;
  border:1px solid #e9eef7;
  border-radius:22px;
  padding:40px;
  text-align:center;
  box-shadow:0 12px 32px rgba(55,81,203,.08);
}

.trust-box .trust-icon{
  font-size:48px;
  margin-bottom:16px;
}

.trust-box h2{
  font-size:24px;
  font-weight:800;
  margin-bottom:14px;
  color:#111827;
}

.trust-box p{
  font-size:15px;
  color:#6b7280;
  line-height:1.6;
  max-width:700px;
  margin:0 auto;
}

/* ---- PAGE CONTENT (Legal, Contact, etc.) ---- */

.page-section{
  padding:60px 0;
  flex-grow:1;
}

.page-card{
  background:#fff;
  border:1px solid #e9eef7;
  border-radius:22px;
  padding:40px 44px;
  box-shadow:0 16px 48px rgba(55,81,203,.08);
  max-width:820px;
  margin:0 auto;
}

.page-card h1{
  font-size:30px;
  font-weight:900;
  margin-bottom:24px;
  color:#111827;
}

.page-card h2{
  font-size:20px;
  font-weight:800;
  margin-top:32px;
  margin-bottom:12px;
  color:#111827;
}

.page-card h3{
  font-size:16px;
  font-weight:700;
  margin-top:24px;
  margin-bottom:8px;
  color:#111827;
}

.page-card p{
  font-size:15px;
  color:#374151;
  line-height:1.7;
  margin-bottom:14px;
}

.page-card ul{
  margin:10px 0 18px 24px;
  font-size:15px;
  color:#374151;
  line-height:1.8;
}

.page-card li{
  margin-bottom:4px;
}

.page-card .highlight{
  background:#f0f4ff;
  border:1px solid #dde4ff;
  border-radius:14px;
  padding:18px 22px;
  margin:18px 0;
}

.page-card .highlight p{
  margin-bottom:0;
  color:#3751cb;
  font-weight:600;
}

.page-card .info-box{
  background:#f8faff;
  border:1px solid #e9eef7;
  border-radius:14px;
  padding:22px;
  margin:18px 0;
}

.page-card .info-box p{
  margin-bottom:6px;
}

.page-card .info-box p:last-child{
  margin-bottom:0;
}

/* ---- CONTACT CARDS ---- */

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin:24px 0;
}

.contact-item{
  background:#f8faff;
  border:1px solid #e9eef7;
  border-radius:16px;
  padding:22px;
  text-align:center;
}

.contact-item .ci-icon{
  font-size:28px;
  margin-bottom:8px;
}

.contact-item .ci-label{
  font-size:13px;
  color:#6b7280;
  margin-bottom:4px;
}

.contact-item .ci-value{
  font-size:15px;
  font-weight:700;
  color:#111827;
}

.contact-item .ci-value a{
  color:#3751cb;
}

/* ---- HOW IT WORKS PAGE — DETAILED STEPS ---- */

.detail-steps{
  margin:28px 0;
}

.detail-step{
  display:flex;
  gap:20px;
  align-items:flex-start;
  margin-bottom:28px;
}

.detail-step-num{
  flex-shrink:0;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#3751cb,#4f6bff);
  color:#fff;
  font-weight:800;
  font-size:18px;
  border-radius:50%;
}

.detail-step-content h3{
  margin-top:2px;
  font-size:17px;
  font-weight:800;
  margin-bottom:6px;
  color:#111827;
}

.detail-step-content p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
  margin-bottom:0;
}

/* ---- FOOTER ---- */

.footer{
  margin-top:auto;
  padding:28px 0;
  text-align:center;
  font-size:14px;
  color:#6b7280;
  border-top:1px solid #e5e7eb;
  background:#ffffff;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.footer-links a{
  color:#6b7280;
  font-size:13px;
  font-weight:600;
  transition:color .15s;
}

.footer-links a:hover{
  color:#3751cb;
  text-decoration:none;
}

.footer strong{
  color:#3751cb;
  font-weight:700;
}

.footer a{
  text-decoration:none;
}

/* ---- RESPONSIVE ---- */

@media(max-width:900px){
  .hero-landing h1{
    font-size:32px;
  }

  .benefits-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .steps-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .nav-links{
    display:none;
    flex-direction:column;
    width:100%;
    gap:10px;
    padding-top:12px;
  }

  .nav-links.open{
    display:flex;
  }

  .nav-toggle{
    display:block;
  }

  .hero-landing h1{
    font-size:26px;
  }

  .hero-landing .subtitle{
    font-size:15px;
  }

  .hero-cta{
    padding:16px 32px;
    font-size:16px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .steps-grid{
    grid-template-columns:1fr;
  }

  .page-card{
    padding:28px 22px;
  }

  .page-card h1{
    font-size:24px;
  }

  .detail-step{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}
