/* ===========================
   Digital Edge Communication
   Xfinity Authorized Reseller
   highspeedinternet.online
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --violet:   #6138f5;
  --blue:     #1f69ff;
  --green:    #008558;
  --orange:   #ffaa00;
  --trinidad: #e64f00;
  --red:      #e6004d;
  --dark:     #0a0a14;
  --dark2:    #12121f;
  --dark3:    #1a1a2e;
  --gray:     #6b7280;
  --light:    #f4f4f8;
  --white:    #ffffff;
  --text:     #1e1e2e;
  --text-muted: #6b7280;
  --border:   rgba(97,56,245,0.15);
  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(97,56,245,0.12);
  --shadow-lg: 0 12px 48px rgba(97,56,245,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

a { color: var(--blue); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--violet); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white); box-shadow: 0 4px 20px rgba(97,56,245,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); color: var(--white);
  box-shadow: 0 8px 32px rgba(97,56,245,0.45);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--trinidad));
  color: var(--white); box-shadow: 0 4px 20px rgba(255,170,0,0.3);
}
.btn-orange:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 8px 28px rgba(255,170,0,0.4); }
.btn-outline {
  background: transparent; color: var(--violet); border-color: var(--violet);
}
.btn-outline:hover { background: var(--violet); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--violet);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); color: var(--violet); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(97,56,245,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.logo-tag { font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }

.header-phone {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white; padding: 10px 20px; border-radius: 50px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  transition: all 0.25s;
}
.header-phone:hover { color: white; transform: translateY(-1px); box-shadow: var(--shadow); }
.header-phone svg { width: 16px; height: 16px; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 16px; border-radius: 8px;
  font-weight: 500; font-size: 14px; color: var(--text);
  transition: all 0.2s;
}
nav a:hover, nav a.active { background: rgba(97,56,245,0.08); color: var(--violet); }

.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--text);
}
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: white;
}
.mobile-nav a {
  padding: 12px 16px; border-radius: 8px; font-weight: 500;
  color: var(--text); display: block; transition: 0.2s;
}
.mobile-nav a:hover { background: rgba(97,56,245,0.08); color: var(--violet); }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* =================== TOP BAR =================== */
.top-bar {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white; text-align: center; padding: 8px 20px;
  font-size: 13px; font-weight: 500;
}
.top-bar a { color: var(--orange); font-weight: 700; }
.top-bar a:hover { color: white; }

/* =================== HERO =================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, #1a1040 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(97,56,245,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(31,105,255,0.2) 0%, transparent 60%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(97,56,245,0.2); border: 1px solid rgba(97,56,245,0.4);
  border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.hero-badge span {
  background: var(--orange); color: var(--dark); padding: 2px 8px;
  border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: white;
  margin-bottom: 20px; line-height: 1.1;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 24px;
}
.hero-trust svg { color: var(--green); width: 16px; }

.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--orange));
}
.hero-card h3 {
  color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.plan-quick {
  display: flex; flex-direction: column; gap: 12px;
}
.plan-quick-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.06); border-radius: 10px;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: 0.2s;
}
.plan-quick-item:hover { background: rgba(97,56,245,0.2); border-color: rgba(97,56,245,0.4); }
.plan-quick-item .name { font-weight: 600; color: white; font-size: 14px; }
.plan-quick-item .speed { color: var(--orange); font-size: 13px; font-weight: 600; }
.plan-quick-item .price { color: var(--green); font-weight: 800; font-size: 15px; }
.hero-phone-cta {
  margin-top: 20px; background: linear-gradient(135deg, var(--orange), var(--trinidad));
  border-radius: 12px; padding: 16px 20px; text-align: center;
}
.hero-phone-cta p { color: rgba(255,255,255,0.85); font-size: 13px; margin-bottom: 6px; }
.hero-phone-cta a {
  color: white; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-phone-cta a:hover { color: white; }

/* =================== TRUST BAR =================== */
.trust-bar {
  background: var(--light); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.trust-item svg { color: var(--violet); width: 20px; height: 20px; }

/* =================== SECTIONS =================== */
section { padding: 80px 0; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--violet);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; color: var(--text);
}
.section-sub {
  font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* =================== PLANS =================== */
.plans-section { background: var(--white); }
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.plan-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: all 0.3s; position: relative; overflow: hidden;
  background: white;
}
.plan-card:hover { border-color: var(--violet); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--violet);
  background: linear-gradient(135deg, rgba(97,56,245,0.04), rgba(31,105,255,0.04));
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--orange), var(--trinidad));
  color: white; font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px;
}
.plan-badge.green { background: linear-gradient(135deg, var(--green), #00a86b); }
.plan-speed {
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--violet); line-height: 1;
}
.plan-speed span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan-name { font-size: 20px; font-weight: 700; color: var(--text); margin: 8px 0 4px; }
.plan-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price-wrap { margin: 20px 0; padding: 16px; background: var(--light); border-radius: 10px; }
.plan-price {
  font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: var(--text);
  line-height: 1;
}
.plan-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
.plan-price sub { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.plan-price-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.plan-features { margin: 20px 0; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border: none; }
.plan-features li svg { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.plan-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* =================== FEATURES =================== */
.features-section { background: var(--light); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.feature-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(97,56,245,0.3); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-icon.violet { background: rgba(97,56,245,0.1); color: var(--violet); }
.feature-icon.blue { background: rgba(31,105,255,0.1); color: var(--blue); }
.feature-icon.green { background: rgba(0,133,88,0.1); color: var(--green); }
.feature-icon.orange { background: rgba(255,170,0,0.1); color: var(--orange); }
.feature-icon.red { background: rgba(230,0,77,0.1); color: var(--red); }
.feature-icon.trinidad { background: rgba(230,79,0,0.1); color: var(--trinidad); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =================== WHY US =================== */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { color: white; margin-bottom: 16px; }
.why-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 16px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(97,56,245,0.2); color: var(--violet);
}
.why-item-icon svg { width: 22px; }
.why-item-text h4 { color: white; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-item-text p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: 0.3s;
}
.stat-card:hover { background: rgba(97,56,245,0.15); border-color: rgba(97,56,245,0.4); }
.stat-num {
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }

/* =================== CTA BAND =================== */
.cta-band {
  background: linear-gradient(135deg, var(--violet) 0%, var(--blue) 100%);
  padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 120%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band h2 { color: white; font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-band .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-phone-big {
  font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800;
  color: var(--orange); display: block; margin-bottom: 8px;
}

/* =================== HOW IT WORKS =================== */
.how-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step-card { text-align: center; padding: 32px 20px; position: relative; }
.step-card:not(:last-child)::after {
  content: '→'; position: absolute; right: -16px; top: 32px;
  font-size: 24px; color: var(--border);
}
.step-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =================== FAQ =================== */
.faq-section { background: var(--light); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 24px; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q:hover { color: var(--violet); }
.faq-q svg { flex-shrink: 0; width: 18px; transition: transform 0.3s; }
.faq-item.open .faq-q { color: var(--violet); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 24px 18px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* =================== DISCLAIMER =================== */
.disclaimer-box {
  background: rgba(97,56,245,0.04); border: 1px solid rgba(97,56,245,0.15);
  border-radius: var(--radius); padding: 20px 24px; margin-top: 32px;
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
}
.disclaimer-box strong { color: var(--text); }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 12px 0; max-width: 280px; }
.footer-brand .logo-name { font-size: 20px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: 0.2s;
}
.footer-social a:hover { background: var(--violet); color: white; }
.footer-col h4 { color: white; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item svg { color: var(--violet); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--orange); }
.footer-disclaimer {
  background: rgba(0,0,0,0.3); padding: 16px 20px;
  font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.7; text-align: center;
}

/* =================== INNER PAGE =================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  padding: 60px 0; text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; }
.page-content { padding: 60px 0; }
.page-content h2 { font-size: 24px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.page-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.page-content p { margin-bottom: 16px; font-size: 15px; color: var(--text); line-height: 1.8; }
.page-content ul { margin: 12px 0 16px 20px; }
.page-content ul li { margin-bottom: 8px; font-size: 15px; color: var(--text); list-style: disc; line-height: 1.7; }
.page-content a { color: var(--blue); }
.page-content .last-updated { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }

/* =================== CONTACT =================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text); background: white; transition: 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(97,56,245,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: rgba(0,133,88,0.1); border: 1px solid var(--green); border-radius: 10px; padding: 16px; color: var(--green); font-weight: 600; text-align: center; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: white;
}
.contact-info-icon svg { width: 20px; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--text-muted); }
.contact-info-card a:hover { color: var(--violet); }

/* =================== BREADCRUMB =================== */
.breadcrumb {
  padding: 12px 0; font-size: 13px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--violet); }
.breadcrumb span { margin: 0 6px; color: var(--border); }

/* =================== CHIPS/TAGS =================== */
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
.chip-green { background: rgba(0,133,88,0.12); color: var(--green); }
.chip-violet { background: rgba(97,56,245,0.1); color: var(--violet); }
.chip-orange { background: rgba(255,170,0,0.12); color: #cc8800; }

/* =================== ALERT/NOTICE =================== */
.alert-notice {
  background: rgba(31,105,255,0.08); border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0; padding: 14px 20px;
  font-size: 14px; color: var(--text); margin-bottom: 24px;
}
.alert-notice strong { color: var(--blue); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav.open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0 60px; }
  .hero-card { display: none; }

  .plans-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  section { padding: 48px 0; }
  .trust-items { gap: 16px; }
}

@media (max-width: 480px) {
  .header-phone .phone-text { display: none; }
  .top-bar { font-size: 11px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
}
