/* Layout layer — colors from site.css theme tokens (--bg, --accent, etc.) */

body.supoth-body{
  background:var(--bg);
  color:var(--text);
  font-family:'Hind Siliguri','Inter',system-ui,sans-serif;
  line-height:1.6;
}
body.supoth-body a{color:var(--accent2)}
body.supoth-body a:hover{color:var(--accent);text-decoration:none}

.supoth-brand.brand-logo{display:inline-flex;align-items:center}
.supoth-brand .logo-img{display:block;height:48px;width:auto;max-width:180px;object-fit:contain}
.logo-for-dark{display:none}.logo-for-light{display:block}
[data-theme="dark"] .logo-for-dark{display:block}
[data-theme="dark"] .logo-for-light{display:none}
[data-theme="dark"] .supoth-brand.brand-logo{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(248,250,252,.94));
  border-radius:10px;padding:6px 12px;
  box-shadow:0 2px 12px rgba(0,0,0,.35),inset 0 0 0 1px rgba(255,255,255,.12)
}
[data-theme="light"] .supoth-brand.brand-logo{background:transparent;padding:2px 0;box-shadow:none}

.container{width:min(1170px,92%);margin:0 auto}
.center{text-align:center}

/* Header */
.supoth-header{
  position:sticky;top:0;z-index:100;
  background:rgba(11,15,20,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
[data-theme="light"] .supoth-header{background:rgba(244,247,251,.95)}
.supoth-header-inner{display:flex;align-items:center;gap:1rem;padding:.75rem 0;flex-wrap:wrap;position:relative}
.supoth-header-actions{display:flex;align-items:center;gap:.5rem;margin-left:auto;flex-wrap:wrap}
.supoth-nav-toggle{
  display:none;background:transparent;border:1px solid var(--border);
  color:var(--text);padding:.4rem .65rem;border-radius:8px;cursor:pointer
}
.supoth-nav{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.15rem 1.25rem;flex:1}
.supoth-header-actions{flex-shrink:0}
.supoth-nav>a,.supoth-nav .nav-drop-btn{
  color:var(--muted);font-size:.95rem;font-weight:600;padding:.35rem 0;background:none;border:none;cursor:pointer;font:inherit
}
.supoth-nav>a:hover,.supoth-nav .nav-drop-btn:hover{color:var(--text)}
.supoth-nav .nav-dropdown{position:relative}
.supoth-nav .nav-dropdown-menu{
  display:none;position:absolute;top:calc(100% + .35rem);right:0;min-width:220px;
  background:var(--card);border:1px solid var(--border);border-radius:12px;padding:.5rem 0;
  box-shadow:0 12px 32px rgba(0,0,0,.25);z-index:60
}
.supoth-nav .nav-dropdown.open .nav-dropdown-menu,.supoth-nav .nav-dropdown:hover .nav-dropdown-menu{display:block}
.supoth-nav .nav-dropdown-menu a{display:block;padding:.55rem 1rem;color:var(--text);font-size:.9rem;font-weight:500}
.supoth-nav .nav-dropdown-menu a:hover{background:var(--bg-alt);color:var(--accent)}

/* Buttons */
.btn-supoth-primary,.btn-supoth-outline,.btn-supoth-ghost,.supoth-body .btn-primary,.supoth-body .btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  font:inherit;font-weight:600;font-size:.95rem;
  padding:.55rem 1.1rem;border-radius:10px;border:1px solid transparent;cursor:pointer;transition:.2s;text-decoration:none
}
.btn-supoth-primary,.supoth-body .btn-primary{
  background:linear-gradient(135deg,var(--accent),#14b8a6);color:#042f2e !important;border-color:transparent
}
.btn-supoth-primary:hover,.supoth-body .btn-primary:hover{
  transform:translateY(-2px);box-shadow:0 8px 24px rgba(34,211,166,.35);
  color:#042f2e !important;background:linear-gradient(135deg,#2eecc4,var(--accent))
}
a.btn-supoth-primary,a.btn-supoth-primary:hover,a.btn-supoth-primary:focus{
  color:#042f2e !important;text-decoration:none
}
a.btn-supoth-primary i,a.btn-supoth-primary:hover i{color:#042f2e !important}
.btn-supoth-outline,.supoth-body .btn-ghost{background:transparent;border-color:var(--border);color:var(--text)}
.btn-supoth-outline:hover,.supoth-body .btn-ghost:hover{border-color:var(--accent2);color:var(--text)}
.btn-supoth-ghost{background:transparent;border:1px solid var(--border);color:var(--text)}
.btn-supoth-ghost:hover{border-color:var(--accent2)}
.btn-lg{padding:1rem 2rem;font-size:1.05rem}
.theme-toggle-btn{padding:.55rem .7rem}

/* Hero */
.supoth-hero{
  position:relative;min-height:520px;display:flex;align-items:center;overflow:hidden;
  background:radial-gradient(ellipse 120% 80% at 20% -20%,rgba(34,211,166,.12),transparent 50%),
    radial-gradient(ellipse at top,#1a2b3f 0%,var(--bg) 58%);
  padding:4.5rem 0 3.5rem;border-bottom:1px solid var(--border)
}
[data-theme="light"] .supoth-hero{
  background:radial-gradient(ellipse 120% 80% at 20% -20%,rgba(5,150,105,.1),transparent 50%),
    radial-gradient(ellipse at top,#e8f4fc 0%,var(--bg) 60%)
}
.supoth-hero-glow{
  position:absolute;inset:-20% -10% auto -10%;height:70%;
  background:radial-gradient(circle at 30% 40%,rgba(56,189,248,.15),transparent 55%);
  pointer-events:none;animation:heroGlow 8s ease-in-out infinite alternate
}
@keyframes heroGlow{0%{opacity:.6;transform:scale(1)}100%{opacity:1;transform:scale(1.05)}}
.supoth-hero-inner{position:relative;z-index:1;max-width:780px}
.supoth-eyebrow{
  display:inline-flex;align-items:center;gap:.45rem;color:var(--accent);font-weight:600;
  margin:0 0 1rem;padding:.35rem .85rem;border-radius:999px;
  background:rgba(34,211,166,.1);border:1px solid rgba(34,211,166,.25)
}
.supoth-hero-title{
  font-size:clamp(2rem,5vw,3rem);font-weight:700;line-height:1.12;margin:0 0 .6rem;color:var(--text);
  text-shadow:0 2px 24px rgba(0,0,0,.25)
}
.supoth-hero-sub{
  font-size:clamp(1.15rem,3vw,1.65rem);color:var(--accent);font-weight:600;margin:0 0 1.1rem;
  line-height:1.35
}
.supoth-hero-text{color:var(--muted);font-size:1.05rem;margin:0 0 1rem;line-height:1.7;max-width:52ch}
.supoth-brand-name{color:var(--accent);font-weight:700}
.supoth-hero-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.25rem}
.supoth-hero-tags span{
  font-size:.8rem;font-weight:600;padding:.35rem .75rem;border-radius:999px;
  background:var(--card);border:1px solid var(--border);color:var(--text)
}
.supoth-offer-box{
  background:linear-gradient(135deg,var(--card),rgba(34,211,166,.06));
  border:1px solid rgba(34,211,166,.45);border-radius:14px;
  padding:1rem 1.25rem;margin-bottom:1.5rem;box-shadow:0 8px 32px rgba(0,0,0,.15)
}
.supoth-offer-box p{margin:.45rem 0;display:flex;gap:.65rem;align-items:flex-start;color:var(--text);font-size:.94rem}
.supoth-offer-box i{color:var(--accent);margin-top:.15rem;min-width:1.1rem}
.supoth-offer-section{padding:2rem 0 1.25rem}
.supoth-offer-section .supoth-offer-box{max-width:760px;margin:0 auto}
.supoth-hero-actions{display:flex;flex-wrap:wrap;gap:.75rem}
.supoth-hero-actions .btn-supoth-primary{
  box-shadow:0 8px 28px rgba(34,211,166,.4);
  font-weight:700;letter-spacing:.01em
}
.supoth-hero-actions .btn-supoth-outline{color:var(--text) !important}
.supoth-hero-actions .btn-supoth-outline i{color:var(--text) !important}

/* Brand slider */
.supoth-brands{padding:2.5rem 0;background:var(--bg-alt);border-top:1px solid var(--border)}
.brand-slider{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.brand-slider-track{display:flex;align-items:center;gap:3rem;width:max-content;animation:brandSlide 35s linear infinite}
.brand-slider:hover .brand-slider-track{animation-play-state:paused}
.brand-slide{
  flex:0 0 auto;display:flex;align-items:center;justify-content:center;
  padding:.5rem 1rem;background:var(--card);border-radius:12px;border:1px solid var(--border)
}
.brand-slide img{height:72px;width:auto;max-width:160px;object-fit:contain}
@keyframes brandSlide{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Sections */
.supoth-section{padding:3.5rem 0}
.supoth-section.alt{background:var(--bg-alt)}
.supoth-section-title{font-size:clamp(1.35rem,3vw,1.75rem);font-weight:700;margin:0 0 1.5rem;color:var(--text)}
.supoth-section-title i{color:var(--accent);margin-right:.35rem}
.supoth-section-intro{color:var(--muted);max-width:640px;margin:0 auto 2rem}

.supoth-stats{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:.85rem}
.supoth-stat-card{
  background:var(--card);border:1px solid var(--border);border-radius:16px;
  padding:1.5rem 1rem;text-align:center;transition:.25s
}
.supoth-stat-card:hover{transform:translateY(-4px);border-color:rgba(56,189,248,.35)}
.supoth-stat-icon{
  display:inline-flex;align-items:center;justify-content:center;width:76px;height:76px;border-radius:50%;
  background:linear-gradient(145deg,var(--accent),#14b8a6);color:#042f2e;margin-bottom:1rem;
  box-shadow:0 8px 28px rgba(34,211,166,.35)
}
.supoth-stat-icon i{font-size:2rem;line-height:1}
.supoth-stat-card{padding:1.75rem 1.15rem 1.5rem}
.supoth-stat-card p{margin:0;font-size:.92rem;color:var(--text)}

.supoth-features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.supoth-feature-card{
  background:var(--card);border:1px solid var(--border);border-radius:16px;padding:1.25rem;transition:.25s
}
.supoth-feature-card:hover{transform:translateY(-4px);border-color:rgba(56,189,248,.35)}
.supoth-feature-card h3{font-size:1.05rem;margin:0 0 .65rem;display:flex;gap:.5rem;align-items:flex-start;color:var(--text)}
.supoth-feature-card h3 i{color:var(--accent);margin-top:.15rem}
.supoth-feature-card p{margin:0;color:var(--muted);font-size:.92rem}

.supoth-biz-lead{font-size:1.05rem;color:var(--muted);max-width:900px;margin:0 auto 2rem}
.supoth-biz-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.supoth-biz-card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:1.35rem}
.supoth-biz-card h3{font-size:1.15rem;margin:0 0 .75rem;display:flex;gap:.5rem;color:var(--text)}
.supoth-biz-card h3 i{color:var(--accent)}
.supoth-biz-card p{margin:0;color:var(--muted)}

.supoth-pricing{background:var(--bg)}
.supoth-pricing-eyebrow{text-transform:uppercase;letter-spacing:.12em;color:var(--accent);font-weight:700;margin:0}
.supoth-pricing-sub{font-size:1.15rem;margin:2.5rem 0 1rem;color:var(--accent2)}
.supoth-pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:1rem}
.supoth-price-card{
  background:var(--card);border:1px solid var(--border);border-radius:16px;padding:1.35rem;position:relative
}
.supoth-price-card.featured{border-color:var(--accent);box-shadow:0 0 0 1px rgba(34,211,166,.25)}
.supoth-badge{
  position:absolute;top:12px;right:12px;background:rgba(34,211,166,.15);
  color:var(--accent);font-size:.75rem;font-weight:700;padding:.2rem .5rem;border-radius:6px
}
.supoth-price-card h4{margin:0 0 .75rem;color:var(--text)}
.supoth-price s{color:var(--muted);font-size:.95rem;margin-right:.35rem}
.supoth-price strong{font-size:1.5rem;color:var(--accent)}
.supoth-price small{color:var(--muted)}
.supoth-price-card ul{margin:0 0 1rem;padding-left:1.1rem;color:var(--muted);font-size:.88rem}
.supoth-price-card .btn-supoth-primary{width:100%}

.supoth-order-cta{background:var(--bg-alt)}
.supoth-order-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.25rem;text-align:left}
.supoth-order-row label{display:block;color:var(--muted);font-size:.9rem}
.supoth-order-row select{
  width:100%;margin-top:.35rem;padding:.7rem;border-radius:10px;
  border:1px solid var(--border);background:var(--bg);color:var(--text);font:inherit
}

.supoth-testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.supoth-quote{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:1.25rem;margin:0}
.supoth-quote p{margin:0 0 1rem;color:var(--text);font-style:italic}
.supoth-quote footer strong{display:block;color:var(--accent)}
.supoth-quote footer span{color:var(--muted);font-size:.9rem}

/* Footer */
.supoth-footer{background:var(--bg-alt);padding:3rem 0 1.5rem;border-top:1px solid var(--border)}
.supoth-footer-inner{display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between}
.supoth-footer-brand h3{font-size:1.35rem;margin:0 0 .75rem;color:var(--text)}
.supoth-footer-label{color:var(--accent);font-weight:700}
.supoth-footer-brand p{color:var(--muted);margin:.35rem 0;max-width:360px}
.supoth-footer-contact a{color:var(--muted)}
.supoth-footer-links{display:flex;flex-direction:column;gap:.4rem}
.supoth-footer-links a{color:var(--text);font-weight:600}
.supoth-footer-copy{
  padding-top:1.5rem;margin-top:1.5rem;border-top:1px solid var(--border);
  color:var(--muted);font-size:.85rem;text-align:center
}

/* Modal */
.supoth-body .modal[hidden]{display:none}
.supoth-body .modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:1rem}
.supoth-body .modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6)}
.supoth-body .modal-card{
  position:relative;background:var(--card);border:1px solid var(--border);border-radius:16px;
  padding:1.25rem;width:min(440px,100%);color:var(--text);z-index:1
}
.supoth-body .modal-card label{display:block;margin:.65rem 0;font-size:.9rem}
.supoth-body .modal-card input,.supoth-body .modal-card textarea{
  width:100%;margin-top:.25rem;padding:.55rem;border-radius:8px;
  border:1px solid var(--border);background:var(--bg);color:var(--text);font:inherit
}
.supoth-body .modal-actions{display:flex;justify-content:flex-end;gap:.5rem;margin-top:1rem}
.supoth-body .form-msg{color:var(--accent)}

/* Inner pages — reuse site.css components */
.supoth-body .page-hero{padding:2.5rem 0 1rem;border-bottom:1px solid var(--border)}
.supoth-body .page-hero h1{margin:0;color:var(--text)}
.supoth-body .section{padding:3.5rem 0}
.supoth-body .section.alt{background:var(--bg-alt)}
.supoth-body .card{
  background:var(--card);border:1px solid var(--border);border-radius:16px;padding:1.15rem;color:var(--text)
}
.supoth-body .section-title{color:var(--text)}
.supoth-body .prose,.supoth-body p{color:var(--muted)}

@media (max-width:1024px){
  .supoth-features-grid{grid-template-columns:repeat(2,1fr)}
  .supoth-stats{grid-template-columns:repeat(3,1fr)}
  .supoth-pricing-grid{grid-template-columns:repeat(2,1fr)}
  .supoth-testimonials-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:860px){
  .supoth-nav-toggle{display:block}
  .supoth-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    background:var(--card);padding:1rem;flex-direction:column;align-items:flex-start;
    border-bottom:1px solid var(--border);margin:0;width:100%
  }
  .supoth-nav.open{display:flex}
  .supoth-header-actions{width:100%;justify-content:flex-end;margin-left:0}
  .supoth-stats{grid-template-columns:repeat(2,1fr)}
  .supoth-biz-grid{grid-template-columns:1fr}
  .supoth-order-row{grid-template-columns:1fr}
}
@media (max-width:560px){
  .supoth-features-grid,.supoth-pricing-grid,.supoth-testimonials-grid{grid-template-columns:1fr}
  .supoth-stats{grid-template-columns:1fr;max-width:280px;margin:0 auto}
}



/* Why us — 6 cards: desktop 1 row, mobile 2 rows (3+3) */
.supoth-why .supoth-stats{
  grid-template-columns:repeat(6,minmax(0,1fr));
}

@media (min-width:769px){
  .supoth-why .supoth-stats{
    grid-template-columns:repeat(6,minmax(0,1fr))!important;
    max-width:none!important;
    margin:0!important;
  }
}

@media (max-width:768px){
  .supoth-why .supoth-stats{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:.65rem;
    max-width:none;
    margin:0;
  }

  .supoth-why .supoth-stat-card{
    padding:1.15rem .45rem 1rem;
  }

  .supoth-why .supoth-stat-icon{
    width:58px;
    height:58px;
    margin-bottom:.65rem;
  }

  .supoth-why .supoth-stat-icon i{
    font-size:1.45rem;
  }

  .supoth-why .supoth-stat-card p{
    font-size:.72rem;
    line-height:1.3;
  }
}

/* Tabbed pricing — supoth.com style */
.supoth-pricing .supoth-section-title{text-transform:capitalize}
.supoth-price-tabs{
  display:flex;flex-wrap:wrap;justify-content:center;gap:0;margin:2rem auto 0;
  max-width:100%;background:var(--card);border:1px solid var(--border);border-bottom:none;border-radius:12px 12px 0 0;overflow:hidden
}
.supoth-price-tab{
  flex:1;min-width:140px;padding:1rem 1.25rem;border:0;background:transparent;
  color:var(--muted);font:inherit;font-weight:700;font-size:1rem;cursor:pointer;
  transition:background .2s,color .2s;border-right:1px solid var(--border)
}
.supoth-price-tab:hover{background:rgba(255,255,255,.06)}
.supoth-price-tab.is-active{background:linear-gradient(135deg,var(--accent),#14b8a6);color:#042f2e}
.supoth-price-panel{padding-top:0}
.supoth-price-panel[hidden]{display:none!important}

.supoth-compare-wrap{
  overflow-x:auto;margin-top:0;border:1px solid var(--border, rgba(255,255,255,.12));
  border-radius:0 0 12px 12px;background:var(--card, #1a1228)
}
.supoth-compare-table{width:100%;min-width:720px;border-collapse:collapse;font-size:.92rem}
.supoth-compare-table th,.supoth-compare-table td{
  border:1px solid rgba(255,255,255,.08);padding:.65rem .75rem;text-align:center;vertical-align:middle
}
.supoth-compare-feature-col{
  text-align:left!important;background:rgba(0,0,0,.2);font-weight:600;color:var(--text,#fff);
  min-width:200px;position:sticky;left:0;z-index:2
}
.supoth-compare-plan-col{background:var(--plan-color,#5c2d91)!important;color:#fff!important;vertical-align:top;padding:1rem .75rem!important}
.supoth-compare-plan-name{display:block;font-size:1.35rem;font-weight:800;margin-bottom:.5rem}
.supoth-compare-plan-price{display:block;margin-bottom:.75rem;line-height:1.3}
.supoth-compare-plan-price s{opacity:.85;font-size:.9rem;margin-right:.25rem}
.supoth-compare-plan-price strong{font-size:1.4rem}
.supoth-compare-plan-price small{display:block;font-size:.8rem;opacity:.9;margin-top:.15rem}
.supoth-compare-plan-col .btn-supoth-primary{margin-top:.25rem;width:100%;max-width:160px}
.supoth-compare-cell{background:rgba(255,255,255,.03)}
.supoth-compare-yes{color:#22c55e;font-size:1.15rem}
.supoth-compare-no{color:#ef4444;font-size:1.15rem;opacity:.9}
.supoth-compare-branch{display:block;font-size:.78rem;color:var(--muted,#c4b8d4);margin-top:.2rem}
.supoth-compare-table tbody tr:nth-child(even) td:not(.supoth-compare-feature-col){background:rgba(255,255,255,.04)}
.supoth-compare-table tbody tr:nth-child(even) .supoth-compare-feature-col{background:rgba(0,0,0,.28)}

.supoth-hardware-grid{margin-top:1.5rem}
.supoth-hardware-grid .supoth-price-card ul{list-style:none;padding:0}
.supoth-hardware-grid .supoth-price-card li{margin:.35rem 0;color:var(--muted)}
.supoth-hardware-grid .supoth-price-card li i{color:#22c55e;margin-right:.35rem}

@media (max-width:768px){
  .supoth-price-tab{font-size:.88rem;padding:.75rem .5rem;min-width:100px}
  .supoth-compare-plan-name{font-size:1.1rem}
}
