/* ============================================
   SHARED PAGE ELEMENTS
============================================ */
.page-hero {
  padding-top: 110px;
  padding-bottom: 60px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse at center top, rgba(0,200,240,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ph-desc {
  font-size: 1.08rem;
  color: var(--text3);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.82;
}

.ph-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.ph-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text3);
}

/* CONTENT PROSE */
.content-prose {
  color: var(--text2);
  line-height: 1.85;
  font-size: 1rem;
}

.content-prose h2,
.content-prose h3 { color: var(--text); margin: 2rem 0 0.75rem; }
.content-prose p   { margin-bottom: 1.1rem; }
.content-prose a   { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.content-prose ul  { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }
.content-prose li  { margin-bottom: 0.4rem; color: var(--text2); }

/* ============================================
   PLANS PAGE
============================================ */
.plans-full-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.plan-full-card {
  padding: 2rem 2.25rem;
}

.pfc-popular { margin-bottom: 0.75rem; }

.pfc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.pfc-left { flex: 1; }

.pfc-name {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.pfc-desc {
  font-size: 0.9rem;
  color: var(--text3);
  margin-bottom: 0.85rem;
  line-height: 1.65;
  max-width: 500px;
}

.pfc-networks { display: flex; gap: 6px; flex-wrap: wrap; }

.pfc-price-block {
  text-align: right;
  flex-shrink: 0;
}

.pfc-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text4);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.pfc-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.pfc-price sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text3);
}

.pfc-trial {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  margin-bottom: 3px;
}

.pfc-renew {
  display: block;
  font-size: 0.72rem;
  color: var(--text4);
}

.pfc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.pfc-bottom {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.pfc-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
}

.pfc-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text2);
  padding: 6px 0;
  line-height: 1.5;
}

.pfc-features li svg { flex-shrink: 0; margin-top: 2px; }

.pfc-earn-badge {
  background: rgba(0,232,122,0.06);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  flex-shrink: 0;
}

.pfc-earn-label {
  font-size: 0.68rem;
  color: var(--text4);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  font-weight: 600;
}

.pfc-earn-range {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.pfc-earn-note {
  font-size: 0.72rem;
  color: var(--text4);
  margin-left: 4px;
}

.pfc-btn {
  flex-shrink: 0;
  min-width: 160px;
}

.plans-legal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text4);
  line-height: 1.65;
  margin-top: 2rem;
  padding: 14px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.plans-legal svg { flex-shrink: 0; margin-top: 2px; }
.plans-legal a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

/* COMPARISON TABLE */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.comparison-table th:first-child { text-align: left; }

.comparison-table .featured-col {
  background: rgba(0,200,240,0.05);
  border-left: 1px solid var(--cyan-border);
  border-right: 1px solid var(--cyan-border);
  color: var(--cyan);
}

.comparison-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); text-align: center; vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .ct-label { text-align: left; font-size: 0.85rem; color: var(--text2); }
.comparison-table .ct-cell svg { margin: 0 auto; }
.comparison-table tfoot td { padding: 16px 20px; background: var(--bg3); }

/* PLANS FAQ */
.plans-faq { max-width: 760px; margin: 0 auto; }

/* ============================================
   HOW IT WORKS PAGE
============================================ */
.hiw-explainer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hiw-explainer-grid p { margin-bottom: 0; }

.hiw-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hiw-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}

.hiw-stat-card:hover { border-color: var(--border2); }

.hsc-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.hsc-label {
  font-size: 0.8rem;
  color: var(--text3);
  line-height: 1.45;
}

/* DETAILED STEPS */
.hiw-detailed-steps {
  max-width: 760px;
  margin: 0 auto;
}

.hds-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.hds-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan-border), transparent);
  margin: 4px 0 4px 27px;
}

.hds-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
}

.hds-body { flex: 1; padding-bottom: 0; }
.hds-body h3 { margin-bottom: 0.6rem; }
.hds-body p  { font-size: 0.92rem; color: var(--text3); line-height: 1.78; }

.hds-action { margin-top: 1rem; }

.hds-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }

.hds-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.hds-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text2);
}

/* TWO PATHS */
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.path-card { padding: 2rem; }

.path-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.dfy-icon { background: var(--cyan-glow); border: 1px solid var(--cyan-border); }
.diy-icon { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.22); }

.path-card h3 { margin-bottom: 4px; }
.path-tag { font-size: 0.75rem; color: var(--text4); margin-bottom: 1rem; font-style: italic; }
.path-card > p { font-size: 0.88rem; color: var(--text3); margin-bottom: 1.25rem; line-height: 1.7; }

.path-list { list-style: none; margin-bottom: 1.5rem; }
.path-list li { font-size: 0.84rem; color: var(--text2); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 8px; }
.path-list li:last-child { border-bottom: none; }
.path-list li::before { content: ''; width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; }

/* EARNINGS EXPLAINER */
.earn-explainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ee-card { padding: 1.75rem; }
.ee-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.ee-icon.green { background: rgba(0,232,122,0.08); border: 1px solid var(--green-border); }
.ee-icon.cyan  { background: var(--cyan-glow); border: 1px solid var(--cyan-border); }
.ee-icon.orange{ background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.22); }

.ee-card h4 { margin-bottom: 0.5rem; }
.ee-card p  { font-size: 0.84rem; color: var(--text3); line-height: 1.7; }

/* ============================================
   HOSTING PAGE
============================================ */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.hosting-card { padding: 2rem; display: flex; flex-direction: column; }

.hc-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hc-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}

.hc-price span { font-size: 2rem; }
.hc-price sub  { font-size: 0.9rem; font-weight: 400; color: var(--text3); }

.hc-billed {
  font-size: 0.72rem;
  color: var(--text4);
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}

.hc-features {
  flex: 1;
  list-style: none;
  margin-bottom: 1.5rem;
}

.hc-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text2);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hc-features li:last-child { border-bottom: none; }
.hc-features li svg { flex-shrink: 0; }

.hosting-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text4);
  line-height: 1.65;
  margin-top: 1rem;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card { padding: 1.75rem; }
.why-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--cyan-glow); border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h4 { margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.83rem; color: var(--text3); line-height: 1.68; }

/* ============================================
   DOMAINS PAGE
============================================ */
.domain-search-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 0;
}

.domain-search-box h3 { margin-bottom: 6px; }
.domain-search-box > p { font-size: 0.88rem; color: var(--text3); margin-bottom: 1.5rem; }

.dsb-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
}

.dsb-input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  padding: 13px 16px;
}

.dsb-input:focus { box-shadow: none; border: none; }

.dsb-tld {
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg4);
  width: 120px;
  font-size: 0.88rem;
}

.dsb-btn {
  border-radius: 0;
  border-left: 1px solid var(--border);
  padding: 13px 22px;
}

.dsb-note {
  font-size: 0.76rem;
  color: var(--text4);
  margin-top: 10px;
  line-height: 1.55;
}

/* ============================================
   FAQ PAGE
============================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.83rem;
  color: var(--text3);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.faq-nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--cyan-border);
}

.faq-sidebar-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-sidebar-cta p {
  font-size: 0.8rem;
  color: var(--text4);
  margin-bottom: 0.75rem;
}

.faq-content { }

.faq-section { margin-bottom: 3rem; }

.faq-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; }

/* FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-head);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--cyan); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text4);
}

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--cyan); }

.faq-a {
  display: none;
  padding: 0 0 16px;
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.8;
}

/* ============================================
   AFFILIATE PAGE
============================================ */
.aff-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 0;
}

.as-step { padding: 2rem 1.75rem; }
.as-step h3 { margin-bottom: 0.5rem; }
.as-step p  { font-size: 0.85rem; color: var(--text3); line-height: 1.72; }

.as-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.as-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  margin-top: 2.5rem;
  flex-shrink: 0;
  opacity: 0.3;
}

.aff-comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aff-comm-card { padding: 1.75rem; }
.acc-product { font-size: 0.82rem; font-weight: 600; color: var(--text3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.acc-rate { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 10px; line-height: 1.2; }
.acc-rate span { font-size: 0.82rem; font-weight: 400; color: var(--text3); display: block; }
.aff-comm-card p { font-size: 0.82rem; color: var(--text4); line-height: 1.65; }

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.track-card { padding: 1.75rem; }
.tc-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.track-card h4 { margin-bottom: 0.5rem; }
.track-card p  { font-size: 0.84rem; color: var(--text3); line-height: 1.7; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrap { padding: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-block h4 { margin-bottom: 6px; }
.ci-block p  { font-size: 0.85rem; color: var(--text3); line-height: 1.7; }

.ci-links { list-style: none; }
.ci-links li { margin-bottom: 8px; }
.ci-links a  { font-size: 0.85rem; color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .earn-explainer-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .aff-comm-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hiw-explainer-grid   { grid-template-columns: 1fr; }
  .hiw-stat-grid        { grid-template-columns: repeat(4, 1fr); }
  .two-paths            { grid-template-columns: 1fr; }
  .hosting-grid         { grid-template-columns: 1fr; }
  .pfc-top              { flex-direction: column; }
  .pfc-price-block      { text-align: left; }
  .pfc-bottom           { flex-direction: column; }
  .pfc-features         { grid-template-columns: 1fr; }
  .faq-layout           { grid-template-columns: 1fr; }
  .faq-sidebar          { display: none; }
  .aff-steps            { grid-template-columns: 1fr; }
  .as-arrow             { transform: rotate(90deg); align-self: center; }
  .tracking-grid        { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hiw-stat-grid        { grid-template-columns: 1fr 1fr; }
  .earn-explainer-grid  { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr; }
  .aff-comm-grid        { grid-template-columns: 1fr; }
  .dsb-form             { flex-direction: column; border-radius: var(--radius); }
  .dsb-input, .dsb-tld, .dsb-btn { border-radius: 0; border: none; border-bottom: 1px solid var(--border); }
  .dsb-btn              { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
}

/* ============================================
   SERVER PARTNERS SECTION
============================================ */
.partners-section { background: var(--bg); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partner-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.partner-card p {
  font-size: 0.83rem;
  color: var(--text3);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section { }

.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trustpilot-badge { flex-shrink: 0; }

.tp-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  transition: all var(--transition);
}

.tp-link:hover {
  border-color: #00B67A;
  box-shadow: 0 4px 20px rgba(0,182,122,0.12);
}

.tp-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-stars { display: flex; gap: 2px; }

.tp-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.tp-sub {
  font-size: 0.78rem;
  color: var(--text3);
}

.tp-sub strong { color: #00B67A; }

.tp-logo {
  margin-top: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tc-stars { display: flex; gap: 3px; }

.tc-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan-glow);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.tc-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-head);
}

.tc-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text4);
  margin-top: 1px;
}

.tp-cta {
  text-align: center;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  background: #20BA5A;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   SOCIAL LINKS — IMPROVED VISIBILITY
============================================ */
.footer-social .social-link {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border3);
  color: var(--text2);
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
}

.footer-social .social-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Light mode social links */
body.dph-light .footer-social .social-link {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

body.dph-light .footer-social .social-link:hover {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
============================================ */
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; }
}

@media (max-width: 640px) {
  .partners-grid { grid-template-columns: 1fr; }
  .tp-inner { flex-wrap: wrap; }
}

/* ============================================
   LIGHT MODE — PLANS PAGE
============================================ */
body.dph-light .page-hero {
  background: #F8FAFD;
}
body.dph-light .page-hero::before {
  background: radial-gradient(ellipse at center top, rgba(0,98,204,0.07) 0%, transparent 70%);
}
body.dph-light .plan-full-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
body.dph-light .plan-full-card.card-featured {
  border-color: rgba(0,98,204,0.3);
  box-shadow: 0 4px 32px rgba(0,98,204,0.1);
}
body.dph-light .pfc-name  { color: #0A1628; }
body.dph-light .pfc-desc  { color: #6B7280; }
body.dph-light .pfc-price { color: #0A1628; }
body.dph-light .pfc-divider { background: rgba(0,0,0,0.07); }
body.dph-light .pfc-features li { color: #374151; }
body.dph-light .pfc-earn-badge {
  background: #F0FDF4;
  border-color: rgba(0,168,85,0.25);
}
body.dph-light .pfc-earn-label { color: #6B7280; }
body.dph-light .plans-legal { color: #9CA3AF; }
body.dph-light .comparison-table th { background: #1E3A8A; color: #FFFFFF; }
body.dph-light .comparison-table td { border-color: rgba(0,0,0,0.06); color: #374151; }
body.dph-light .comparison-table .ct-label { color: #374151; }
body.dph-light .comparison-table tr:hover td { background: #F8FAFD; }
