/* ============================================================
   ADVOCATEPRO — simple, clean design
   ============================================================ */

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --dark: #14192b;
  --text: #2b2f38;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* font-family: "Inter", sans-serif; */
 
   font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

/* ---------- shared ---------- */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--dark);
}
.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow-plain {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.eyebrow-light {
  color: #9db4ff;
}
.heading-light {
  color: #fff;
}
.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
.centered {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
}
.btn-outline {
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-row {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 34px;
}
.brand-text {
  font-size: 1.2rem;
  font-weight: 600;
}
.brand-text strong {
  color: var(--blue);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav-cta:hover {
  background: var(--blue-dark);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-btn span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open {
    max-height: 320px;
  }
  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .nav-cta {
    border-radius: 0;
    text-align: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0;
  background: var(--bg-alt);
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  background: #eaf0ff;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-text h1 span {
  color: var(--blue);
}
.hero-text > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 28px;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.hero-image img {
  border-radius: 6px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  min-height: 340px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-image i {
  font-size: 2.6rem;
  color: var(--blue);
}
.about-image p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.feature-line {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.feature-line:first-of-type {
  border-top: none;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eaf0ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.feature-line h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.product-row:first-of-type {
  border-top: none;
}
.product-row.reverse {
  direction: rtl;
}
.product-row.reverse > * {
  direction: ltr;
}
.product-image {
  /* background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px; */

  width: 350px;
    margin: 0 auto;
}
.product-image img {
  border-radius: 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  background: #eaf0ff;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.product-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-text > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tag-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 18px;
}
.tag-list i {
  color: var(--blue);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.cta-card i {
  font-size: 2rem;
  color: #9db4ff;
  margin-bottom: 16px;
}
.cta-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 22px;
}

/* ============================================================
   ACCESS
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.access-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.access-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.access-card-head i {
  color: var(--blue);
}
.access-card-head h5 {
  font-size: 0.98rem;
  font-weight: 700;
}
.access-card-body {
  padding: 16px 20px;
}
.access-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
.access-row:first-child {
  border-top: none;
}
.access-row i {
  color: var(--muted);
}
.access-value {
  flex: 1;
  font-weight: 600;
  word-break: break-all;
}
.access-value.link {
  font-weight: 500;
  color: var(--muted);
}
.copy-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.copy-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.copy-btn-done {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

/* ============================================================
   APPS
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
}
.app-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}
.app-icon.android {
  background: #3ddc84;
}
.app-icon.apple {
  background: #111;
}
.app-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.app-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.badge-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pill {
  font-size: 0.72rem;
  border-radius: 20px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pill-good {
  background: #dcfce7;
  color: #166534;
}
.pill-info {
  background: #eaf0ff;
  color: var(--blue-dark);
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.store-btn i {
  font-size: 1.3rem;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  font-size: 0.92rem;
}
.store-btn span small {
  font-size: 0.66rem;
  font-weight: 400;
  opacity: 0.8;
}
.store-btn-apple {
  background: #000;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span {
  color: #9db4ff;
}
.footer-brand p {
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0 0 18px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover {
  border-color: #9db4ff;
  color: #9db4ff;
}
.footer-col h6,
.footer-contact h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
}
.footer-col ul li a:hover {
  color: #9db4ff;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.contact-item i {
  color: #9db4ff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover {
  color: #9db4ff;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-wrap {
  max-width: 760px;
}
.policy-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.policy-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 24px;
}
.policy-intro {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.policy-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.policy-item:last-child {
  border-bottom: none;
}
.policy-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.policy-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 10px;
}
.policy-list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}
.policy-list li {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.policy-contact {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item-plain {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-item-plain i {
  color: var(--blue);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-row,
  .about-row,
  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .hero-image {
    order: -1;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cta-grid,
  .access-grid,
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}