/*
Theme Name: VOIP4Less
Theme URI: https://voip4less.us
Author: VOIP4Less LLC
Author URI: https://voip4less.us
Description: Custom theme for VOIP4Less - App-based VoIP for solo professionals with US-based support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voip4less
Tags: business, custom, one-column, voip
*/

/* ── CSS VARIABLES ── */
:root {
  --sky:       #0ea5e9;
  --blue:      #2563eb;
  --indigo:    #4f46e5;
  --mint:      #10b981;
  --amber:     #f59e0b;
  --offwhite:  #f8faff;
  --light:     #eef4ff;
  --slate:     #64748b;
  --dark:      #0f172a;
  --border:    #e2e8f0;
  --shadow:    0 4px 24px rgba(14,165,233,0.10);
  --shadow-lg: 0 12px 48px rgba(37,99,235,0.15);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--offwhite);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(14,165,233,0.08);
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}
.site-logo .accent { color: var(--sky); }
.site-logo .dot    { color: var(--amber); }

.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--indigo) !important; transform: translateY(-1px) !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 50%, #d1fae5 100%);
}

.geo { position: absolute; border-radius: 50%; pointer-events: none; }
.geo1 { width:600px; height:600px; background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%); top:-200px; right:-150px; }
.geo2 { width:400px; height:400px; background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%); bottom:-100px; left:-80px; }
.geo3 { width:250px; height:250px; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%); top:55%; left:42%; }

.dots-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,165,233,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: #0369a1;
  margin-bottom: 1.5rem; animation: fadeUp 0.5s ease both;
}
.badge-dot { width:7px; height:7px; background:var(--sky); border-radius:50%; animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.08; letter-spacing: -0.03em; color: var(--dark);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--sky), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}

.hero-sub {
  margin-top: 1.25rem; font-size: 1.05rem; color: var(--slate);
  max-width: 480px; animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff !important; padding: 0.9rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3); display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }

.btn-ghost {
  border: 2px solid var(--border); background: white; color: var(--dark);
  padding: 0.9rem 2rem; border-radius: 10px; font-weight: 500;
  font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }

.trust-row { margin-top: 2.5rem; display: flex; gap: 1.75rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s ease both; }
.trust-item { display:flex; align-items:center; gap:0.45rem; font-size:0.82rem; font-weight:500; color:var(--slate); }

/* Phone mockup */
.hero-visual { display:flex; justify-content:center; align-items:center; animation: fadeUp 0.7s 0.2s ease both; }
.phone-wrap  { position: relative; }

.savings-tag {
  position: absolute; top: -12px; right: -16px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #fff; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.78rem; padding: 0.45rem 1rem; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
  animation: bounce 3s ease-in-out infinite; z-index: 10;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.phone-card {
  background: white; border-radius: 28px; padding: 1.75rem; width: 340px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(14,165,233,0.1);
}
.phone-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:1.25rem; padding-bottom:1rem; border-bottom:1px solid var(--border);
}
.app-brand   { font-family:'Syne',sans-serif; font-weight:800; font-size:0.9rem; color:var(--blue); }
.app-status  { display:flex; align-items:center; gap:0.35rem; font-size:0.72rem; color:var(--mint); font-weight:600; }
.app-status-dot { width:7px; height:7px; background:var(--mint); border-radius:50%; animation:blink 2s infinite; }

.phone-display {
  background: linear-gradient(135deg, #0f172a, #1e3a5f); border-radius: 18px;
  padding: 1.5rem; margin-bottom: 1.25rem; text-align: center; color: white;
}
.call-status { font-size:0.7rem; color:#38bdf8; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.5rem; font-weight:600; }
.call-number { font-family:'Syne',sans-serif; font-size:1.5rem; font-weight:700; letter-spacing:0.04em; }
.call-timer  { font-size:0.82rem; color:rgba(255,255,255,0.5); margin-top:0.2rem; }

.waveform { display:flex; align-items:center; justify-content:center; gap:3px; margin:1rem 0; height:36px; }
.wave-bar { width:4px; background:linear-gradient(180deg,#38bdf8,#818cf8); border-radius:4px; animation:wave 1.2s ease-in-out infinite; }
.wave-bar:nth-child(1)  { height:10px; animation-delay:0s; }
.wave-bar:nth-child(2)  { height:22px; animation-delay:0.1s; }
.wave-bar:nth-child(3)  { height:30px; animation-delay:0.2s; }
.wave-bar:nth-child(4)  { height:18px; animation-delay:0.3s; }
.wave-bar:nth-child(5)  { height:34px; animation-delay:0.4s; }
.wave-bar:nth-child(6)  { height:26px; animation-delay:0.5s; }
.wave-bar:nth-child(7)  { height:14px; animation-delay:0.6s; }
.wave-bar:nth-child(8)  { height:22px; animation-delay:0.7s; }
.wave-bar:nth-child(9)  { height:30px; animation-delay:0.8s; }
.wave-bar:nth-child(10) { height:12px; animation-delay:0.9s; }
.wave-bar:nth-child(11) { height:20px; animation-delay:1.0s; }
.wave-bar:nth-child(12) { height:28px; animation-delay:1.1s; }
@keyframes wave { 0%,100%{transform:scaleY(1);opacity:0.9} 50%{transform:scaleY(0.35);opacity:0.4} }

.phone-btns { display:grid; grid-template-columns:repeat(3,1fr); gap:0.65rem; }
.phone-btn {
  background:var(--light); border:1px solid var(--border); border-radius:12px;
  padding:0.75rem 0.5rem; text-align:center; font-size:0.68rem; color:var(--slate);
  cursor:pointer; font-weight:500; transition:background 0.2s, color 0.2s;
}
.phone-btn .icon { font-size:1.1rem; display:block; margin-bottom:0.2rem; }
.phone-btn:hover { background:#dbeafe; color:var(--blue); }
.phone-btn.end { background:#fee2e2; color:#dc2626; border-color:#fecaca; }

.device-pills { display:flex; justify-content:center; gap:0.5rem; margin-top:1.25rem; flex-wrap:wrap; }
.pill {
  background:white; border:1px solid var(--border); border-radius:100px;
  padding:0.3rem 0.85rem; font-size:0.75rem; font-weight:500; color:var(--slate);
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* ── SHARED SECTION STYLES ── */
.section-inner { max-width:1200px; margin:0 auto; padding:6rem 5%; }

.section-label {
  display:inline-block; font-size:0.72rem; letter-spacing:0.14em;
  text-transform:uppercase; font-weight:700; color:var(--sky);
  margin-bottom:0.75rem; background:rgba(14,165,233,0.1);
  padding:0.25rem 0.75rem; border-radius:100px;
}

.section-inner h2 {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(1.9rem,3.2vw,2.8rem); letter-spacing:-0.025em;
  line-height:1.12; color:var(--dark); margin-bottom:1rem;
}

.section-sub { font-size:1rem; color:var(--slate); max-width:520px; margin-bottom:3rem; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── MARQUEE ── */
.marquee-wrap { background:linear-gradient(90deg,var(--blue),var(--indigo)); padding:0.9rem 0; overflow:hidden; }
.marquee-track { display:flex; gap:3rem; animation:marquee 30s linear infinite; white-space:nowrap; }
.marquee-track span {
  font-size:0.8rem; letter-spacing:0.06em; color:rgba(255,255,255,0.85);
  text-transform:uppercase; font-weight:500; display:flex; align-items:center; gap:1rem; flex-shrink:0;
}
.marquee-track span::after { content:'·'; color:rgba(255,255,255,0.4); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── WHY SECTION ── */
.why-section { background:white; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }

.why-card {
  background:var(--offwhite); border:1px solid var(--border); border-radius:20px;
  padding:2.25rem 1.75rem; transition:border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position:relative; overflow:hidden;
}
.why-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--sky),var(--indigo));
  transform:scaleX(0); transition:transform 0.3s; transform-origin:left;
}
.why-card:hover { border-color:rgba(14,165,233,0.3); transform:translateY(-4px); box-shadow:var(--shadow); }
.why-card:hover::after { transform:scaleX(1); }

.card-icon {
  width:50px; height:50px; background:linear-gradient(135deg,rgba(14,165,233,0.12),rgba(79,70,229,0.12));
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:1.25rem; border:1px solid rgba(14,165,233,0.15);
}
.why-card h3 { font-family:'Syne',sans-serif; font-weight:700; font-size:1.1rem; margin-bottom:0.6rem; color:var(--dark); }
.why-card p  { font-size:0.88rem; color:var(--slate); line-height:1.7; }

/* ── COMPARE SECTION ── */
.compare-section { background:var(--offwhite); }
.compare-wrap { background:white; border:1px solid var(--border); border-radius:24px; overflow:hidden; box-shadow:var(--shadow); }
.compare-table { width:100%; border-collapse:collapse; }
.compare-table th {
  padding:1.25rem 1.5rem; text-align:left; font-size:0.78rem; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--slate); border-bottom:1px solid var(--border);
  font-weight:600; background:var(--offwhite);
}
.compare-table th.hl {
  background:linear-gradient(135deg,rgba(14,165,233,0.08),rgba(79,70,229,0.08));
  color:var(--blue); border-left:2px solid var(--sky); border-right:2px solid var(--sky);
}
.compare-table th:first-child { width:220px; }
.compare-table td { padding:1.1rem 1.5rem; font-size:0.88rem; border-bottom:1px solid var(--border); color:var(--slate); }
.compare-table td.feature-name { color:var(--dark); font-weight:500; }
.compare-table td.hl {
  background:rgba(14,165,233,0.03); border-left:2px solid var(--sky);
  border-right:2px solid var(--sky); color:var(--dark); font-weight:600;
}
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tbody tr:hover { background:var(--light); }
.check   { color:var(--mint); font-size:1.05rem; }
.cross   { color:#ef4444; font-size:1.05rem; }
.partial { color:var(--amber); font-size:0.82rem; font-weight:500; }

/* ── PRICING SECTION ── */
.pricing-section { background:white; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:start; }

.plan-card {
  background:var(--offwhite); border:1px solid var(--border); border-radius:20px;
  padding:2.25rem 1.75rem; transition:transform 0.3s, box-shadow 0.3s; position:relative;
}
.plan-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.plan-card.featured {
  background:linear-gradient(160deg,#eff6ff,#eef2ff); border:2px solid var(--sky);
  transform:scale(1.04); box-shadow:var(--shadow-lg);
}
.plan-card.featured:hover { transform:scale(1.04) translateY(-4px); }

.plan-badge {
  display:inline-block; background:linear-gradient(135deg,var(--sky),var(--indigo));
  color:white; font-size:0.68rem; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; padding:0.25rem 0.85rem; border-radius:100px; margin-bottom:1.25rem;
}
.plan-name { font-family:'Syne',sans-serif; font-size:1.25rem; font-weight:800; color:var(--dark); margin-bottom:0.2rem; }
.plan-desc { font-size:0.83rem; color:var(--slate); margin-bottom:1.75rem; }

.plan-price {
  display:flex; align-items:flex-end; gap:0.25rem; margin-bottom:1.75rem;
  padding-bottom:1.75rem; border-bottom:1px solid var(--border);
}
.plan-price .dollar { font-size:1.1rem; color:var(--slate); margin-bottom:0.5rem; }
.plan-price .amount { font-family:'Syne',sans-serif; font-size:3.2rem; font-weight:800; line-height:1; color:var(--dark); }
.plan-price .per    { font-size:0.82rem; color:var(--slate); margin-bottom:0.5rem; }

.plan-features { list-style:none; display:flex; flex-direction:column; gap:0.8rem; margin-bottom:2rem; }
.plan-features li { display:flex; align-items:flex-start; gap:0.65rem; font-size:0.86rem; color:var(--slate); }
.plan-features li .chk { color:var(--mint); flex-shrink:0; margin-top:2px; font-size:0.9rem; }

.btn-plan {
  display:block; text-align:center; padding:0.85rem; border-radius:10px;
  font-weight:600; font-size:0.88rem; text-decoration:none; transition:0.2s;
  border:2px solid var(--border); color:var(--dark);
}
.btn-plan:hover { border-color:var(--sky); color:var(--sky); }
.btn-plan.primary {
  background:linear-gradient(135deg,var(--blue),var(--indigo)); color:white !important;
  border:none; box-shadow:0 4px 14px rgba(37,99,235,0.3);
}
.btn-plan.primary:hover { box-shadow:0 6px 20px rgba(37,99,235,0.4); transform:translateY(-1px); }

/* ── SUPPORT SECTION ── */
.support-section { background:var(--offwhite); }
.support-split { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }

.support-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:2.5rem; }
.stat-box { background:white; border:1px solid var(--border); border-radius:16px; padding:1.5rem; box-shadow:var(--shadow); }
.stat-num {
  font-family:'Syne',sans-serif; font-size:2.4rem; font-weight:800;
  background:linear-gradient(135deg,var(--sky),var(--indigo));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height:1; margin-bottom:0.25rem;
}
.stat-label { font-size:0.78rem; color:var(--slate); font-weight:500; }

.support-cards { display:flex; flex-direction:column; gap:1rem; }
.support-item {
  display:flex; align-items:flex-start; gap:1rem; background:white;
  border:1px solid var(--border); border-radius:14px; padding:1.1rem 1.25rem;
  box-shadow:0 2px 8px rgba(0,0,0,0.04); transition:border-color 0.2s;
}
.support-item:hover { border-color:var(--sky); }
.s-icon {
  width:38px; height:38px; background:linear-gradient(135deg,rgba(14,165,233,0.12),rgba(79,70,229,0.12));
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.support-item p    { font-size:0.9rem; font-weight:600; color:var(--dark); }
.support-item span { font-size:0.8rem; color:var(--slate); display:block; margin-top:2px; }

.support-visual-wrap { position:relative; }
.usa-card {
  background:white; border:1px solid var(--border); border-radius:24px;
  padding:2.5rem; text-align:center; box-shadow:var(--shadow-lg);
}
.usa-flag { font-size:4rem; margin-bottom:1rem; }
.usa-card h3 { font-family:'Syne',sans-serif; font-weight:800; font-size:1.3rem; color:var(--dark); margin-bottom:0.5rem; }
.usa-card p  { font-size:0.88rem; color:var(--slate); }
.usa-tags { margin-top:1.5rem; display:flex; gap:0.75rem; justify-content:center; flex-wrap:wrap; }
.usa-tag {
  background:var(--light); border:1px solid var(--border); border-radius:8px;
  padding:0.5rem 1rem; font-size:0.8rem; font-weight:600; color:var(--blue);
}

.floating-badge {
  position:absolute; background:white; border:1px solid var(--border); border-radius:14px;
  padding:0.75rem 1rem; box-shadow:var(--shadow-lg); display:flex; align-items:center;
  gap:0.6rem; font-size:0.82rem; font-weight:600; color:var(--dark);
  animation:float 4s ease-in-out infinite;
}
.floating-badge .fb-icon { font-size:1.2rem; }
.floating-badge.f1 { top:-16px; left:-16px; animation-delay:0s; }
.floating-badge.f2 { bottom:-16px; right:-16px; animation-delay:-2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── TESTIMONIALS ── */
.testi-section { background:white; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card {
  background:var(--offwhite); border:1px solid var(--border); border-radius:20px;
  padding:2rem; transition:transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.stars     { color:var(--amber); font-size:0.9rem; margin-bottom:1rem; letter-spacing:2px; }
.testi-text { font-size:0.88rem; color:var(--slate); line-height:1.75; margin-bottom:1.5rem; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:0.75rem; }
.avatar {
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:0.95rem; font-weight:800;
  font-family:'Syne',sans-serif; flex-shrink:0;
}
.testi-name { font-size:0.88rem; font-weight:600; color:var(--dark); }
.testi-role { font-size:0.78rem; color:var(--slate); }

/* ── FAQ SECTION ── */
.faq-section { background:var(--offwhite); }
.faq-list { max-width:780px; margin:3rem auto 0; }
.faq-item {
  background:white; border:1px solid var(--border); border-radius:14px;
  margin-bottom:0.75rem; overflow:hidden; transition:border-color 0.2s;
}
.faq-item:hover { border-color:rgba(14,165,233,0.35); }
.faq-item.open  { border-color:var(--sky); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center; cursor:pointer;
  font-size:0.95rem; font-weight:500; color:var(--dark); gap:1rem; padding:1.25rem 1.5rem;
}
.faq-toggle {
  width:28px; height:28px; border-radius:50%; background:var(--light);
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--slate); flex-shrink:0; transition:0.2s;
}
.faq-item.open .faq-toggle { background:var(--blue); color:white; transform:rotate(45deg); border-color:var(--blue); }
.faq-a {
  font-size:0.88rem; color:var(--slate); line-height:1.75;
  max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s; padding:0 1.5rem;
}
.faq-item.open .faq-a { max-height:300px; padding:0 1.5rem 1.25rem; }

/* ── CTA SECTION ── */
.cta-section {
  background:linear-gradient(135deg,var(--blue) 0%,var(--indigo) 60%,#7c3aed 100%);
  padding:6rem 5%; text-align:center; position:relative; overflow:hidden;
}
.cta-dots {
  position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.1) 1px,transparent 1px);
  background-size:28px 28px; pointer-events:none;
}
.cta-inner { max-width:700px; margin:0 auto; position:relative; }
.cta-section h2 { color:white; margin-bottom:1rem; }
.cta-section p  { color:rgba(255,255,255,0.75); margin-bottom:2.5rem; font-size:1.05rem; }
.cta-actions    { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-section .section-label { color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.12); }
.cta-fine { margin-top:1.5rem; font-size:0.8rem; color:rgba(255,255,255,0.45); }

.btn-white {
  background:white; color:var(--blue) !important; padding:1rem 2.5rem; border-radius:10px;
  font-weight:700; font-size:0.95rem; text-decoration:none;
  transition:transform 0.2s, box-shadow 0.2s; box-shadow:0 4px 16px rgba(0,0,0,0.15); display:inline-block;
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-white {
  border:2px solid rgba(255,255,255,0.5); color:white !important; padding:1rem 2.5rem;
  border-radius:10px; font-weight:500; font-size:0.95rem; text-decoration:none;
  transition:border-color 0.2s, background 0.2s; display:inline-block;
}
.btn-outline-white:hover { border-color:white; background:rgba(255,255,255,0.1); }

/* ── SITE FOOTER ── */
.site-footer { background:var(--dark); color:rgba(255,255,255,0.6); padding:3.5rem 5% 2rem; }
.footer-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem;
}
.footer-logo-link { text-decoration:none; }
.footer-logo-link .site-logo { color:white; }
.footer-brand p { font-size:0.86rem; color:rgba(255,255,255,0.5); margin-top:1rem; line-height:1.7; max-width:280px; }
.footer-col h4  { font-size:0.76rem; text-transform:uppercase; letter-spacing:0.1em; color:white; margin-bottom:1rem; font-weight:600; }
.footer-col ul  { list-style:none; display:flex; flex-direction:column; gap:0.55rem; }
.footer-col ul li a { text-decoration:none; font-size:0.86rem; color:rgba(255,255,255,0.5); transition:color 0.2s; }
.footer-col ul li a:hover { color:white; }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,0.08); display:flex;
  justify-content:space-between; align-items:center;
  font-size:0.78rem; color:rgba(255,255,255,0.35); flex-wrap:wrap; gap:1rem;
}

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-grid,.support-split,.why-grid,.testimonials-grid,.pricing-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .plan-card.featured { transform:none; }
  .nav-menu { display:none; }
}
