/* ═══════════════════════════════════════════════
   NexTel Communications — Design System CSS
   Brand: #850c3e (primary) · #ffd700 (gold)
   ═══════════════════════════════════════════════ */

:root {
  --primary:    #850c3e;
  --primary-dk: #5e0929;
  --gold:       #ffd700;
  --dark:       #1a0a14;
  --nav-bg:     #2d0a1e;
  --off-white:  #f8f5f7;
  --border:     #e8dde2;
  --text-dark:  #333333;
  --text-muted: #777777;
  --white:      #ffffff;
  --shadow-sm:  0 2px 10px rgba(133,12,62,.12);
  --shadow-md:  0 6px 24px rgba(133,12,62,.20);
  --shadow-lg:  0 16px 48px rgba(133,12,62,.28);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: .3s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
}
.top-info svg { flex-shrink: 0; }
.top-social { display: flex; gap: 5px; }
.top-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  transition: background var(--transition);
}
.top-social a:hover { background: rgba(255,255,255,.3); }

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: var(--gold);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text .brand { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.logo-text .tagline { font-size: 11px; font-weight: 600; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; }
.header-info { display: flex; align-items: center; gap: 28px; }
.info-box { display: flex; align-items: center; gap: 12px; }
.info-box-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(133,12,62,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.info-box-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; line-height: 1.2; }
.info-box-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.header-btns { display: flex; gap: 8px; }
.btn-outline-gold {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 13px; font-weight: 600;
  background: transparent;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list a {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  transition: all .5s ease;
}
.btn:active::after { inset: 0; width: 100%; height: 100%; opacity: 0; transition: 0s; }

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: #e6c200; border-color: #e6c200; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #2d1a24; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ── BANNER (hero carousel) ── */
.banner-carousel { position: relative; overflow: hidden; height: 520px; }
.banner-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity .9s ease;
}
.banner-slide.active { opacity: 1; z-index: 2; }
.banner-slide::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 40px 40px;
}
.slide-content { position: relative; max-width: 800px; padding: 0 30px; }
.slide-title {
  font-size: 54px; font-weight: 800; color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  line-height: 1.15;
  animation: slideUp .8s ease both;
}
.slide-subtitle {
  font-size: 22px; font-weight: 500; color: var(--gold);
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
  animation: slideUp .8s .15s ease both;
}
.slide-btns {
  display: flex; gap: 14px; justify-content: center;
  animation: slideUp .8s .3s ease both;
}
.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(133,12,62,.75);
  border: 2px solid rgba(255,215,0,.3);
  color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.banner-arrow:hover { background: var(--primary); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }
.banner-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.banner-dot {
  height: 10px; border-radius: 5px;
  background: rgba(255,255,255,.35);
  border: none;
  width: 10px;
  transition: all .3s;
}
.banner-dot.active { width: 28px; background: var(--gold); }

/* ── INNER PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, #0d0007 0%, var(--dark) 40%, var(--primary) 100%);
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 { font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.5); }
.breadcrumb li { color: rgba(255,255,255,.65); }

/* ── CTA BOX ── */
.cta-box-wrap { background: var(--off-white); }
.cta-box {
  background: var(--primary);
  border-radius: 8px;
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  transform: translateY(-34px);
  box-shadow: var(--shadow-lg);
}
.cta-box h3 { font-size: 22px; font-weight: 600; color: #fff; flex: 1; }

/* ── FACTS AREA ── */
.facts-area { background: var(--dark); padding: 60px 0; }
.facts-grid {
  display: flex; justify-content: center;
}
.fact-item {
  flex: 1;
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.fact-item:last-child { border-right: none; }
.fact-icon { font-size: 42px; margin-bottom: 12px; }
.fact-num {
  font-size: 44px; font-weight: 800; color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.fact-label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── FEATURES SECTION ── */
.features-section { background: var(--off-white); padding: 60px 0 80px; }
.features-grid { display: flex; gap: 60px; align-items: flex-start; }
.section-eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title-lg { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.3; }
.section-divider { width: 50px; height: 3px; background: var(--primary); border-radius: 2px; margin-bottom: 20px; }
.section-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ── SERVICES SECTION ── */
.services-section { background: var(--white); padding: 80px 0; }
.section-title-center { text-align: center; margin-bottom: 50px; }
.section-title-center h2 { font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.section-title-center .divider { width: 50px; height: 3px; background: var(--primary); border-radius: 2px; margin: 0 auto 14px; }
.section-title-center h3 { font-size: 16px; font-weight: 500; color: var(--primary); }
.services-grid { display: flex; gap: 40px; align-items: center; }
.service-box {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
  opacity: 1;
  transition: transform var(--transition);
}
.service-box:hover { transform: translateX(4px); }
.service-box-icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(133,12,62,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
  transition: background var(--transition);
}
.service-box:hover .service-box-icon { background: rgba(133,12,62,.15); }
.service-box-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.service-box-title a { color: var(--primary); }
.service-box-title a:hover { color: var(--primary-dk); }
.service-box-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.services-center-img {
  flex: 0 0 260px;
  display: flex; align-items: center; justify-content: center;
}
.center-circle {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow-lg);
  animation: pulse 4s ease-in-out infinite;
}
.center-circle .icon { font-size: 56px; }
.center-circle .name { font-size: 24px; font-weight: 900; color: var(--gold); }
.center-circle .sub { font-size: 11px; color: rgba(255,255,255,.65); text-align: center; }

/* ── ACCORDION ── */
.accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:first-child { border-top: none; }
.accordion-btn {
  width: 100%; text-align: left;
  padding: 15px 20px;
  font-size: 14px; font-weight: 600;
  background: #f9f5f7; color: var(--dark);
  border: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition);
}
.accordion-btn.active { background: var(--primary); color: #fff; }
.accordion-btn .icon { font-size: 20px; font-weight: 300; transition: transform var(--transition); }
.accordion-btn.active .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0 20px;
}
.accordion-body.open { max-height: 400px; padding: 16px 20px; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--primary); padding: 30px 0; }
.newsletter-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.newsletter-phone h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.newsletter-phone h4 { font-size: 22px; font-weight: 800; color: var(--gold); }
.newsletter-form { flex: 1; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.newsletter-text h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.newsletter-text p { font-size: 13px; color: rgba(255,255,255,.7); }
.newsletter-input { flex: 1; display: flex; gap: 8px; min-width: 240px; }
.newsletter-input input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff; font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input input:focus { border-color: var(--gold); }
.newsletter-input button {
  padding: 10px 22px;
  background: var(--gold); color: var(--dark);
  border: none; border-radius: var(--radius);
  font-weight: 700; font-size: 13px;
  transition: all var(--transition);
}
.newsletter-input button:hover { background: #e6c200; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 50px 0 20px; }
.footer-grid {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { flex: 0 0 25%; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--gold);
}
.footer-logo-text { font-size: 16px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-col { flex: 0 0 16%; }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── CONTACT CARDS ── */
.contact-cards { display: flex; gap: 24px; padding: 50px 0; }
.contact-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: transform var(--transition);
}
.contact-card:hover .contact-card-icon { transform: scale(1.1) rotate(-5deg); }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.contact-card p.primary { color: var(--primary); font-weight: 600; }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--dark);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(133,12,62,.08);
}
.form-group textarea { resize: vertical; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-submit {
  padding: 13px 32px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ── FAQ ── */
.faq-tabs { display: flex; gap: 10px; margin-bottom: 32px; }
.faq-tab {
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--primary);
  background: transparent; color: var(--primary);
  transition: all var(--transition);
}
.faq-tab.active,
.faq-tab:hover { background: var(--primary); color: #fff; }

/* ── STEPS (How it works) ── */
.step {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 28px;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--gold);
  flex-shrink: 0;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── RATE TABLE ── */
.rate-table-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.rate-table-head {
  display: grid;
  grid-template-columns: 1fr 120px 160px 130px 100px;
  padding: 14px 20px;
  background: var(--primary);
}
.rate-table-head span {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: .5px;
}
.rate-table-row {
  display: grid;
  grid-template-columns: 1fr 120px 160px 130px 100px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}
.rate-table-row:nth-child(even) { background: var(--off-white); }
.rate-table-row:hover { background: rgba(133,12,62,.04); }
.rate-table-row .country { font-size: 14px; font-weight: 600; color: var(--dark); }
.rate-table-row .code { font-size: 14px; color: var(--text-muted); }
.rate-table-row .prefix { font-size: 13px; font-family: monospace; color: #555; }
.rate-table-row .rate { font-size: 14px; font-weight: 700; color: var(--primary); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.badge-active { background: rgba(34,197,94,.1); color: #16a34a; }
.badge-limited { background: rgba(251,191,36,.1); color: #d97706; }

/* ── REGION TABS ── */
.region-tabs { display: flex; gap: 10px; margin-bottom: 22px; }
.region-tab {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--primary);
  background: transparent; color: var(--primary);
  transition: all var(--transition);
}
.region-tab.active,
.region-tab:hover { background: var(--primary); color: #fff; }

/* ── PAYMENT CARDS ── */
.payout-cards { display: flex; gap: 24px; margin-bottom: 50px; }
.payout-card {
  flex: 1; border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative;
}
.payout-card.highlight {
  background: var(--primary);
  border: none;
}
.payout-card.standard {
  background: var(--white);
  border: 1px solid var(--border);
}
.payout-card .badge-popular {
  position: absolute; top: -12px; right: 24px;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
}
.payout-card .icon { font-size: 38px; margin-bottom: 14px; }
.payout-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.payout-card p { font-size: 14px; margin-bottom: 10px; }
.payout-card .note { font-size: 12px; }

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.payment-method-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.payment-method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.payment-method-card .icon { font-size: 32px; margin-bottom: 14px; }
.payment-method-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.payment-method-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── SKYPE BOX ── */
.skype-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.skype-box h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.skype-box p { font-size: 14px; color: var(--gold); font-weight: 600; }

/* ── HOURS TABLE ── */
.hours-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--border);
}
.hours-card h4 {
  font-size: 12px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; color: var(--dark); }
.hours-row .time.highlight { color: var(--primary); }

/* ── LOGIN PAGES ── */
.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.login-bg-rose {
  background: linear-gradient(135deg, var(--dark) 0%, #3d0a20 40%, var(--primary) 100%);
}
.login-bg-dark {
  background: linear-gradient(135deg, #0d0007 0%, #1a0a14 50%, #3d0520 100%);
}
.login-card {
  width: 420px;
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  position: relative;
}
.login-card-glass {
  width: 420px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--gold);
  margin: 0 auto 12px;
  box-shadow: var(--shadow-md);
}
.login-logo h1 { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.login-logo .tagline { font-size: 12px; color: var(--primary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.login-logo-dark h1 { color: #fff; }
.login-logo-dark .tagline { color: var(--gold); }
.login-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.login-title-dark { color: #fff; }
.login-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.login-subtitle-dark { color: rgba(255,255,255,.6); }
.login-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.login-submit:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.login-footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px; color: var(--text-muted);
}
.login-footer-text a { color: var(--primary); font-weight: 600; }
.login-footer-text-dark { color: rgba(255,255,255,.5); }
.login-footer-text-dark a { color: var(--gold); }
.login-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.login-divider span { font-size: 12px; color: #bbb; white-space: nowrap; }

/* ── NETWORK CARD ── */
.network-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.network-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 28px; }
.progress-item { margin-bottom: 20px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 7px; }
.progress-label { font-size: 13px; color: rgba(255,255,255,.65); }
.progress-value { font-size: 14px; font-weight: 700; color: var(--gold); }
.progress-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.12); overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), #ffb347);
  width: 0; /* animated by JS */
  transition: width 1.2s ease;
}

/* ── INFO CARDS (features) ── */
.features-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-mini-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 14px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-mini-card:hover { border-color: var(--primary); background: rgba(133,12,62,.04); }
.feature-mini-card .icon { font-size: 22px; margin-bottom: 6px; }
.feature-mini-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.feature-mini-card p { font-size: 12px; color: var(--text-muted); }

/* ── REVENUE BANNER ── */
.revenue-banner { background: var(--primary); padding: 60px 0; }
.revenue-banner-inner { display: flex; gap: 60px; align-items: center; }
.revenue-list { flex: 1; }
.revenue-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.check-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--dark);
  flex-shrink: 0; margin-top: 1px;
}

/* ── PLATFORM FEATURES ── */
.platform-features {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.platform-features h3 { font-size: 18px; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 28px; }
.platform-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 50px; }
.platform-feature { display: flex; gap: 16px; align-items: flex-start; }
.platform-feature .icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(133,12,62,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.platform-feature h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.platform-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ STILL HAVE QUESTIONS ── */
.faq-cta {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 50px;
}
.faq-cta h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.faq-cta p { font-size: 14px; color: rgba(255,255,255,.65); }
.faq-cta-btns { display: flex; gap: 12px; flex-shrink: 0; margin-left: 40px; }

/* ── CARRIER FEATURE LIST ── */
.carrier-features { display: flex; flex-direction: column; gap: 18px; }
.carrier-feature { display: flex; align-items: flex-start; gap: 16px; }
.carrier-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(133,12,62,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.carrier-feature h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.carrier-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CARRIER FORM ── */
.carrier-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  flex: 0 0 440px;
}
.carrier-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.carrier-form-wrap > p { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ─ SUCCESS MESSAGE ─ */
.success-box {
  text-align: center;
  padding: 60px 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: none;
}
.success-box .icon { font-size: 52px; margin-bottom: 16px; }
.success-box h3 { color: var(--primary); font-size: 22px; margin-bottom: 8px; }
.success-box p { color: var(--text-muted); font-size: 14px; }

/* ══════════ ANIMATIONS ══════════ */

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(133,12,62,.3); }
  50%       { box-shadow: 0 24px 80px rgba(133,12,62,.5); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* Loading bar */
.page-loader {
  position: fixed; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width .3s ease;
}

/* Minimal login — underline style */
.login-underline .form-group input {
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding-left: 0; padding-right: 0;
  background: transparent;
}
.login-underline .form-group input:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
}
.login-underline-card {
  width: 420px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

/* Responsive basics */
@media (max-width: 900px) {
  .features-grid,
  .services-grid,
  .revenue-banner-inner { flex-direction: column; }
  .slide-title { font-size: 36px; }
  .contact-cards,
  .payout-cards { flex-direction: column; }
  .header-info { display: none; }
}

/* ── Font Awesome Icon Sizing ─────────────────────────────── */
.info-box-icon i        { font-size: 1.5rem; }
.service-box-icon i     { font-size: 2rem; }
.fact-icon i            { font-size: 2.5rem; }
.carrier-feature-icon i { font-size: 1.8rem; }
.icon-wrap i            { font-size: 1.8rem; }
.step-icon i            { font-size: 2rem; }
.feature-icon i         { font-size: 1.8rem; }
.faq-icon i             { font-size: 1.4rem; }
.payment-icon i         { font-size: 2rem; }
.contact-icon i         { font-size: 1.4rem; }
.icon i                 { font-size: 1.2rem; }
