/*
Theme Name: SimpleShowing Fintech
Theme URI: https://simpleshowing.com
Author: SimpleShowing
Description: Fintech-institutional theme for SimpleShowing with custom Elementor templates and widgets. Requires Elementor.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: simpleshowing
*/

/* ---------- Design tokens ---------- */
:root {
  /* SimpleShowing Hero global colors */
  --background: #ffffff;
  --foreground: #0d0d0d;
  --muted: #f1f5f9;
  --muted-foreground: #737373;
  --accent: hsl(221 100% 50%);
  --accent-foreground: #ffffff;
  --border: #ebebeb;
  --surface: #f8fafc;
  --destructive: hsl(0 75% 55%);

  /* Theme variables updated to match global colors */
  --blue: var(--foreground);
  --blue-dark: #000000;
  --green: var(--accent);
  --green-light: hsl(221 100% 60%);
  --green-lightest: color-mix(in oklab, var(--accent) 4%, var(--background));
  --amber: #F5A623;
  --amber-light: #FFC15E;
  --amber-dark: #D4891A;
  --red: var(--destructive);
  --text: var(--foreground);
  --white: var(--background);
  --max-w: 1280px;

  --ss-radius: 12px;
  --ss-radius-lg: 20px;
  --ss-shadow: 0 10px 30px rgba(13, 13, 13, 0.06);
  --ss-shadow-hover: 0 20px 40px rgba(13, 13, 13, 0.12);
  --ss-ease: cubic-bezier(.19, 1, .22, 1);
  --ss-font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --ss-font-mono: 'JetBrains Mono', ui-monospace, monospace;
}
/* Hero stylesheet now enqueued via functions.php */
/* ---------- Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--ss-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }

/* ---------- Scoped Typography & Resets to avoid Elementor Editor breakage ---------- */
.ss-content h1, .entry-content h1, .ss-container h1,
.ss-content h2, .entry-content h2, .ss-container h2,
.ss-content h3, .entry-content h3, .ss-container h3,
.ss-content h4, .entry-content h4, .ss-container h4,
.ss-content h5, .entry-content h5, .ss-container h5,
.ss-content h6, .entry-content h6, .ss-container h6 {
  font-family: var(--ss-font-sans);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

.ss-content p, .entry-content p, .ss-container p {
  margin: 0 0 1em;
  color: var(--text);
}

.ss-content a, .entry-content a, .ss-container a, .ss-footer a, .nav a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--ss-ease);
}
.ss-content a:hover, .entry-content a:hover, .ss-container a:hover {
  opacity: 0.85;
}

/* Specific List Resets Scoped inside content areas to NOT break Elementor Panel UI */
.ss-content ul, .entry-content ul, .ss-container ul {
  list-style: none;
  margin: 0 0 1.25em;
  padding: 0;
}
.ss-content ul li, .entry-content ul li, .ss-container ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.ss-content ul li::before, .entry-content ul li::before, .ss-container ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: bold;
}

/* ---------- NAV BAR ---------- */
.nav {
  background: var(--blue) !important;
  padding: 0 24px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 68px !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  overflow: visible !important;
}
.nav-logo {
  height: 36px;
  overflow: visible !important;
  vertical-align: middle !important;
}
.nav-links {
  display: flex !important;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color .2s var(--ss-ease);
}
.nav-links a:hover {
  color: var(--green-light) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero styles are provided by the SimpleShowing Hero Elementor plugin. Theme hero CSS removed to avoid conflicts. */

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--ss-ease);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: white !important;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--amber);
  color: white !important;
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,0,0,0.02);
  transform: translateY(-1px);
}
.how-to-buy .btn-outline,
.ss-footer .btn-outline {
  color: white !important;
  border-color: rgba(255,255,255,0.6);
}
.how-to-buy .btn-outline:hover,
.ss-footer .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}
.btn-red {
  background: var(--red);
  color: white !important;
}
.btn-red:hover {
  background: #e85640;
  transform: translateY(-1px);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---------- BETTER CHOICE ---------- */
.better-choice {
  background: var(--green-lightest);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.compare-col {
  background: white;
  padding: 32px;
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow);
}
.compare-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  text-align: center;
}
.compare-col h3.ss-title {
  color: var(--green);
}
.compare-logo {
  height: 32px;
  margin: 0 auto 20px;
}
.compare-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.vs-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(58,190,164,0.3);
}
.compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-item:last-child {
  border-bottom: none;
}
.check {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}
.cross {
  color: #ccc;
  font-size: 18px;
  flex-shrink: 0;
}
.compare-note {
  text-align: center;
  font-size: 12px;
  color: var(--text);
  margin-top: 32px;
  opacity: 0.7;
}
.compare-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---------- PRICING ---------- */
.pricing {
  background: white;
}
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.pricing-tab {
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  color: var(--text);
  cursor: pointer;
  transition: all .2s var(--ss-ease);
}
.pricing-tab.active {
  color: var(--amber-dark);
  border-bottom-color: var(--amber);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-bar-wrap {
  position: relative;
}
.pricing-bar-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  min-width: 120px;
}
.bar-track {
  flex: 1;
  height: 28px;
  background: #f0f4f6;
  border-radius: 6px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: width 0.3s var(--ss-ease);
}
.bar-ss {
  background: var(--green);
  width: 33%;
}
.bar-bb {
  background: #cdd8de;
  width: 100%;
  color: var(--text);
}
.pricing-note {
  font-size: 12px;
  color: var(--text);
  opacity: 0.7;
  margin-top: 8px;
}
.pricing-calc h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.price-display {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  text-align: right;
  margin-bottom: 4px;
}
.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
}
input[type=range] {
  width: 100%;
  accent-color: var(--green);
  cursor: pointer;
  margin: 8px 0 20px;
}
.savings-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.savings-box {
  background: #f0f8f6;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}
.savings-box.highlight {
  border: 2px solid var(--amber);
  background: white;
}
.savings-box .amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}
.savings-box .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text);
  margin-top: 4px;
}
.vs-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  background: #eee;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---------- HOW TO BUY ---------- */
.how-to-buy {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.how-to-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://simpleshowing.com/wp-content/uploads/2025/06/parallax-bg.jpg') center/cover;
  opacity: 0.08;
  pointer-events: none;
}
.how-to-buy .section-title {
  color: white !important;
}
.how-to-buy .section-sub {
  color: rgba(255,255,255,0.75);
}
.steps-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all .2s var(--ss-ease);
  color: rgba(255,255,255,0.85);
}
.step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(245,166,35,0.3);
}
.step-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: white !important;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.refund-callout {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.refund-callout h3 {
  font-size: 20px;
  font-weight: 800;
  color: white !important;
  margin-bottom: 8px;
}
.refund-callout p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
}
.refund-icon {
  font-size: 48px;
  flex-shrink: 0;
}
.how-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* ---------- AGENTS ---------- */
.agents {
  background: white;
}
.agents-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.agent-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ss-shadow);
  transition: all .2s var(--ss-ease);
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ss-shadow-hover);
}
.agent-photo {
  height: 280px;
  background-size: cover;
  background-position: center top;
}
.agent-info {
  padding: 20px;
  text-align: center;
  background: white;
}
.agent-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue) !important;
  margin-bottom: 4px;
}
.agent-info .location {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
}
.agent-stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
}
.agent-rating {
  font-size: 12px;
  color: var(--text);
  margin-top: 2px;
}
.agents-cta {
  text-align: center;
}

/* ---------- REVIEWS ---------- */
.reviews {
  background: var(--green-lightest) !important;
}
.reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--ss-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-quote {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue) !important;
  margin-bottom: 8px;
  line-height: 1.4;
}
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.review-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-stars {
  color: #FFD700;
  font-size: 16px;
}
.review-source img {
  height: 20px;
}
.reviews-cta {
  text-align: center;
}
.reviews-phone {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text);
}
.reviews-phone a {
  color: var(--green) !important;
  font-weight: 700;
}

/* ---------- FEATURED IN ---------- */
.featured {
  background: white;
  padding: 56px 24px;
}
.featured-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  opacity: 0.5;
  margin-bottom: 28px;
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.featured-logos img {
  height: 28px;
  filter: grayscale(1);
  opacity: 0.4;
  transition: all .2s var(--ss-ease);
}
.featured-logos img:hover {
  opacity: 0.8;
  filter: none;
}

/* ---------- FOOTER ---------- */
.ss-footer {
  background: var(--blue);
  color: #fff;
  padding: 60px 0 0;
  margin-top: 0;
}
.ss-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.ss-footer-brand {
  flex: 0 0 220px;
  min-width: 180px;
}
.ss-footer-logo-link {
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
}
.ss-footer-logo {
  width: 200px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.ss-footer-tagline {
  color: #a0b8c4;
  font-size: 17px;
  margin: 0;
  line-height: 1.5;
}
.ss-footer-cols {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.ss-footer-col {
  flex: 1;
  min-width: 130px;
}
.ss-footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.ss-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ss-footer-col ul li {
  margin-bottom: 12px;
  padding-left: 0;
}
.ss-footer-col ul li::before {
  display: none;
}
.ss-footer-col ul li a {
  color: #a0b8c4 !important;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s var(--ss-ease);
}
.ss-footer-col ul li a:hover {
  color: var(--green-light) !important;
}
.ss-footer-col-social {
  min-width: 160px;
}
.ss-footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.ss-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s var(--ss-ease);
  text-decoration: none;
}
.ss-footer-social a:hover {
  background: color-mix(in oklab, var(--accent) 30%, transparent);
}
.ss-footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: white;
}
.ss-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 15px;
  color: #a0b8c4;
}

/* Hide old footer */
.footer { display: none !important; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; gap: 24px 0; }
  .compare-divider { flex-direction: row; padding: 0; justify-content: center; margin: 16px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr !important; }
  .agents-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .ss-footer-top { padding: 0 20px 32px; }
  .ss-footer-cols { gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--blue);
    flex-direction: column !important;
    gap: 0 !important;
    padding: 12px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active {
    display: flex !important;
    z-index: 999;
  }
  .nav-links li {
    width: 100%;
    padding: 0;
  }
  .nav-links li::before {
    display: none !important;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.02);
  }
  .nav-links a:hover {
    background: rgba(255,255,255,0.05);
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero { padding: 60px 20px 80px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-logos { justify-content: center; }
  .hero-reviews { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .agents-grid, .reviews-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .ss-footer-top { flex-direction: column; }
  .ss-footer-brand { flex: none; }
  .ss-footer-cols { flex-direction: column; }
  .refund-callout { flex-direction: column; text-align: center; }
}

/* ---------- ELEMENTOR FULL WIDTH & WIDESCREEN CONTAINERS OVERRIDES ---------- */
.elementor-section:has(.nav),
.elementor-section:has(.ss-footer) {
  width: 100% !important;
  max-width: 100% !important;
}
.elementor-section:has(.nav) .elementor-container,
.elementor-section:has(.ss-footer) .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}
.elementor-section:has(.sshe-scope) .elementor-container,
.elementor-section:has(.better-choice) .elementor-container,
.elementor-section:has(.pricing) .elementor-container,
.elementor-section:has(.how-to-buy) .elementor-container,
.elementor-section:has(.agents) .elementor-container,
.elementor-section:has(.reviews) .elementor-container {
  max-width: 1440px !important;
  width: 100% !important;
}

