/* styles.css - extracted and organized from index.html
   Sections:
   - Base
   - Layout
   - Header & Nav
   - Hero
   - Sections & Cards
   - Dropdown
   - Buttons
   - Dark mode
   - Responsive
*/

/* Design tokens (light mode default) */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:rgba(0,0,0,0.65);
  --muted-strong:rgba(0,0,0,0.78);
  --accent:#111111;
  --max-width:1100px;
  --section-gap:100px;
  --border:rgba(0,0,0,0.08);
  --card-border:rgba(0,0,0,0.08);
  --header-height:82px;
}

/* Dark mode overrides — toggled by adding .dark-mode to body */
body.dark-mode{
  --bg:#0e1114;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.74);
  --muted-strong:rgba(255,255,255,0.86);
  --accent:#d9dbe0;
  --border:rgba(255,255,255,0.10);
  --card-border:rgba(255,255,255,0.10);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-text-size-adjust:100%;
  padding-top:var(--header-height, 82px);
}

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

/* Utility .container to match site-container for strict markup requirements */
.container{max-width:var(--max-width);margin:0 auto;padding:0 28px}

/* Header */
/* Header - HammerTech-like layout */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,0.08);
  z-index:1000;
}

.header-inner{
  max-width:1250px;
  margin:0 auto;
  padding:0 40px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{display:flex;align-items:center}
.brand img{height:30px;width:auto;display:block}

/* Flat navigation — no dropdowns */
nav.primary-nav{display:flex;gap:6px;align-items:center}
.nav-link{
  color:#374151;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  letter-spacing:0.005em;
  padding:8px 14px;
  border-radius:6px;
  display:inline-block;
  transition:color 0.15s ease,background 0.15s ease;
}
.nav-link:hover{color:#111827;background:rgba(0,0,0,0.04)}
.nav-link:focus{outline:2px solid rgba(91,177,216,0.5);outline-offset:2px}
.nav-link.active{color:#111827;font-weight:600}

/* Theme toggle */
.theme-toggle{
  appearance:none;
  border:1px solid #d1d9e5;
  background:#f7fafc;
  color:#0f172a;
  border-radius:8px;
  padding:9px 12px;
  min-width:102px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.01em;
  cursor:pointer;
  transition:background 0.18s ease,border-color 0.18s ease,color 0.18s ease,transform 0.18s ease,box-shadow 0.18s ease;
}
.theme-toggle:hover{
  background:#eef4fa;
  border-color:#bdcadc;
  transform:translateY(-1px);
}
.theme-toggle:focus-visible{
  outline:2px solid rgba(91,177,216,0.55);
  outline-offset:2px;
}

.mobile-theme-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  min-height:48px;
  border-radius:8px;
  font-size:15px;
}

/* main nav adjustments */
.main-nav{display:flex;gap:38px;align-items:center;font-weight:500}
.main-nav a{color:#1a1a1a;text-decoration:none}

.header-actions{display:flex;align-items:center;gap:16px}
.mobile-menu-toggle{display:none}
.mobile-nav-panel{display:none}

.btn.primary{background:#5bb1d8;color:#ffffff;padding:12px 22px;border-radius:6px;text-decoration:none;font-weight:600}

/* CTA transition and hover styles for nav and primary buttons */
.nav-cta,
.btn-primary,
.btn.primary {
  transition: all 0.25s ease;
}

.nav-cta:hover,
.btn-primary:hover,
.btn.primary:hover {
  background-color: #4f94b3; /* slightly darker than current */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: #ffffff;
}

@media (max-width:1024px){
  .header-inner{padding:0 20px}
  .main-nav{gap:20px}
  /* use width-based sizing for logo on medium viewports */
  .header-logo img{width:170px;max-height:56px}
}

/* Floating contact button */
.floating-contact{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:1200;
  background:#5bb1d8;
  color:#ffffff;
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.floating-contact:active,.floating-contact:focus{outline:none;box-shadow:0 8px 20px rgba(0,0,0,0.2)}
/* Hide floating button when contact section is in view */
.floating-contact.is-hidden{
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
}
@media (max-width:640px){
  .floating-contact{padding:9px 12px;right:16px;bottom:16px}
}

/* Global spacing */
main{padding:0}
section{padding:var(--section-gap) 0}
section[id]{scroll-margin-top:calc(var(--header-height) + 18px)}
section#contact{scroll-margin-top:var(--header-height)}

/* HERO */
/* Enterprise hero: background image only, subtle full overlay, left-aligned content */
.hero{position:relative;min-height:88vh;display:flex;align-items:center;padding-left:8%;background-color:#0f172a;background-image:linear-gradient(120deg, rgba(15,23,42,0.66) 0%, rgba(30,41,59,0.56) 45%, rgba(51,65,85,0.48) 100%),url("../images/internetimage3.png");background-size:cover;background-position:center;background-repeat:no-repeat}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(105deg,rgba(10,16,30,0.36) 0%,rgba(10,16,30,0.2) 60%,rgba(10,16,30,0.08) 100%);pointer-events:none}
.hero-inner{position:relative;z-index:2;max-width:660px;text-align:left}
.hero-eyebrow{letter-spacing:2px;font-size:11px;color:rgba(255,255,255,0.75);margin-bottom:20px;font-weight:600;text-transform:uppercase}
.hero h1{font-size:56px;font-weight:800;margin-bottom:14px;color:#ffffff;line-height:1.1;letter-spacing:-0.02em}
.hero h2{font-size:22px;font-weight:500;margin-bottom:24px;color:#ffffff}
.hero-sub{font-size:17px;line-height:1.65;margin-bottom:36px;color:rgba(255,255,255,0.85);max-width:560px}
.hero-buttons{display:flex;gap:12px}
.btn{display:inline-block;padding:11px 18px;border-radius:4px;border:1px solid var(--border);background:transparent;text-decoration:none;font-weight:700;font-size:15px}
.btn:hover{background:rgba(0,0,0,0.03)}
.trust-list{display:flex;gap:14px;margin-top:18px;font-size:13px}

/* Hero tagline (replaces h2 for semantic correctness) */
.hero-tagline{
  font-size:22px;
  font-weight:500;
  margin-bottom:24px;
  color:#ffffff;
}

/* Hero secondary (ghost) button */
.btn.hero-secondary{
  background:transparent;
  border:2px solid rgba(255,255,255,0.65);
  color:#ffffff;
  padding:11px 20px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.25s ease;
}
.btn.hero-secondary:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.9);
  transform:translateY(-2px);
}

/* ensure hero text stays white regardless of mode */
.hero h1,.hero h2,.hero p,.hero span,.hero-eyebrow,.hero-sub,.hero-tagline{color:#ffffff !important}

/* header logo styling */
.header-logo{
  display:inline-flex;
  align-items:center;
  padding:0;
  line-height:1;
  background:transparent;
  border-radius:0;
}

.header-logo-text{
  display:inline-block;
  font-size:30px;
  font-weight:800;
  letter-spacing:0.01em;
  line-height:1;
  color:#0f172a;
}

.header-logo img,
.logo img{
  width:248px;
  height:52px;
  object-fit:cover;
  object-position:center;
  display:block;
}

@media (max-width:1024px){
  .header-logo-text{font-size:26px}
  .header-logo img,
  .logo img{
    width:218px;
    height:46px;
  }
}

@media (max-width:768px){
  .header-logo-text{font-size:22px}
  .header-logo img,
  .logo img{
    width:188px;
    height:40px;
  }
}

@media (max-width:420px){
  .header-logo-text{font-size:18px}
  .header-logo img,
  .logo img{
    width:160px;
    height:34px;
  }
}

body.dark-mode .header-logo-text{color:#f8fafc}

/* Social proof pills */
.built-for{display:flex;justify-content:flex-start;margin-top:18px}
.pills{display:flex;flex-wrap:wrap;gap:10px}
.pill{border:1px solid var(--border);padding:8px 12px;border-radius:999px;font-size:13px;color:var(--muted);background:transparent}

/* Platform overview */
.platform{display:grid;grid-template-columns:1fr 420px;gap:32px;align-items:start}
.panel{border:1px solid var(--border);padding:18px;border-radius:6px;background:transparent}
.snapshot-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid rgba(0,0,0,0.04)}
.snapshot-row:last-child{border-bottom:none}
.snapshot-title{font-weight:700}
.snapshot-desc{color:var(--muted);font-size:14px}

/* Core pillars */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.pillar{border:1px solid var(--card-border);padding:26px;border-radius:6px;display:flex;flex-direction:column;justify-content:flex-start;height:100%;transition:border-color .12s}
.pillar:hover{border-color:rgba(0,0,0,0.12)}
.pillar .label{font-size:12px;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.pillar h4{margin:0 0 8px;font-size:16px;font-weight:700}
.pillar p{margin:0;color:var(--muted-strong);font-size:15px}

/* Features section */
.features{background:#f8f9fb;padding:80px 0}
.features-header{text-align:center;margin-bottom:48px}
.features-header .eyebrow{font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:#5bb1d8;display:block;margin-bottom:10px}
.features-header h2{font-size:34px;font-weight:800;color:#111827;margin:0;letter-spacing:-0.01em}

/* Features grid: 4 image-based cards (HammerTech-like) */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}

.feature-card{background:#fff;border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,0.07);transition:transform 0.2s ease,box-shadow 0.2s ease;display:flex;flex-direction:column;box-shadow:0 2px 8px rgba(0,0,0,0.04)}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,0.10)}

.feature-image{position:relative;height:210px;overflow:hidden}
.feature-image img{width:100%;height:100%;object-fit:cover;display:block}

.feature-image:empty,
.optimize-image:empty,
.pdp-media:empty{
  min-height:200px;
  border:1px dashed rgba(15,23,42,0.24);
  border-radius:12px;
  background:rgba(15,23,42,0.04);
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-image:empty::before,
.optimize-image:empty::before,
.pdp-media:empty::before{
  content:"Visual removed";
  font-size:13px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:rgba(15,23,42,0.55);
}

body.dark-mode .feature-image:empty,
body.dark-mode .optimize-image:empty,
body.dark-mode .pdp-media:empty{
  border-color:rgba(148,163,184,0.4);
  background:rgba(148,163,184,0.12);
}

body.dark-mode .feature-image:empty::before,
body.dark-mode .optimize-image:empty::before,
body.dark-mode .pdp-media:empty::before{
  color:rgba(226,232,240,0.85);
}


.feature-content{padding:24px;display:flex;flex-direction:column;flex:1}
.feature-content h3{font-size:16px;font-weight:700;margin:0 0 8px;color:#111827}
.feature-content p{margin-bottom:0;font-size:14px;line-height:1.6;color:#6b7280}
.feature-link{display:inline-block;margin-top:auto;padding-top:16px;font-weight:600;font-size:14px;color:#4aa3c5;text-decoration:none}

@media (max-width:1100px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:640px){
  .feature-grid{grid-template-columns:1fr}
}

/* NOTE: .why and legacy .contact styles removed — those sections were deleted from HTML to keep layout tidy */

/* Footer */
footer{border-top:1px solid var(--border);padding:20px 0;color:var(--muted);font-size:13px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer-meta{border-top:1px solid var(--border);padding-top:12px;margin-top:12px;color:var(--muted);font-size:13px}
.footer-meta-inner{display:flex;justify-content:space-between;align-items:center}

/* Responsive */
@media (max-width:980px){.platform{grid-template-columns:1fr}}
@media (max-width:760px){.pillars{grid-template-columns:1fr}.why{grid-template-columns:1fr}}
@media (max-width:640px){
  :root{--header-height:56px}
  .header-inner{height:56px}
  .hero-inner{padding-left:20px;padding-right:20px}
  .hero h1{font-size:36px}
  .hero p.lead{font-size:15px}
  .site-container{padding:0 18px}
}

/* End of styles.css */

/* ============================= */
/* Optimize Section */
/* ============================= */

.optimize-section {
  background: #ffffff;
  border-top: none !important;
}

/* New container that centers content and constrains width */
.optimize-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.optimize-text{
  max-width: 600px; /* text column constraint per spec */
}

.optimize-text .eyebrow{
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #5e6b78;
  margin-bottom: 20px;
  font-weight: 600;
}

.optimize-text h2{
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1f2b;
}

.optimize-text p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.text-cta{
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #5da7c7;
  text-decoration: none;
  transition: 0.2s ease;
}

.text-cta:hover{opacity:0.8}

/* Image column constraint and sizing */
.optimize-image{max-width:400px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.optimize-image img{width:100%;max-width:400px;display:block}
/* Override for phone screenshot in optimize section */
.optimize-image img.optimize-phone-img{
  width:auto;
  max-width:300px;
  height:auto;
  border-radius:30px;
  box-shadow:0 30px 70px rgba(0,0,0,0.20);
}

/* Mobile: stack vertically and center content */
@media (max-width: 768px){
  .optimize-container{
    flex-direction:column;
    padding: 60px 20px;
    gap: 32px;
    align-items:center;
    text-align:center;
  }

  .optimize-text{max-width:100%}
  .optimize-image{max-width:100%}

  .optimize-text h2{font-size:34px}
}

/* Logo marquee: perfect seamless loop */
.logo-marquee{
  overflow:hidden;
  background:#f8f8f8;
  padding:36px 0;
}

.marquee-track{
  display:flex;
  width:max-content;
  animation:scroll 47.52s linear infinite;
}

.logo-set{
  display:flex;
  gap:64px;
  padding-right:64px;
}

.logo-set img{
  height:88px;
  opacity:0.9;
  flex-shrink:0;
}

@keyframes scroll{
  from{transform:translateX(0);} 
  to{transform:translateX(-50%);} /* moves exactly half the track (one duplicated set) */
}

@media (max-width:768px){
  .logo-set img{height:66px}
}

/* ============================= */
/* Productivity Section (requested) */
/* ============================= */
.productivity-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.productivity-text {
  max-width: 600px;
}

.productivity-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .productivity-section {
    flex-direction: column;
    text-align: center;
  }

  .productivity-image img {
    max-width: 100%;
  }
}

/* ============================= */
/* Professional Contact Section - Light Theme */
/* ============================= */
.contact-section{
  width:100%;
  background:#f5f6f8; /* light neutral background */
  color:#1f2937; /* dark text */
  padding-top:28px;
  padding-bottom:100px;
}
.contact-section h2{
  margin:0 0 10px;
  line-height:1.15;
}
.contact-section > .container > p{
  margin:0 0 24px;
}
.contact-inner{max-width:1100px;margin:0 auto;padding:0 28px}
.contact-inner h2{color:#0f172a;font-size:36px;margin-bottom:12px}
.contact-sub{color:#374151;margin-bottom:28px}
.contact-grid{display:flex;gap:40px;align-items:start}
.contact-cards{display:flex;flex-direction:column;gap:18px;width:420px}
.contact-card{background:#ffffff;border:1px solid #e5e7eb;padding:20px;border-radius:12px;box-shadow:0 8px 20px rgba(15,23,42,0.04)}
.contact-card h3{color:#0f172a;margin:0 0 6px}
.contact-card .muted{color:#6b7280;margin-bottom:10px}
.contact-link{color:#1f6f8f;text-decoration:none;font-weight:600}
.contact-primary .btn.primary{background:#5bb1d8;color:#ffffff}

.contact-form{flex:1;display:flex;flex-direction:column;gap:12px;background:transparent}
.contact-form .form-field{display:block;color:#111827}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #d1d5db;background:#ffffff;color:#0f172a}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:#4f94b3;box-shadow:0 6px 18px rgba(79,148,179,0.08)}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#9ca3af}
.form-actions{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.form-note{color:#6b7280;font-size:13px;margin:0}

@media (max-width:900px){
  .contact-grid{flex-direction:column;align-items:center;text-align:center}
  .contact-cards{width:100%;flex-direction:row;justify-content:space-between}
  .contact-card{flex:1;margin:0 8px}
  .form-actions{align-items:center}
}

/* Adapted contact styles (converted from provided snippet) */
.contact-header { margin-bottom: 60px; max-width: 700px; }
.contact-header h2 { font-size: 42px; font-weight: 600; margin-bottom: 12px; color: #111827; }
.contact-header p { font-size: 18px; color: #6b7280; }

/* Contact logo above form — removed from markup; rule kept to prevent layout shift if element is re-introduced */
.contact-logo { display: none; }


.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.contact-grid { display: grid; grid-template-columns: 420px 1fr; gap: 60px; }

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.info-card { background: #ffffff; padding: 32px; border-radius: 12px; border: 1px solid #e5e7eb; }
.info-card h4 { font-size: 18px; margin-bottom: 8px; color: #111827; }
.info-card p { font-size: 14px; color: #6b7280; margin-bottom: 20px; }
.phone-link { font-weight: 600; color: #5bb1d8; text-decoration: none; }
.email-options { margin: 0; }
.email-options summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.email-options summary::-webkit-details-marker { display: none; }
.email-options .btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
}
.email-options-menu {
  margin-top: 10px;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  max-width: 280px;
}
.email-options-menu a {
  display: block;
  padding: 11px 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  border-bottom: 1px solid #eef2f7;
}
.email-options-menu a:last-child { border-bottom: 0; }
.email-options-menu a:hover { background: #f8fbff; }

.contact-form { background: #ffffff; padding: 40px; border-radius: 12px; border: 1px solid #e5e7eb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #111827; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid #d1d5db; font-size: 15px; transition: all 0.2s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #4f94b3; box-shadow: 0 0 0 2px rgba(79,148,179,0.08); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { margin: 10px 0 0; font-size: 14px; min-height: 20px; color: #0f172a; }
.form-status.is-error { color: #b91c1c; }
.form-status.is-success { color: #166534; }

.btn.primary.large { width: 100%; padding: 14px 18px; font-size: 16px; margin-top: 10px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-header { text-align: center; margin: 0 auto 32px; }
  .contact-info { flex-direction: row; gap: 12px; }
  .info-card { flex: 1; }
  .contact-form { padding: 24px; }
}

/* ============================= */
/* Footer bar (legacy rule kept for compatibility) */
/* ============================= */
.footer-bar{background:#f3f4f6;border-top:1px solid #e5e7eb}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 0;color:#6b7280;font-size:14px}
.footer-inner a{color:#5bb1d8;text-decoration:none}
.footer-left,.footer-center,.footer-right{flex:1}
.footer-center{text-align:center}
.footer-right{text-align:right}
.footer-home-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.footer-home-link img{
  width:18px;
  height:18px;
  border-radius:4px;
  display:block;
}

@media (max-width:640px){
  .footer-inner{flex-direction:column;align-items:center;text-align:center;padding:20px 12px}
  .footer-left,.footer-center,.footer-right{width:100%;text-align:center;margin:6px 0}
}

/* ============================= */
/* Site Footer — expanded multi-column */
/* ============================= */
.site-footer{
  background:#0f172a;
  color:#94a3b8;
  border-top:none;
}

.footer-main{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:48px;
  padding-top:64px;
  padding-bottom:56px;
}

.footer-col--brand{
  padding-right:16px;
}

.footer-logo-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  margin-bottom:16px;
}
.footer-icon{
  width:28px;
  height:28px;
  border-radius:6px;
  display:block;
}
.footer-logo-wordmark{
  width:188px;
  height:34px;
  display:block;
  object-fit:cover;
  object-position:center;
}
.footer-brand-name{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:0.02em;
}
.footer-tagline{
  font-size:14px;
  color:#64748b;
  line-height:1.6;
  margin:0 0 16px;
  max-width:240px;
}
.footer-contact-detail{
  margin:0 0 6px;
  font-size:14px;
}
.footer-contact-detail a{
  color:#94a3b8;
  text-decoration:none;
  transition:color 0.18s ease;
}
.footer-contact-detail a:hover{color:#5bb1d8}

.footer-col-heading{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#ffffff;
  margin:0 0 16px;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  font-size:14px;
  color:#64748b;
  text-decoration:none;
  transition:color 0.18s ease;
}
.footer-links a:hover{color:#5bb1d8}

/* Footer bottom bar */
.footer-bar{
  background:#0a0f1a;
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-bar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  color:#475569;
  font-size:13px;
}
.footer-bar-inner a{
  color:#475569;
  text-decoration:none;
  transition:color 0.18s ease;
}
.footer-bar-inner a:hover{color:#5bb1d8}
.footer-legal-links{
  display:flex;
  gap:20px;
}

@media (max-width:900px){
  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:32px;
    padding-top:48px;
    padding-bottom:40px;
  }
  .footer-col--brand{
    grid-column:1 / -1;
    padding-right:0;
  }
  .footer-tagline{max-width:100%}
}

@media (max-width:600px){
  .footer-main{
    grid-template-columns:1fr;
    gap:28px;
    padding-top:40px;
    padding-bottom:32px;
  }
  .footer-bar-inner{
    flex-direction:column;
    text-align:center;
    gap:8px;
    padding:16px 0;
  }
}

/* ============================= */
/* Trust Strip (replaces logo marquee) */
/* ============================= */
.trust-strip{
  background:#f8f9fb;
  padding:40px 0;
  border-top:none;
  border-bottom:1px solid #e9edf2;
}
.trust-items{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:12px 36px;
  text-align:center;
}
.trust-value{
  font-size:28px;
  font-weight:800;
  color:#111827;
  line-height:1;
  letter-spacing:-0.02em;
}
.trust-label{
  font-size:12px;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:500;
  max-width:140px;
  line-height:1.4;
}
.trust-divider{
  width:1px;
  height:40px;
  background:#e5e7eb;
  flex-shrink:0;
}
@media (max-width:900px){
  .trust-item{padding:10px 20px}
  .trust-value{font-size:22px}
}
@media (max-width:600px){
  .trust-divider{display:none}
  .trust-items{gap:0}
  .trust-item{
    width:50%;
    padding:16px 8px;
    border-bottom:1px solid #f0f2f5;
  }
  .trust-item:nth-child(odd){border-right:1px solid #f0f2f5}
}

/* ============================= */
/* Mobile nav CTA link */
/* ============================= */
.mobile-nav-cta-link{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:14px 20px;
  background:#5bb1d8;
  color:#ffffff !important;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  border-radius:8px;
  border-bottom:none !important;
  min-height:auto !important;
  transition:background 0.15s ease;
}
.mobile-nav-cta-link:hover{background:#4aa3c5}

/* ============================= */
/* Pricing Cards Section */
/* ============================= */
/* ============================= */
/* Pricing Cards — compact ShuttersAssist style */
/* ============================= */
.pricing-cards-section{
  background:#f0f4f8;
  padding:56px 0 80px;
}
.pricing-intro{
  text-align:center;
  margin-bottom:38px;
}
.pricing-intro h2{
  font-size:38px;
  font-weight:700;
  color:#111827;
  margin-bottom:10px;
}
.pricing-intro p{
  font-size:15px;
  color:#6b7280;
}
.pricing-value-note{
  max-width:760px;
  margin:10px auto 0;
  line-height:1.6;
  color:#4b5563;
}
.pricing-buyout-note{
  display:inline-block;
  margin-left:8px;
  padding:3px 10px;
  border-radius:999px;
  border:1px solid #cde8d8;
  background:#ecf8f1;
  color:#166534;
  font-weight:600;
  line-height:1.45;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}

.pricing-card{
  background:#ffffff;
  border:1.5px solid #dce3ec;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover{
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
  transform:translateY(-2px);
}
.pricing-card--featured{
  border-color:#5bb1d8;
  border-width:2px;
  box-shadow:0 8px 24px rgba(91,177,216,0.18);
}
.pricing-card-badge{
  display:inline-block;
  background:#dbeafe;
  color:#1d4ed8;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:999px;
  margin:0;
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
}

.pricing-card-header{
  padding:28px 28px 0;
  flex:1;
}
.pricing-plan-name{
  font-size:22px;
  font-weight:800;
  color:#111827;
  margin:0 0 14px;
  letter-spacing:-0.02em;
}
.pricing-price-block{
  display:flex;
  align-items:baseline;
  gap:2px;
  margin-bottom:4px;
  line-height:1;
}
.pricing-from{
  font-size:16px;
  color:#6b7280;
  font-weight:500;
}
.pricing-price{
  font-size:40px;
  font-weight:800;
  color:#1d4ed8;
  letter-spacing:-0.03em;
}
.pricing-period{
  font-size:15px;
  color:#6b7280;
  font-weight:500;
  margin-left:2px;
}
.pricing-setup{
  font-size:13px;
  color:#9ca3af;
  margin:4px 0 14px;
}
.pricing-plan-tagline{
  font-size:14px;
  color:#374151;
  line-height:1.6;
  margin:0 0 18px;
}
.pricing-highlight-pill{
  display:flex;
  align-items:center;
  gap:8px;
  background:#f0f7ff;
  border:1px solid #bfdbfe;
  border-radius:8px;
  padding:10px 14px;
  font-size:13px;
  font-weight:600;
  color:#1e40af;
  margin-bottom:16px;
  line-height:1.4;
}
.pricing-highlight-icon{
  font-size:16px;
  flex-shrink:0;
}
.pricing-intro-offer{
  font-size:13px;
  font-weight:600;
  color:#059669;
  margin:0 0 24px;
}

.pricing-card-footer{
  padding:0 28px 28px;
  margin-top:auto;
}
.pricing-cta{
  display:block;
  text-align:center;
  width:100%;
  box-sizing:border-box;
  margin-bottom:10px;
}
.pricing-see-all{
  display:block;
  text-align:center;
  font-size:13px;
  color:#6b7280;
  text-decoration:none;
  padding:6px 0;
  transition:color 0.18s ease;
}
.pricing-see-all:hover{color:#5bb1d8}

.pricing-gst-note{
  text-align:center;
  font-size:13px;
  color:#9ca3af;
  margin-top:28px;
}

@media (max-width:980px){
  .pricing-grid{grid-template-columns:1fr 1fr;gap:16px}
  .pricing-card:last-child{grid-column:1 / -1;max-width:460px;margin:0 auto}
}
@media (max-width:640px){
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card:last-child{grid-column:auto;max-width:none;margin:0}
  .pricing-card-header{padding:22px 20px 0}
  .pricing-card-footer{padding:0 20px 22px}
  .pricing-price{font-size:34px}
}

/* ============================= */
/* Pricing Comparison Table */
/* ============================= */
.pricing-compare-section{
  background:#ffffff;
  padding:80px 0;
}
.pricing-compare-section h2{
  font-size:34px;
  font-weight:700;
  color:#111827;
  margin-bottom:8px;
  text-align:center;
}
.pricing-compare-sub{
  text-align:center;
  color:#6b7280;
  font-size:15px;
  margin-bottom:48px;
}

.compare-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid #e5e7eb;
  border-radius:12px;
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  min-width:600px;
}
.compare-table thead tr{
  background:#f8f9fb;
  border-bottom:2px solid #e5e7eb;
}
.compare-table thead th{
  padding:16px 20px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:#111827;
  letter-spacing:0.01em;
}
.compare-table thead th.compare-feature-col{
  text-align:left;
  color:#6b7280;
  font-weight:500;
}
.compare-featured-col{
  background:#f0f9ff;
}
.compare-table thead th.compare-featured-col{
  color:#0369a1;
  background:#dbeafe;
}

.compare-table tbody tr{
  border-bottom:1px solid #f1f5f9;
}
.compare-table tbody tr:last-child{
  border-bottom:none;
}
.compare-table tbody tr:hover{
  background:#fafbfc;
}
.compare-table tbody th[scope="row"]{
  padding:13px 20px;
  text-align:left;
  font-weight:500;
  color:#374151;
}
.compare-table tbody td{
  padding:13px 20px;
  text-align:center;
  color:#374151;
}

/* Group header rows */
.compare-group-row td{
  background:#f1f5f9;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#64748b;
  padding:10px 20px;
  border-bottom:1px solid #e2e8f0;
}

.compare-table tfoot tr{
  background:#f8f9fb;
  border-top:2px solid #e5e7eb;
}
.compare-table tfoot td{
  padding:20px;
  text-align:center;
}

@media (max-width:640px){
  .compare-table-wrap{border-radius:8px}
  .compare-table{font-size:13px}
  .compare-table thead th,.compare-table tbody th[scope="row"],.compare-table tbody td{padding:11px 12px}
}

/* ============================= */
/* Mobile layout — ≤768px        */
/* ============================= */
@media (max-width:768px){
  /* Prevent horizontal overflow site-wide */
  body{overflow-x:hidden}

  /* Reduce section vertical rhythm */
  :root{--section-gap:60px}

  /* Hide full nav on mobile to prevent overflow */
  nav.primary-nav.main-nav{display:none}
  .header-actions{display:none}
  .mobile-menu-toggle{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    width:40px;
    height:40px;
    padding:8px;
    border:1px solid #d1d5db;
    background:#ffffff;
    border-radius:6px;
    cursor:pointer;
  }
  .mobile-menu-toggle-line{
    width:100%;
    height:2px;
    background:#111111;
    border-radius:999px;
    display:block;
  }
  .mobile-nav-panel{
    display:none;
    padding:8px 16px 16px;
    border-top:1px solid #e5e7eb;
    background:#ffffff;
  }
  /* Flat mobile nav links */
  .mobile-nav-link{
    display:flex;
    align-items:center;
    height:52px;
    padding:0 8px;
    text-decoration:none;
    color:#1f2937;
    font-size:16px;
    font-weight:500;
    border-bottom:1px solid #f1f5f9;
    transition:color 0.15s ease;
  }
  .mobile-nav-link:last-of-type{border-bottom:none}
  .mobile-nav-link:hover{color:#5bb1d8}
  .site-header.mobile-nav-open .mobile-nav-panel{display:block}

  /* Hero: more compact on mobile */
  .hero{min-height:80vh;padding-left:0}
  .hero-inner{padding:0 24px}
  .hero h1{font-size:36px;letter-spacing:-0.01em}
  .hero h2{font-size:17px}
  .hero-sub{font-size:15px}
  .hero-buttons{flex-direction:column;gap:10px}
  .hero-buttons .btn{width:100%;text-align:center;box-sizing:border-box}

  /* Features: tighten card padding */
  .features{padding:56px 0}
  .features-header{margin-bottom:32px}
  .features-header h2{font-size:26px}
  .feature-content{padding:20px}
  .feature-image{height:180px}
  .feature-image--phone img{max-height:160px}

  /* Contact section */
  .contact-section{padding-top:22px;padding-bottom:60px}
  .container{padding:0 16px}
  .contact-section h2{font-size:28px}
  .contact-grid{grid-template-columns:1fr;gap:24px}
  .contact-info{flex-direction:column;gap:16px}
  .info-card{padding:20px}
  .contact-form{padding:20px}
  .form-row{grid-template-columns:1fr;gap:0}
  .btn.primary.large{font-size:15px}
}

/* ==============================================
   PHONE SCREENSHOT STYLES
   ============================================== */

/* Feature card phone screenshots: contain within card, neutral bg */
.feature-image--phone{
  background:linear-gradient(160deg,#eef2f7 0%,#dde6f0 100%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-top:20px;
}
.feature-image--phone img{
  width:auto;
  height:90%;
  max-height:200px;
  max-width:55%;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  display:block;
}

/* Optimize section phone screenshot */
.optimize-phone-img{
  max-width:280px;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,0.22);
  margin:0 auto;
  display:block;
}

/* Pre-starts page phone screenshots in split sections */
.pdp-hero-phone-img{
  max-width:300px;
  margin:0 auto;
  display:block;
  border-radius:28px !important;
  border:none !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.pdp-media-phone-img{
  max-width:280px;
  margin:0 auto;
  display:block;
  border-radius:28px !important;
  border:none !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ==============================================
   APP PREVIEW SECTION
   ============================================== */
.app-preview-section{
  background:#0b1120;
  padding:100px 0 0;
  overflow:hidden;
  border-top:none !important;
}

.app-preview-section .eyebrow{
  color:#5bb1d8;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin:0 0 14px;
  display:block;
}

.app-preview-header{
  text-align:center;
  max-width:600px;
  margin:0 auto 64px;
}

.app-preview-header h2{
  font-size:40px;
  font-weight:800;
  color:#ffffff;
  margin:0 0 18px;
  line-height:1.15;
  letter-spacing:-0.02em;
}

.app-preview-sub{
  font-size:16px;
  line-height:1.7;
  color:#64748b;
  margin:0;
}

.app-preview-phones{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:24px;
  padding-bottom:0;
}

.app-phone-frame{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
}

.app-phone-frame img{
  width:210px;
  border-radius:30px;
  box-shadow:0 40px 80px rgba(0,0,0,0.6),0 0 0 1px rgba(255,255,255,0.06);
  display:block;
}

.app-phone-frame--light img{
  transform:rotate(-5deg) translateY(30px);
  width:195px;
}

.app-phone-frame--center img{
  width:240px;
  transform:translateY(0);
  border-radius:32px;
  box-shadow:0 50px 100px rgba(0,0,0,0.7),0 0 0 1px rgba(255,255,255,0.08);
  position:relative;
  z-index:2;
}

.app-phone-frame--dark img{
  transform:rotate(5deg) translateY(30px);
  width:195px;
}

.app-phone-label{display:none}

@media(max-width:768px){
  .app-preview-section{padding:70px 0 0}
  .app-preview-header h2{font-size:28px}
  .app-preview-phones{gap:12px}
  .app-phone-frame img{width:115px;border-radius:18px}
  .app-phone-frame--center img{width:138px;border-radius:22px}
  .app-phone-frame--light img{transform:rotate(-4deg) translateY(20px);width:108px}
  .app-phone-frame--dark img{transform:rotate(4deg) translateY(20px);width:108px}
  .pdp-hero-phone-img,.pdp-media-phone-img{max-width:220px}
  .optimize-phone-img{max-width:200px}
}

/* ============================================================
   Dark Mode UI Polish
   ============================================================ */
body.dark-mode{
  --bg:#0a1220;
  --text:#e5e7eb;
  --muted:rgba(203,213,225,0.86);
  --muted-strong:rgba(226,232,240,0.92);
  --accent:#dbeafe;
  --border:rgba(148,163,184,0.28);
  --card-border:rgba(148,163,184,0.28);
}

body.dark-mode .site-header{
  background:#0f172a;
  border-bottom:1px solid rgba(148,163,184,0.28);
}
body.dark-mode .main-nav a,
body.dark-mode .nav-link{
  color:#dbe6f3;
}
body.dark-mode .nav-link:hover{
  color:#f8fafc;
  background:rgba(148,163,184,0.16);
}
body.dark-mode .mobile-menu-toggle{
  background:#111d32;
  border-color:#334155;
}
body.dark-mode .mobile-menu-toggle-line{
  background:#e2e8f0;
}
body.dark-mode .mobile-nav-panel{
  background:#0f172a;
  border-top-color:#334155;
}
body.dark-mode .mobile-nav-link{
  color:#dbe6f3;
  border-bottom-color:#243042;
}
body.dark-mode .theme-toggle{
  background:#111f35;
  border-color:#334961;
  color:#e0ebf8;
}
body.dark-mode .theme-toggle:hover{
  background:#152741;
  border-color:#45617f;
}
body.dark-mode .btn:not(.primary):hover{
  background:rgba(148,163,184,0.16);
}

body.dark-mode .trust-strip{
  background:#0d1729;
  border-bottom-color:#253246;
}
body.dark-mode .trust-value{color:#f1f5f9}
body.dark-mode .trust-label{color:#aebcd0}
body.dark-mode .trust-divider{background:#334155}
@media (max-width:600px){
  body.dark-mode .trust-item{
    border-bottom-color:#233045;
  }
  body.dark-mode .trust-item:nth-child(odd){
    border-right-color:#233045;
  }
}

body.dark-mode .features{
  background:#0d1729;
}
body.dark-mode .features-header h2{
  color:#f8fafc;
}
body.dark-mode .feature-card{
  background:#121d31;
  border-color:#334155;
  box-shadow:0 6px 18px rgba(2,6,23,0.36);
}
body.dark-mode .feature-card:hover{
  box-shadow:0 20px 38px rgba(2,6,23,0.46);
}
body.dark-mode .feature-image--phone{
  background:linear-gradient(160deg,#1a2438 0%,#151f31 100%);
}
body.dark-mode .feature-content h3{color:#f8fafc}
body.dark-mode .feature-content p{color:#c5d2e2}
body.dark-mode .feature-link{color:#7ec6e6}

body.dark-mode .optimize-section{
  background:#0a1220;
}
body.dark-mode .optimize-text .eyebrow{color:#9eb1c7}
body.dark-mode .optimize-text h2{color:#f8fafc}
body.dark-mode .optimize-text p{color:#cbd5e1}
body.dark-mode .text-cta{color:#87cde9}

body.dark-mode .logo-marquee{
  background:#0f172a;
}

body.dark-mode .contact-section{
  background:#0b1425;
  color:#d7e2ef;
}
body.dark-mode .contact-inner h2,
body.dark-mode .contact-header h2{
  color:#f8fafc;
}
body.dark-mode .contact-sub,
body.dark-mode .contact-header p{
  color:#9fb0c5;
}
body.dark-mode .contact-card,
body.dark-mode .info-card,
body.dark-mode .contact-form,
body.dark-mode .email-options-menu{
  background:#121d31;
  border-color:#334155;
  box-shadow:0 10px 24px rgba(2,6,23,0.3);
}
body.dark-mode .contact-card h3,
body.dark-mode .info-card h4,
body.dark-mode .contact-form .form-field,
body.dark-mode .form-group label{
  color:#f8fafc;
}
body.dark-mode .contact-card .muted,
body.dark-mode .info-card p,
body.dark-mode .form-note,
body.dark-mode .form-status{
  color:#9fb0c5;
}
body.dark-mode .contact-link,
body.dark-mode .phone-link{
  color:#87cde9;
}
body.dark-mode .email-options-menu a{
  color:#e2e8f0;
  border-bottom-color:#273548;
}
body.dark-mode .email-options-menu a:hover{
  background:#1a2740;
}
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .form-group input,
body.dark-mode .form-group textarea{
  background:#0f172a;
  color:#e2e8f0;
  border-color:#334155;
}
body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder,
body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder{
  color:#64748b;
}
body.dark-mode .form-status.is-error{color:#fca5a5}
body.dark-mode .form-status.is-success{color:#86efac}

body.dark-mode .pricing-cards-section{
  background:#0d1729;
}
body.dark-mode .pricing-intro h2,
body.dark-mode .pricing-compare-section h2{
  color:#f8fafc;
}
body.dark-mode .pricing-intro p,
body.dark-mode .pricing-compare-sub{
  color:#a6b6ca;
}
body.dark-mode .pricing-value-note{
  color:#c1d0e3;
}
body.dark-mode .pricing-buyout-note{
  border-color:#2f5a48;
  background:#132c22;
  color:#9be8bf;
}
body.dark-mode .pricing-card{
  background:#121d31;
  border-color:#334155;
}
body.dark-mode .pricing-card:hover{
  box-shadow:0 16px 30px rgba(2,6,23,0.45);
}
body.dark-mode .pricing-card--featured{
  border-color:#5bb1d8;
  box-shadow:0 12px 28px rgba(14,116,144,0.35);
}
body.dark-mode .pricing-card-badge{
  background:#1e3a8a;
  color:#dbeafe;
}
body.dark-mode .pricing-plan-name{color:#f8fafc}
body.dark-mode .pricing-from,
body.dark-mode .pricing-period{color:#9fb0c5}
body.dark-mode .pricing-price{color:#93c5fd}
body.dark-mode .pricing-setup{color:#7f93ac}
body.dark-mode .pricing-plan-tagline{color:#c7d5e6}
body.dark-mode .pricing-highlight-pill{
  background:#122645;
  border-color:#1f4f8f;
  color:#bfdbfe;
}
body.dark-mode .pricing-intro-offer{color:#6ee7b7}
body.dark-mode .pricing-see-all{color:#a6b6ca}
body.dark-mode .pricing-see-all:hover{color:#7ec6e6}
body.dark-mode .pricing-gst-note{color:#7f93ac}

body.dark-mode .pricing-compare-section{
  background:#0a1220;
}
body.dark-mode .compare-table-wrap{
  border-color:#334155;
}
body.dark-mode .compare-table thead tr{
  background:#13243f;
  border-bottom-color:#334155;
}
body.dark-mode .compare-table thead th{
  color:#e2e8f0;
}
body.dark-mode .compare-table thead th.compare-feature-col{
  color:#9fb0c5;
}
body.dark-mode .compare-featured-col{
  background:#0f2a45;
}
body.dark-mode .compare-table thead th.compare-featured-col{
  background:#1b4b7d;
  color:#dbeafe;
}
body.dark-mode .compare-table tbody tr{
  border-bottom-color:#223147;
}
body.dark-mode .compare-table tbody tr:hover{
  background:#132033;
}
body.dark-mode .compare-table tbody th[scope="row"],
body.dark-mode .compare-table tbody td{
  color:#d0dbea;
}
body.dark-mode .compare-group-row td{
  background:#16253a;
  color:#a8bdd5;
  border-bottom-color:#334155;
}
body.dark-mode .compare-table tfoot tr{
  background:#13243f;
  border-top-color:#334155;
}

body.dark-mode .solutions-media-image{
  background:#111d32;
  border-color:rgba(148,163,184,0.34);
  box-shadow:0 18px 38px rgba(2,6,23,0.45);
}
