
  :root {
    --ink: #0f1222;
    --muted: #6b7280;
    --blue: #2f5bff;
    --blue-dark: #1f43e0;
    --border: #e6e9f0;
    --panel-bg: #ffffff;
    --panel-border: #e6eaf3;
    --icon-bg: #eaf0ff;
    --pill-bg: #eaf0ff;
    --circle-bg: #eef2fb;
    --green-bg: #e6f7ed;
    --green: #1c9a4b;
    --star: #f5a623;
    --sidebar-active: #2f5bff;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
  }

  /* ===== Unified site nav (shared across all sections) ===== */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    margin: 16px 24px 0;
    border-bottom: none;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(20,30,70,0.08);
    position: sticky;
    top: 16px;
    background: #fff;
    z-index: 100;
  }





  .site-nav .brand { display: flex; align-items: center; gap: 10px; }


  .site-nav .brand-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }



  .site-nav .brand-text .name { font-weight: 800; font-size: 17px; line-height: 1.1; }
  .site-nav .brand-text .tag { font-size: 11px; color: var(--muted); }
  .site-nav .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; font-size: 14.5px; font-weight: 500; }
  .site-nav .nav-links a { color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 4px; }
  .site-nav .nav-links a.active { color: var(--blue); }
  .site-nav .nav-right { display: flex; align-items: center; gap: 20px; }
  .site-nav .search-box {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px;
    color: var(--muted); font-size: 13.5px; width: 230px;
  }
  .site-nav .search-box kbd { margin-left: auto; font-size: 11px; color: #9aa1ad; }
  .site-nav .login-link { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; }
  .site-nav .btn-signup {
    background: var(--blue); color: #fff; border: none; padding: 10px 20px;
    border-radius: 8px; font-weight: 600; font-size: 14.5px; cursor: pointer; text-decoration: none;
  }
  @media (max-width: 1000px) {
    .site-nav .nav-links, .site-nav .search-box { display: none; }
  }

  /* ===== Footer local token overrides (scoped, do not leak to rest of page) ===== */
  .site-footer {
    --muted: #9aa3b8;
    --border: rgba(255,255,255,0.12);
    background: #0a0f2b;
    color: #fff;
  }

  /* ===== Hero section ===== */











/* ===== Hero section ===== */
.hero-section {
    background-image: url('background2.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat; margin-top : 3px;
    position: relative;
    min-height: 700px;
  }
/* .hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
    pointer-events: none;
  } */


  
  
.hero-section .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    padding: 70px 0 70px 64px;
  }




.hero-section .hero-copy h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }
.hero-section .hero-copy h1 .accent { color: var(--blue); }
.hero-section .hero-copy p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
  }
.hero-section .hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
  }
.hero-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 14px 26px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
.hero-section .btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(47, 91, 255, 0.35);
    border: none;
  }
.hero-section .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.hero-section .btn-outline {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
  }
.hero-section .btn-outline:hover { background: #eef2ff; transform: translateY(-1px); }
.hero-section .btn .arrow { transition: transform 0.2s ease; }
.hero-section .btn:hover .arrow { transform: translateX(3px); }
.hero-section .hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
.hero-section .hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
.hero-section .hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
  }




.hero-section .hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  
.hero-section .hero-art img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
  }

@media (max-width: 1000px) {




  .hero-section .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 50px;
    text-align: center;
  }
  .hero-section .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-section .hero-actions { justify-content: center; }
  .hero-section .hero-trust { justify-content: center; }
  .hero-section .hero-copy h1 { font-size: 40px; }
  .hero-section .hero-art { order: -1; }
}











  /* ===== How it works section ===== */


.how-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    text-align: center;
  }
.how-section .pill {
    display: inline-block;
    background: var(--pill-bg);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 9px 22px;
    border-radius: 999px;
    margin-bottom: 28px;
    text-align: 700;
    
  }
.how-section h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
.how-section .subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 72px;
  }

.how-section .steps {
    display: flex;
    align-items: flex-start;
    justify-content:  space-between;
    gap: 2cm;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
.how-section .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
    position: relative;
  }



.how-section .badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(47,91,255,0.35);
  }







.how-section .circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    box-shadow: 0 10px 30px rgba(47,91,255,0.35), 0 0 0 8px #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
.how-section .circle svg {
    width: 52px;
    height: 52px;
    stroke: #fff;
  }





    
  
.how-section .step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
  }
.how-section .step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 200px;
  }



.how-section .connector {
    display: flex;
    /* align-items: right center; */
    margin-top: 68px;
    flex: 1;
    min-width: 20px;
  }




.how-section .connector svg {
    width: 100%;
    height: 24px;
    display: block;
  }



.how-section .connector svg {
    width: 100%;
    height: 24px;
  }










@media (max-width: 900px)  {.how-section .steps { flex-direction: column; align-items: center; gap: 40px; }
.how-section .connector { display: none; }
.how-section h1 { font-size: 34px; }}
  .how-section { background: #ffffff; }
  /* ===== Pricing section ===== */
.pricing-section /* NAV */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid var(--border);
  }
.pricing-section .brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
.pricing-section .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
.pricing-section .brand-text .name {
    font-weight: 800;
    font-size: 17px;
    line-height: 1.1;
  }
.pricing-section .brand-text .tag {
    font-size: 11px;
    color: var(--muted);
  }
.pricing-section .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    font-size: 14.5px;
    font-weight: 500;
  }
.pricing-section .nav-links a {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
  }
.pricing-section .nav-links a.active { color: var(--blue); }
.pricing-section .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
.pricing-section .search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--muted);
    font-size: 13.5px;
    width: 230px;
  }
.pricing-section .search-box kbd {
    margin-left: auto;
    font-size: 11px;
    color: #9aa1ad;
  }
.pricing-section .login-link { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.pricing-section .btn-signup {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    text-decoration: none;
  }





.hero-section { scroll-margin-top: 50px; }
.how-section { scroll-margin-top: 50px; }
.pricing-section { scroll-margin-top: 50px; }
.discover-section { scroll-margin-top: 58px; }



.pricing-section /* HEADER */
  .header {
    text-align: center;
    padding: 60px 24px 30px;
  }





.pricing-section .header h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
.pricing-section .header p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 30px;
  }
.pricing-section .toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 50px;
  }
.pricing-section .toggle-row .billing-label.active { color: var(--blue); font-weight: 700; }
.pricing-section .toggle-row .billing-label { color: var(--muted); }
.pricing-section .switch {
    width: 44px;
    height: 24px;
    background: var(--blue);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    border: none;
  }
.pricing-section .switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.2s ease;
  }
.pricing-section .switch.yearly::after { left: 23px; }
.pricing-section .save-badge {
    background: var(--green-bg);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
  }
.pricing-section /* PRICING CARDS */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px 60px;
    align-items: start;
  }
.pricing-section .card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
.pricing-section .card.popular {
    border: 2px solid var(--blue);
    box-shadow: 0 20px 40px rgba(47,91,255,0.12);
    position: relative;
    padding-top: 0;
    overflow: hidden;
  }
.pricing-section .popular-badge {
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: -1px -1px 32px -1px;
  }
.pricing-section .card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }
.pricing-section .card-icon {
    width: 46px;
    height: 46px;
    background: var(--icon-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
.pricing-section .card-icon svg { width: 22px; height: 22px; }
.pricing-section .card-head h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 4px;
  }
.pricing-section .card-head p {
    font-size: 13.5px;
    color: var(--muted);
  }
.pricing-section .price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
  }
.pricing-section .price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
  }
.pricing-section .divider {
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
  }
.pricing-section .features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
  }
.pricing-section .features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14.5px;
  }
.pricing-section .features li svg.check { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }
.pricing-section .features li span { flex: 1; }
.pricing-section .features li svg.info { width: 15px; height: 15px; color: #b7bcc7; flex-shrink: 0; }
.pricing-section .choose-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
  }
.pricing-section .choose-btn:hover { background: var(--blue-dark); }
.pricing-section .card-foot {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
  }
.pricing-section .card-foot a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
  }
.pricing-section /* FEATURE ROW */
  .features-row {
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
.pricing-section .feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
.pricing-section .feature-item svg {
    width: 26px;
    height: 26px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
  }
.pricing-section .feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
  }
.pricing-section .feature-item p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
  }
@media (max-width: 1000px)  {.pricing-section .nav-links, .pricing-section .search-box { display: none; }
.pricing-section .pricing-grid { grid-template-columns: 1fr; }
.pricing-section .features-row { grid-template-columns: repeat(2, 1fr); }}
  /* ===== Discover section ===== */
.discover-section /* NAV */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid var(--border);
  }
.discover-section .brand { display: flex; align-items: center; gap: 10px; }
.discover-section .brand-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
.discover-section .brand-text .name { font-weight: 800; font-size: 17px; line-height: 1.1; }
.discover-section .brand-text .tag { font-size: 11px; color: var(--muted); }
.discover-section .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; font-size: 14.5px; font-weight: 500; }
.discover-section .nav-links a { color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.discover-section .nav-links a.active { color: var(--blue); }
.discover-section .nav-right { display: flex; align-items: center; gap: 22px; }
.discover-section .search-box {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px;
    color: var(--muted); font-size: 13.5px; width: 230px;
  }
.discover-section .search-box kbd { margin-left: auto; font-size: 11px; color: #9aa1ad; }
.discover-section .cart-icon { width: 22px; height: 22px; color: var(--ink); }
.discover-section .avatar {
    width: 34px; height: 34px; border-radius: 50%; background: #d8d8d8;
    display: flex; align-items: center; justify-content: center; font-size: 16px; overflow: hidden;
  }
.discover-section /* HEADER */
  .page-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    max-width: 1450px; margin: 0 auto; padding: 40px 40px 0;
  }
.discover-section .page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.discover-section .page-header p { color: var(--muted); font-size: 15px; }
.discover-section .header-actions { display: flex; gap: 12px; }
.discover-section .sort-select {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px;
    font-size: 14px; font-weight: 500; color: var(--ink); cursor: pointer;
  }
.discover-section .btn-submit {
    display: flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff; border: none;
    padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer;
  }
.discover-section /* LAYOUT */
  .layout {
    max-width: 1450px; margin: 0 auto; padding: 30px 40px 60px;
    display: grid; grid-template-columns: 240px 1fr; gap: 32px;
  }
.discover-section /* SIDEBAR */
  .sidebar-block {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px; margin-bottom: 20px;
  }
.discover-section .sidebar-block-title {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; font-weight: 700; margin-bottom: 14px;
  }
.discover-section .cat-list { list-style: none; }
.discover-section .cat-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--muted); padding: 7px 8px; border-radius: 6px; cursor: pointer;
  }
.discover-section .cat-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.discover-section .cat-list li.active { background: #eef2ff; color: var(--blue); font-weight: 600; }
.discover-section .show-more { font-size: 13.5px; color: var(--blue); font-weight: 600; cursor: pointer; margin-top: 4px; }
.discover-section .radio-list { list-style: none; }
.discover-section .radio-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--ink); padding: 6px 0;
  }
.discover-section .radio-list input { accent-color: var(--blue); width: 15px; height: 15px; }
.discover-section .stars-inline { color: var(--star); font-size: 13px; }
.discover-section /* AGENT GRID */
  .agent-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
.discover-section .agent-card {
    border: 1px solid var(--border); border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column;
  }
.discover-section .agent-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.discover-section .agent-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
  }




.discover-section .heart { width: 20px; height: 20px; color: #c3c8d1; cursor: pointer; }
.discover-section .agent-name { display: flex; align-items: center; gap: 6px; font-size: 17px; font-weight: 700; margin: 4px 0 8px; }
.discover-section .verified { width: 16px; height: 16px; color: var(--blue); }
.discover-section .agent-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-bottom: 18px; flex: 1; }
.discover-section .agent-meta { display: flex; align-items: center; gap: 16px; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.discover-section .agent-meta .rating { display: flex; align-items: center; gap: 4px; color: var(--ink); font-weight: 600; }
.discover-section .agent-meta .rating svg { width: 15px; height: 15px; color: var(--star); }
.discover-section .agent-meta .users { display: flex; align-items: center; gap: 4px; }
.discover-section .agent-meta .price { margin-left: auto; font-weight: 800; color: var(--ink); font-size: 15px; }
.discover-section .agent-meta .price span { font-weight: 500; color: var(--muted); font-size: 12.5px; }
.discover-section .view-btn {
    border: 1.5px solid var(--blue); color: var(--blue); background: #fff;
    padding: 11px; border-radius: 9px; font-weight: 700; font-size: 14px; cursor: pointer; width: 100%;
    transition: background 0.15s ease;
  }




.discover-section .view-btn:hover { background: #eef2ff; }
.discover-section /* PAGINATION */
  .pagination {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 40px; font-size: 14px; color: var(--muted);
  }
.discover-section .pagination .showing { margin-right: 20px; }



.discover-section .page-btn {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
    background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 600;
    font-size: 14.5px; color: var(--ink); transition: all 0.15s ease;
  }
.discover-section .page-btn:hover { border-color: var(--blue); color: var(--blue); background: #eef2ff; }
.discover-section .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 700; box-shadow: 0 4px 12px rgba(47,91,255,0.3); }
.discover-section .page-btn svg { width: 17px; height: 17px; }





@media (max-width: 1100px)  {.discover-section .nav-links, .discover-section .search-box { display: none; }
.discover-section .layout { grid-template-columns: 1fr; }
.discover-section .agent-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 700px)  {.discover-section .agent-grid { grid-template-columns: 1fr; }
.discover-section .page-header { flex-direction: column; gap: 16px; }}
  


/* ===== Footer ===== */

.site-footer {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }


.site-footer footer {
    max-width: 1350px;
    margin: 0 auto;
    padding: 4000px 40px;
  }

  
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
  }
.site-footer .brand-col .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }



.site-footer .brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(47,91,255,0.25);
  }

.site-footer .brand-name {
    font-size: 22px;
    font-weight: 800;
  }
.site-footer .brand-name .accent { color: var(--blue); }
.site-footer .brand-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
  }
.site-footer .socials {
    display: flex;
    gap: 12px;
  }
.site-footer .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
  }
.site-footer .social-btn:hover { background: rgba(47,91,255,0.2); }
.site-footer .social-btn svg { width: 18px; height: 18px; }
.site-footer .col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
  }
.site-footer .col ul {
    list-style: none;
  }
.site-footer .col ul li {
    margin-bottom: 18px;
  }
.site-footer .col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
  }
.site-footer .col ul li a:hover { color: #fff; }
.site-footer .stay-updated p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 260px;
  }
.site-footer .email-input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 16px;
    outline: none;
  }
.site-footer .email-input::placeholder { color: #7c8499; }
.site-footer .subscribe-btn {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
.site-footer .subscribe-btn:hover { background: #1f43e0; }
.site-footer .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14.5px;
    color: var(--muted);
  }
.site-footer .footer-bottom a { color: var(--muted); text-decoration: none; }
.site-footer .footer-bottom .brand-link { color: var(--blue); }
.site-footer .bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
.site-footer .bottom-links span { color: var(--border); }
.site-footer .bottom-links a:hover { color: #fff; }
@media (max-width: 900px)  {.site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
.site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }}