/* Yashdhan Digital — site stylesheet */

:root {
  --ink: #10151f;
  --ink-soft: #4b5567;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --bg-alt: #0f1b33;
  --brand: #2b4bf2;
  --brand-dark: #1a2f9e;
  --accent: #ff8a3d;
  --border: #e3e7f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(16, 21, 31, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.brand small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--brand); }
.nav-toggle-input { display: none; }
.nav-toggle-btn {
  display: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
nav.main-nav .nav-cta { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--brand); color: var(--white); box-shadow: 0 10px 22px rgba(43, 75, 242, 0.28); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  background: radial-gradient(circle at 15% 20%, rgba(43, 75, 242, 0.10), transparent 45%),
              radial-gradient(circle at 85% 0%, rgba(255, 138, 61, 0.12), transparent 45%),
              var(--bg-soft);
  padding: 76px 0 64px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(43, 75, 242, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { font-size: 2.6rem; line-height: 1.15; margin: 0 0 18px; }
.hero p.lead { font-size: 1.08rem; color: var(--ink-soft); margin: 0 0 28px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.3rem; color: var(--brand-dark); }
.hero-stats div span { font-size: 0.82rem; color: var(--ink-soft); }
.hero-art {
  background: linear-gradient(160deg, var(--bg-alt), #1c2c52);
  border-radius: 22px;
  min-height: 340px;
  padding: 30px;
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-art .tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #9db1ff; font-weight: 700; }
.hero-art .list { display: grid; gap: 12px; margin-top: 18px; }
.hero-art .list div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Section shared */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 2rem; margin: 10px 0 12px; }
.section-head p { color: var(--ink-soft); margin: 0; }
.section-head.left { margin-left: 0; text-align: left; }

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(43, 75, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 10px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.bg-soft { background: var(--bg-soft); }

/* Products / pricing */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .price { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); margin: 14px 0; }
.product-card .price span { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.product-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.product-card ul li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.product-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.product-card .btn { margin-top: auto; }
.badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 138, 61, 0.15);
  color: #b95a12;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px 20px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h4 { margin: 0 0 8px; font-size: 1rem; }
.step p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 18px; font-size: 0.94rem; }
.faq-item p a { color: var(--brand); font-weight: 600; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  border-radius: 22px;
  padding: 52px;
  text-align: center;
}
.cta-band h2 { margin: 0 0 12px; font-size: 1.9rem; }
.cta-band p { margin: 0 0 26px; color: rgba(255, 255, 255, 0.85); }
.cta-band .btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.cta-band .btn-outline:hover { border-color: var(--white); }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .item .icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(43, 75, 242, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info .item strong { display: block; margin-bottom: 3px; }
.contact-info .item span, .contact-info .item a { color: var(--ink-soft); font-size: 0.93rem; }

form.contact-form { display: grid; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
form.contact-form label { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; display: block; }
form.contact-form input, form.contact-form textarea, form.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}
form.contact-form input:focus, form.contact-form textarea:focus, form.contact-form select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43, 75, 242, 0.14);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.notice { padding: 14px 16px; border-radius: 10px; font-size: 0.92rem; margin-bottom: 18px; }
.notice-success { background: #e9f9ee; color: #1c7a3c; border: 1px solid #b9ecc7; }
.notice-error { background: #fdecec; color: #b3261e; border: 1px solid #f6c6c4; }

/* Footer */
footer.site-footer { background: var(--bg-alt); color: rgba(255, 255, 255, 0.82); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin: 0 0 16px; }
.footer-grid p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid ul a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.72); }
.footer-grid ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Policy pages */
.policy-page { padding: 60px 0 90px; }
.policy-page .container { max-width: 860px; }
.policy-page h1 { font-size: 2.1rem; margin-bottom: 6px; }
.policy-page .updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 36px; }
.policy-page h2 { font-size: 1.2rem; margin: 34px 0 12px; }
.policy-page p, .policy-page li { color: var(--ink-soft); font-size: 0.97rem; }
.policy-page ul { padding-left: 20px; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--brand); font-weight: 600; }

/* Page hero (inner pages) */
.page-hero { background: var(--bg-soft); padding: 54px 0; text-align: center; }
.page-hero h1 { font-size: 2.1rem; margin: 10px 0 10px; }
.page-hero p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }

  .desktop-cta { display: none; }
  .nav-toggle-btn { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
  }
  nav.main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  nav.main-nav a:last-of-type { border-bottom: none; }
  nav.main-nav .nav-cta { display: inline-flex; margin-top: 10px; border-bottom: none; }
  .nav-toggle-input:checked ~ nav.main-nav { display: flex; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
}
