/* Vodlio - IPTV France | Design DNA: iptvfrance.site clone */
/* Dark neon purple/pink on deep dark background */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --vl-bg: #090116;
  --vl-bg2: #0b0219;
  --vl-surface: #1a0f2e;
  --vl-surface2: #2a2237;
  --vl-primary: #ff7fc2;
  --vl-purple: #8818d1;
  --vl-purple-deep: #672f7e;
  --vl-green: #149356;
  --vl-blue: #2575fc;
  --vl-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --vl-gradient-pink: linear-gradient(135deg, #ff7fc2, #8818d1);
  --vl-text: #ffffff;
  --vl-muted: #b4b4b4;
  --vl-border: rgba(103, 47, 126, 0.35);
  --vl-glow: rgba(255, 127, 194, 0.25);
  --vl-radius: 12px;
  --vl-font: 'Montserrat', sans-serif;
  --vl-font2: 'Roboto', sans-serif;
  --vl-gold: #f8b02b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--vl-font2);
  background: var(--vl-bg);
  color: var(--vl-text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vl-font);
  font-weight: 700;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.vl-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.vl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: 0.3s;
  background: rgba(9, 1, 22, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.vl-nav.scrolled {
  background: rgba(9, 1, 22, 0.95);
  border-bottom: 1px solid var(--vl-border);
  padding: 10px 0;
}
.vl-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.vl-logo {
  font-family: var(--vl-font); font-size: 1.7rem; font-weight: 800;
  letter-spacing: -0.5px; color: #fff;
}
.vl-logo span { color: var(--vl-primary); }
.vl-nav__links {
  display: flex; align-items: center; gap: 28px;
}
.vl-nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--vl-muted);
  transition: color 0.2s; font-family: var(--vl-font);
}
.vl-nav__links a:hover { color: var(--vl-primary); }
.vl-nav__cta {
  padding: 10px 28px; background: var(--vl-gradient-pink); color: #fff;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  transition: 0.3s; font-family: var(--vl-font);
  border: none; cursor: pointer;
}
.vl-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--vl-glow);
}
.vl-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.vl-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--vl-text); border-radius: 2px; transition: 0.3s;
}
.vl-mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(9, 1, 22, 0.98); z-index: 999;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
}
.vl-mobile.active { display: flex; }
.vl-mobile a {
  font-size: 1.15rem; font-weight: 600; color: var(--vl-muted);
  font-family: var(--vl-font); transition: color 0.2s;
}
.vl-mobile a:hover { color: var(--vl-primary); }
.vl-mobile .vl-mobile__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--vl-muted); cursor: pointer;
  background: none; border: none;
}

@media(max-width: 900px) {
  .vl-nav__links, .vl-nav__cta { display: none; }
  .vl-burger { display: flex; }
}

/* Hero */
.vl-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: var(--vl-bg);
}
.vl-hero::before {
  content: ''; position: absolute; top: -180px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(136, 24, 209, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.vl-hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 127, 194, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.vl-hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.vl-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(255, 127, 194, 0.1);
  border: 1px solid rgba(255, 127, 194, 0.25);
  color: var(--vl-primary); font-size: 0.82rem;
  font-weight: 600; font-family: var(--vl-font);
  margin-bottom: 20px;
}
.vl-hero__title {
  font-size: 3rem; line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--vl-primary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vl-hero__sub {
  font-size: 1.05rem; color: var(--vl-muted); margin-bottom: 32px;
  max-width: 500px; line-height: 1.7;
}
.vl-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.vl-hero__stats {
  display: flex; gap: 40px; margin-top: 48px;
}
.vl-hero__stat-num {
  font-family: var(--vl-font); font-size: 1.7rem;
  font-weight: 800; color: var(--vl-primary);
}
.vl-hero__stat-label {
  font-size: 0.75rem; color: var(--vl-muted); margin-top: 2px;
}
.vl-hero__visual { position: relative; }
.vl-hero__img {
  border-radius: 16px; width: 100%;
  box-shadow: 0 20px 60px rgba(136, 24, 209, 0.2);
}

@media(max-width: 900px) {
  .vl-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .vl-hero__title { font-size: 2.2rem; }
  .vl-hero__sub { margin: 0 auto 32px; }
  .vl-hero__btns, .vl-hero__stats { justify-content: center; }
  .vl-hero__visual { display: none; }
}

/* Buttons */
.vl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--vl-font); font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: 0.3s;
  text-align: center; justify-content: center;
}
.vl-btn--primary {
  background: var(--vl-gradient-pink); color: #fff;
  box-shadow: 0 4px 24px var(--vl-glow);
}
.vl-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--vl-glow);
}
.vl-btn--outline {
  background: transparent; color: var(--vl-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.vl-btn--outline:hover {
  border-color: var(--vl-primary); color: var(--vl-primary);
}
.vl-btn--green {
  background: var(--vl-green); color: #fff;
}
.vl-btn--green:hover {
  background: #10a85e; transform: translateY(-2px);
}
.vl-btn--purple {
  background: var(--vl-gradient); color: #fff;
}
.vl-btn--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106, 17, 203, 0.3);
}

/* Section Heads */
.vl-section { padding: 90px 0; }
.vl-section--surface { background: var(--vl-surface); }
.vl-section--bg2 { background: var(--vl-bg2); }
.vl-section-head { text-align: center; margin-bottom: 56px; }
.vl-section-head .vl-tag { margin-bottom: 12px; }
.vl-section-head h2 { font-size: 2.2rem; margin-bottom: 16px; }
.vl-section-head p {
  color: var(--vl-muted); max-width: 600px; margin: 0 auto;
  font-size: 1rem; line-height: 1.7;
}

/* Feature Cards */
.vl-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.vl-feat-card {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 32px; transition: 0.3s;
}
.vl-feat-card:hover {
  border-color: var(--vl-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 127, 194, 0.08);
}
.vl-feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 127, 194, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.vl-feat-icon--green { background: rgba(20, 147, 86, 0.15); }
.vl-feat-icon--purple { background: rgba(136, 24, 209, 0.15); }
.vl-feat-icon--blue { background: rgba(37, 117, 252, 0.15); }
.vl-feat-card h3 {
  font-size: 1.05rem; margin-bottom: 10px; font-family: var(--vl-font);
}
.vl-feat-card p {
  font-size: 0.88rem; color: var(--vl-muted); line-height: 1.7;
}

@media(max-width: 768px) {
  .vl-feat-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.vl-pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.vl-price-card {
  background: var(--vl-surface);
  border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 32px 24px;
  text-align: center; transition: 0.3s;
  position: relative; overflow: hidden;
}
.vl-price-card:hover {
  transform: translateY(-6px);
  border-color: var(--vl-primary);
  box-shadow: 0 16px 48px rgba(255, 127, 194, 0.12);
}
.vl-price-card--pop {
  border-color: var(--vl-primary);
  background: linear-gradient(180deg, rgba(255, 127, 194, 0.08) 0%, var(--vl-surface) 100%);
}
.vl-price-card--pop::before {
  content: 'POPULAIRE'; position: absolute; top: 14px; right: -32px;
  transform: rotate(45deg); background: var(--vl-primary);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 4px 40px; font-family: var(--vl-font);
}
.vl-price-card__duration {
  font-family: var(--vl-font); font-weight: 800; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.vl-price-card__desc {
  font-size: 0.82rem; color: var(--vl-muted); margin-bottom: 20px;
}
.vl-price-card__price {
  font-family: var(--vl-font); font-size: 2.8rem; font-weight: 900;
  margin-bottom: 4px;
}
.vl-price-card__price span {
  font-size: 1rem; font-weight: 500; color: var(--vl-muted);
}
.vl-price-card__period {
  font-size: 0.8rem; color: var(--vl-muted); margin-bottom: 24px;
}
.vl-price-card__features {
  text-align: left; margin-bottom: 28px;
}
.vl-price-card__features li {
  font-size: 0.85rem; color: var(--vl-muted); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.vl-price-card__features li::before {
  content: '\2713'; color: var(--vl-green); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.vl-price-card .vl-btn {
  width: 100%; justify-content: center; padding: 12px 24px;
}

@media(max-width: 900px) {
  .vl-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .vl-pricing-grid { grid-template-columns: 1fr; }
}

/* Trial Form */
.vl-trial { padding: 80px 0; background: var(--vl-surface); }
.vl-trial__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.vl-trial__text h2 { font-size: 2rem; margin-bottom: 16px; }
.vl-trial__text p { color: var(--vl-muted); line-height: 1.7; }
.vl-trial__form {
  background: var(--vl-bg2); padding: 32px; border-radius: 16px;
  border: 1px solid var(--vl-border);
}
.vl-trial__form h3 {
  font-size: 1.15rem; margin-bottom: 20px; color: var(--vl-primary);
  font-family: var(--vl-font);
}

@media(max-width: 768px) {
  .vl-trial__inner { grid-template-columns: 1fr; }
}

/* Forms */
.vl-input, .vl-textarea, .vl-select {
  width: 100%; padding: 13px 18px;
  background: var(--vl-bg); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vl-radius); color: var(--vl-text);
  font-size: 0.9rem; font-family: var(--vl-font2);
  margin-bottom: 14px; transition: border-color 0.2s;
}
.vl-input:focus, .vl-textarea:focus, .vl-select:focus {
  outline: none; border-color: var(--vl-primary);
}
.vl-input::placeholder, .vl-textarea::placeholder {
  color: var(--vl-muted);
}
.vl-select { appearance: none; cursor: pointer; }
.vl-textarea { resize: vertical; min-height: 100px; }
.vl-form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--vl-text);
  font-family: var(--vl-font);
}
.vl-form-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--vl-muted); margin-top: 10px;
}

/* Steps / How it works */
.vl-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.vl-step-card {
  text-align: center; padding: 32px 20px;
  background: var(--vl-surface); border-radius: 16px;
  border: 1px solid var(--vl-border);
}
.vl-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--vl-gradient-pink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vl-font); font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px; color: #fff;
}
.vl-step-card h3 {
  font-size: 0.95rem; margin-bottom: 8px; font-family: var(--vl-font);
}
.vl-step-card p {
  font-size: 0.82rem; color: var(--vl-muted); line-height: 1.6;
}

@media(max-width: 768px) {
  .vl-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
  .vl-steps-grid { grid-template-columns: 1fr; }
}

/* Stats Bar */
.vl-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 60px 0;
}
.vl-stat-item { text-align: center; }
.vl-stat-item__num {
  font-family: var(--vl-font); font-size: 2.4rem;
  font-weight: 900; color: var(--vl-primary);
}
.vl-stat-item__label {
  font-size: 0.82rem; color: var(--vl-muted); margin-top: 4px;
}

@media(max-width: 600px) {
  .vl-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* CTA Section */
.vl-cta {
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.vl-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(136, 24, 209, 0.1), rgba(255, 127, 194, 0.06));
  pointer-events: none;
}
.vl-cta h2 {
  font-size: 2.4rem; margin-bottom: 16px; position: relative;
}
.vl-cta p {
  color: var(--vl-muted); max-width: 550px;
  margin: 0 auto 32px; position: relative;
}
.vl-cta .vl-btn { position: relative; }

/* Support Section */
.vl-support {
  padding: 80px 0; background: var(--vl-bg2);
  position: relative; overflow: hidden;
}
.vl-support__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.vl-support__img {
  border-radius: 16px; width: 100%;
  box-shadow: 0 16px 48px rgba(136, 24, 209, 0.15);
}

@media(max-width: 768px) {
  .vl-support__inner { grid-template-columns: 1fr; }
}

/* Sports scroll */
.vl-sports-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding-bottom: 16px; scrollbar-width: none;
}
.vl-sports-scroll::-webkit-scrollbar { display: none; }
.vl-sports-card {
  flex: 0 0 180px; border-radius: 16px; overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  background: var(--vl-surface); border: 1px solid var(--vl-border);
}
.vl-sports-card__name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-weight: 700; font-size: 0.85rem; font-family: var(--vl-font);
}

/* FAQ */
.vl-faq-list { max-width: 800px; margin: 0 auto; }
.vl-faq-item {
  border: 1px solid var(--vl-border); border-radius: var(--vl-radius);
  margin-bottom: 12px; overflow: hidden;
  background: var(--vl-surface);
}
.vl-faq-q {
  width: 100%; padding: 18px 24px; background: none;
  border: none; color: var(--vl-text); font-size: 0.95rem;
  font-weight: 600; font-family: var(--vl-font);
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.vl-faq-q::after {
  content: '+'; font-size: 1.4rem; color: var(--vl-primary);
  transition: transform 0.3s;
}
.vl-faq-item.active .vl-faq-q::after {
  content: '-';
}
.vl-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
}
.vl-faq-a__inner {
  padding: 0 24px 18px; font-size: 0.88rem;
  color: var(--vl-muted); line-height: 1.7;
}
.vl-faq-item.active .vl-faq-a {
  max-height: 500px;
}

/* Footer */
.vl-footer {
  padding: 64px 0 32px; background: var(--vl-bg2);
  border-top: 1px solid var(--vl-border);
}
.vl-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.vl-footer__brand p {
  color: var(--vl-muted); font-size: 0.88rem;
  margin-top: 12px; line-height: 1.7;
}
.vl-footer__col h4 {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--vl-primary);
  margin-bottom: 16px; font-family: var(--vl-font);
}
.vl-footer__col li { margin-bottom: 10px; }
.vl-footer__col a {
  font-size: 0.85rem; color: var(--vl-muted); transition: color 0.2s;
}
.vl-footer__col a:hover { color: var(--vl-primary); }
.vl-footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--vl-border);
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem; color: var(--vl-muted);
}
.vl-footer__address {
  font-size: 0.82rem; color: var(--vl-muted);
  margin-top: 16px; line-height: 1.6; font-style: normal;
}

@media(max-width: 768px) {
  .vl-footer__grid { grid-template-columns: 1fr 1fr; }
  .vl-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Page Header / Inner pages */
.vl-page-header {
  padding: 140px 0 60px; text-align: center;
  background: var(--vl-bg);
  position: relative; overflow: hidden;
}
.vl-page-header::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(136, 24, 209, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vl-page-header h1 {
  font-size: 2.4rem; margin-bottom: 12px; position: relative;
}
.vl-page-header p {
  color: var(--vl-muted); font-size: 1rem; position: relative;
}
.vl-breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 16px; font-size: 0.82rem;
  color: var(--vl-muted); position: relative;
}
.vl-breadcrumb a { color: var(--vl-primary); }

/* Content Pages */
.vl-content { padding: 60px 0; }
.vl-content h2 {
  font-size: 1.5rem; margin: 32px 0 16px;
  padding-bottom: 8px; border-bottom: 1px solid var(--vl-border);
}
.vl-content h3 {
  font-size: 1.2rem; margin: 24px 0 12px;
}
.vl-content p {
  color: var(--vl-muted); margin-bottom: 16px; line-height: 1.8;
}
.vl-content ul, .vl-content ol {
  padding-left: 24px; margin-bottom: 16px;
}
.vl-content li {
  color: var(--vl-muted); margin-bottom: 8px; line-height: 1.7;
  list-style: disc;
}
.vl-content ol li { list-style: decimal; }
.vl-content table {
  width: 100%; border-collapse: collapse; margin-bottom: 24px;
}
.vl-content th, .vl-content td {
  padding: 12px 16px; border: 1px solid var(--vl-border);
  text-align: left;
}
.vl-content th {
  background: var(--vl-surface); font-weight: 600;
  font-family: var(--vl-font); color: var(--vl-text);
}
.vl-content td { color: var(--vl-muted); }
.vl-content strong { color: var(--vl-text); }
.vl-content a {
  color: var(--vl-primary); text-decoration: underline;
}

/* Channels */
.vl-channels-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.vl-channel-cat {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius); padding: 24px;
}
.vl-channel-cat h3 {
  font-size: 1rem; margin-bottom: 12px; color: var(--vl-primary);
  font-family: var(--vl-font);
}
.vl-channel-cat ul {
  padding: 0;
}
.vl-channel-cat li {
  list-style: none; font-size: 0.85rem; color: var(--vl-muted);
  padding: 4px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vl-channel-cat li:last-child { border-bottom: none; }

/* Contact Grid */
.vl-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

@media(max-width: 768px) {
  .vl-contact-grid { grid-template-columns: 1fr; }
}

.vl-contact-info-card {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 28px; margin-bottom: 16px;
}
.vl-contact-info-card h3 {
  font-size: 1rem; margin-bottom: 8px; font-family: var(--vl-font);
}
.vl-contact-info-card p {
  font-size: 0.88rem; color: var(--vl-muted);
}

/* Reseller tiers */
.vl-reseller-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.vl-reseller-card {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 32px; text-align: center;
}
.vl-reseller-card h3 {
  font-size: 1.1rem; margin-bottom: 8px; color: var(--vl-primary);
}
.vl-reseller-card .vl-price {
  font-size: 2rem; font-weight: 800; font-family: var(--vl-font);
  margin: 12px 0;
}

@media(max-width: 768px) {
  .vl-reseller-grid { grid-template-columns: 1fr; }
}

/* Checkout */
.vl-checkout-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
}
.vl-order-summary {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 32px; height: fit-content;
}

@media(max-width: 768px) {
  .vl-checkout-grid { grid-template-columns: 1fr; }
}

/* Setup guide */
.vl-setup-step {
  background: var(--vl-surface); border: 1px solid var(--vl-border);
  border-radius: 16px; padding: 32px; margin-bottom: 24px;
}
.vl-setup-step h3 {
  font-size: 1.1rem; margin-bottom: 12px; display: flex;
  align-items: center; gap: 12px;
}
.vl-setup-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--vl-gradient-pink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vl-font); font-weight: 800; font-size: 0.9rem;
  color: #fff; flex-shrink: 0;
}

/* Form messages */
.form-message {
  padding: 12px 16px; border-radius: var(--vl-radius);
  margin-top: 12px; font-size: 0.88rem; font-weight: 500;
}
.form-message--success {
  background: rgba(20, 147, 86, 0.12); color: var(--vl-green);
  border: 1px solid rgba(20, 147, 86, 0.25);
}
.form-message--error {
  background: rgba(239, 68, 68, 0.12); color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Honeypot */
.vl-hp { position: absolute; left: -9999px; opacity: 0; }

/* Utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
