/* -------------------------------------------------- */
/* BASE RESET & GLOBAL                                */
/* -------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.65;
  background-color: #fff;
  color: #111;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

p, li {
  letter-spacing: 0.2px;
}

/* Subtle global section spacing */
section {
  scroll-margin-top: 80px;
}

/* -------------------------------------------------- */
/* HEADER                                              */
/* -------------------------------------------------- */

header {
  background: #01A200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;

  /* More premium soft shadow */
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.logo img {
  height: 44px;
}

/* -------------------------------------------------- */
/* NAVIGATION                                          */
/* -------------------------------------------------- */

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.25s ease, transform 0.15s ease;
}

nav a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* -------------------------------------------------- */
/* CTA BUTTONS                                         */
/* -------------------------------------------------- */

.cta-button {
  background: white;
  color: #01A200;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid white;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* -------------------------------------------------- */
/* HERO SECTION                                        */
/* -------------------------------------------------- */

.hero {
  background: linear-gradient(to right, #01A200, #008A00);
  color: white;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.28rem;
  margin-bottom: 2rem;
  opacity: 0.97;
}

.hero-button {
  background: white;
  color: #01A200;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-button:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* -------------------------------------------------- */
/* SECTION WRAPPERS                                    */
/* -------------------------------------------------- */

.features,
.plans,
.how-it-works,
.voip,
.wisp-info {
  padding: 4rem 2rem;
  text-align: center;
}

h2 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  font-weight: 700;
}

/* -------------------------------------------------- */
/* FEATURE GRID                                        */
/* -------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.feature {
  background: #f9f9f9;
  padding: 2rem 1.6rem;
  border-radius: 12px;

  /* More premium floating effect */
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}

/* -------------------------------------------------- */
/* PLAN CARDS                                          */
/* -------------------------------------------------- */

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: center;
}

.plan-card {
  background: #f7f7f7;
  padding: 2.4rem;
  border-radius: 14px;
  max-width: 320px;
  flex: 1;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.18);
}

.plan-card h3 {
  margin-bottom: 0.7rem;
  color: #01A200;
  font-size: 1.35rem;
  font-weight: 700;
}

.plan-card ul {
  text-align: left;
  margin: 1.2rem 0;
  padding-left: 1.2rem;
}

.plan-button {
  background: #01A200;
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 1.2rem;
  transition: transform 0.2s, box-shadow 0.25s ease;
}

.plan-button:hover {
  background: #018800;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* -------------------------------------------------- */
/* HOW IT WORKS                                        */
/* -------------------------------------------------- */

.how-it-works ol {
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 1.3rem;
  line-height: 2.1;
  font-size: 1.05rem;
}

/* -------------------------------------------------- */
/* VOIP                                                */
/* -------------------------------------------------- */

.voip ul {
  list-style: none;
  max-width: 550px;
  margin: 1.5rem auto;
  padding: 0;
}

.voip ul li {
  text-align: left;
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.voip ul li::before {
  content: "✓";
  color: #01A200;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

.voip-button {
  background: #01A200;
  color: white;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1.3rem;
  transition: all 0.25s ease;
}

.voip-button:hover {
  background: #018000;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* -------------------------------------------------- */
/* FOOTER                                              */
/* -------------------------------------------------- */

footer {
  background: #f3f3f3;
  padding: 2.4rem;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  border-top: 1px solid #ddd;
}

.footer-links a {
  margin: 0 0.6rem;
  color: #01A200;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* -------------------------------------------------- */
/* MOBILE NAVIGATION                                   */
/* -------------------------------------------------- */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 230px;
    background-color: #01A200;
    flex-direction: column;
    padding-top: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -4px 0 12px rgba(0,0,0,0.3);
  }

  nav ul.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .cta-button {
    display: none;
  }
}

/* -------------------------------------------------- */
/* 404 PAGE STYLING (Reintroduced Premium Version)    */
/* -------------------------------------------------- */

.error-wrapper {
  max-width: 780px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.error-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}

.error-code {
  font-size: 3.8rem;
  font-weight: 800;
  color: #01A200;
  margin-bottom: 0.6rem;
}

.error-message {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.error-home-btn {
  background: #01A200;
  color: white;
  padding: 0.9rem 1.9rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.25s ease, transform 0.15s ease;
}

.error-home-btn:hover {
  background: #018000;
  transform: translateY(-2px);
}

.error-links {
  margin-top: 2rem;
}

.error-links a {
  display: inline-block;
  margin: 0.4rem 1rem;
  font-weight: 600;
  color: #01A200;
  text-decoration: none;
}

.error-links a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* POLICY / LEGAL PAGES — Premium Layout              */
/* -------------------------------------------------- */

.policy-wrapper {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.policy-card {
  background: #ffffff;
  padding: 2.8rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

.policy-card h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.policy-card h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: #01A200;
  font-weight: 700;
}

.policy-card p {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.03rem;
}

.policy-card a {
  color: #01A200;
  font-weight: 600;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* DANGER / WARNING BUTTONS                           */
/* -------------------------------------------------- */

.danger-button {
  background: #D93636;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.danger-button:hover {
  background: #C22C2C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 54, 54, 0.35);
}

/* -------------------------------------------------- */
/* CHANGE PLAN — PREMIUM DASHBOARD FORM               */
/* -------------------------------------------------- */

.premium-fieldset {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  background: #fafafa;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.premium-fieldset legend {
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0 0.4rem;
  color: #01A200;
}

.plan-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
}

.plan-option input {
  margin-top: 3px;
}

.update-button {
  background: #01A200;
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.update-button:hover {
  background: #018800;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.change-message {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* -------------------------------------------------- */
/* CHECKOUT — Premium Layout Styles                   */
/* -------------------------------------------------- */

.checkout-wrapper {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.checkout-card {
  background: #ffffff;
  padding: 2.8rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
}

.checkout-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.checkout-subtext {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-trust-box {
  background: #f8f8f8;
  border-left: 5px solid #01A200;
  padding: 1.3rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-size: 0.95rem;
  line-height: 1.7;
}

.checkout-summary h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.checkout-summary ul {
  margin-left: 1.2rem;
  line-height: 1.8;
  font-size: 1rem;
}

/* Pay Button */
.checkout-pay-btn {
  background: #01A200;
  color: white;
  padding: 1rem;
  width: 100%;
  max-width: 350px;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  margin: 2rem auto 0 auto;
  display: block;
  transition: background 0.25s ease, transform 0.15s ease;
}

.checkout-pay-btn:hover {
  background: #018800;
  transform: translateY(-2px);
}

.payment-section {
  margin-top: 2.5rem;
}

.payment-label {
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
  font-size: 1.05rem;
}

.stripe-input {
  margin-top: 0.8rem;
  padding: 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ccc;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.stripe-input.StripeElement--focus {
  border-color: #01A200;
  box-shadow: 0 0 0 3px rgba(1, 162, 0, 0.15);
}

.stripe-errors {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* -------------------------------------------------- */
/* DASHBOARD — Premium Layout                          */
/* -------------------------------------------------- */

.dashboard-wrapper {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: left;
}

.dashboard-heading {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.dashboard-subtext {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.dashboard-card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

.dashboard-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #01A200;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.dashboard-button {
  background: #01A200;
  color: white;
  padding: 0.9rem 1.7rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}

.dashboard-button:hover {
  background: #018800;
  transform: translateY(-2px);
}

.dashboard-button.danger {
  background: #D93636;
}

.dashboard-button.danger:hover {
  background: #C22C2C;
}

/* -------------------------------------------------- */
/* HOMEPAGE UTILITY TEXT                              */
/* -------------------------------------------------- */

.home-subtext {
  max-width: 750px;
  margin: 0.5rem auto 2rem;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* -------------------------------------------------- */
/* INVOICES — Premium Table Layout                    */
/* -------------------------------------------------- */

.invoice-wrapper {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.invoice-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.invoice-loading {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.invoice-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  margin-top: 1.5rem;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.invoice-table thead tr {
  background: #f6f6f6;
  border-bottom: 1px solid #ddd;
}

.invoice-table th {
  text-align: left;
  padding: 0.9rem;
  font-weight: 700;
  color: #01A200;
}

.invoice-table td {
  padding: 0.85rem;
  border-bottom: 1px solid #eee;
}

.invoice-table tr:hover {
  background: #fafafa;
}

.invoice-table a {
  color: #01A200;
  font-weight: 600;
  text-decoration: none;
}

.invoice-table a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* AUTH (Login / Register) – Premium Layout           */
/* -------------------------------------------------- */

.auth-wrapper {
  max-width: 500px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.auth-card {
  background: #ffffff;
  padding: 2.8rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  text-align: center;
}

.auth-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.auth-subtext {
  opacity: 0.85;
  margin-bottom: 1.6rem;
}

.auth-security {
  background: #f8f8f8;
  border-left: 5px solid #01A200;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.auth-form label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.auth-form input {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.auth-form input:focus {
  border-color: #01A200;
  box-shadow: 0 0 0 3px rgba(1,162,0,0.15);
  outline: none;
}

.auth-button {
  background: #01A200;
  color: white;
  padding: 0.9rem;
  border-radius: 10px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.auth-button:hover {
  background: #018800;
  transform: translateY(-2px);
}

.auth-error {
  color: red;
  margin-top: 1rem;
  min-height: 20px;
}

.auth-extra {
  margin-top: 1.6rem;
  font-size: 0.95rem;
}

.auth-extra a {
  color: #01A200;
  font-weight: 600;
  text-decoration: none;
}

.auth-extra a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* ORDER PAGE — PREMIUM LAYOUT                        */
/* -------------------------------------------------- */

.order-wrapper {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.order-card {
  background: #ffffff;
  padding: 2.8rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
}

.order-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.order-subtext {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Trust / reassurance box */
.order-trust-box {
  background: #f8f8f8;
  border-left: 5px solid #01A200;
  padding: 1.3rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Order Form */
.order-form-card {
  margin-top: 1.5rem;
}

.order-form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.order-form-card input,
.order-form-card textarea,
.order-form-card select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.order-form-card input:focus,
.order-form-card textarea:focus,
.order-form-card select:focus {
  border-color: #01A200;
  box-shadow: 0 0 0 3px rgba(1, 162, 0, 0.15);
  outline: none;
}

.field-note {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: -0.5rem;
  margin-bottom: 0.8rem;
}

/* Two-column adaptive grid */
.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.order-grid .grid-full {
  grid-column: 1 / -1;
}

/* Responsive collapse to 1 column */
@media (max-width: 700px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Button */
.order-cta {
  background: #01A200;
  color: white;
  padding: 1rem 1.4rem;
  width: 100%;
  max-width: 340px;
  margin: 2rem auto 0;
  display: block;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  text-align: center;
}

.order-cta:hover {
  background: #018800;
  transform: translateY(-2px);
}

.order-next-text {
  text-align: center;
  opacity: 0.85;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* What Happens Next Section */
.order-next-section {
  margin-top: 4rem;
  padding: 2rem;
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.order-next-section h2 {
  text-align: center;
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
}

.order-next-section ol {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* -------------------------------------------------- */
/* PLANS PAGE — Premium Layout Enhancements           */
/* -------------------------------------------------- */

.plans-intro {
  text-align: center;
  line-height: 1.75;
  font-size: 1.1rem;
  opacity: 0.95;
}

.plans-intro h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Highlighted plan look */
.plan-card.best-value {
  border: 2px solid #01A200;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.plan-card.best-value h3 {
  color: #018000;
}

/* WISP Information Section */
.wisp-info {
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem !important;
  margin-top: 3rem;
  text-align: left;
}

.wisp-info p {
  margin-bottom: 1.2rem;
  line-height: 1.75;
  font-size: 1.05rem;
}

.wisp-info h2 {
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  font-weight: 800;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .plans-intro {
    padding: 2rem 1.2rem !important;
  }

  .plans-intro h1 {
    font-size: 2rem;
  }

  .wisp-info {
    padding: 2rem 1.2rem !important;
  }
}

/* -------------------------------------------------- */
/* SUPPORT PAGE — Premium Layout                       */
/* -------------------------------------------------- */

.support-wrapper {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.support-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.support-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.support-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Support Cards */
.support-card {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  margin-bottom: 2.2rem;
}

.support-card h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #01A200;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  color: #018000;
}

.support-card p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Lists */
.support-list,
.support-contact {
  margin-left: 1.2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.support-list li,
.support-contact li {
  margin-bottom: 0.5rem;
}

/* Support Button */
.support-button {
  background: #01A200;
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 1.4rem;
  transition: background 0.25s ease, transform 0.15s ease;
}

.support-button:hover {
  background: #018800;
  transform: translateY(-2px);
}

/* FAQ details styling */
details {
  margin-bottom: 1rem;
  background: #fafafa;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: background 0.25s ease;
}

details:hover {
  background: #f3f3f3;
}

details summary {
  font-weight: 700;
  font-size: 1.05rem;
  outline: none;
}

details p {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  opacity: 0.95;
  line-height: 1.65;
}

/* -------------------------------------------------- */
/* VOIP PAGE ENHANCEMENTS – Premium Styling           */
/* -------------------------------------------------- */

/* Benefits list (ticks, spacing, alignment) */
.voip-benefits {
  list-style: none;
  max-width: 550px;
  margin: 1.5rem auto;
  padding: 0;
}

.voip-benefits li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
}

.voip-benefits li::before {
  content: "✓";
  color: #01A200;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Consistent section headings inside .policy-card */
.policy-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #018000;
}

/* Support-style bullet list (used in multiple pages) */
.support-list {
  list-style: disc;
  margin-left: 1.6rem;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.support-list li {
  margin-bottom: 0.6rem;
}

/* Ensure VoIP page spacing matches premium layout */
.voip h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.voip p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.95;
}

/* Larger CTA button centering if used alone */
.voip-button {
  display: inline-block;
  margin-top: 1.5rem;
}

/* -------------------------------------------------- */
/* HOMEPAGE — Unlimited Data & Support Callout        */
/* -------------------------------------------------- */

.data-info {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

.data-info h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #01A200;
}

.data-info p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.95;
}

/* SUPPORT CALLOUT */

.support-callout {
  background: #f8f8f8;
  border-left: 5px solid #01A200;
  padding: 2rem 2.4rem;
  border-radius: 12px;
  max-width: 900px;
  margin: 4rem auto 3rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.support-callout h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #01A200;
}

.support-callout p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 680px;
  margin: 0.5rem auto 1.4rem;
  line-height: 1.7;
}

.support-callout .support-button {
  background: #01A200;
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease, transform 0.15s ease;
}

.support-callout .support-button:hover {
  background: #018800;
  transform: translateY(-2px);
}
