 /* ── Design tokens ── */
    :root {
      --seb-bg: #000;
      --seb-bg-dark: #0a0a0a;
      --seb-bg-alt: #080808;
      --seb-white: #fff;
      --seb-gold: #ffd700;
      --seb-gold-accent: #ebb400;
      --seb-gold-gradient: linear-gradient(105deg, #ebb400 0%, #ffdf00 100%);
      --seb-whatsapp: #25d366;
      --seb-text: #fff;
      --seb-text-muted: rgba(255, 255, 255, 0.7);
      --seb-text-subtle: rgba(255, 255, 255, 0.6);
      --seb-text-faint: rgba(255, 255, 255, 0.4);
      --seb-glass: rgba(255, 255, 255, 0.05);
      --seb-glass-border: rgba(255, 255, 255, 0.1);
      --seb-card-bg: rgba(18, 18, 18, 0.7);
      --seb-card-border: rgba(235, 180, 0, 0.2);
      --seb-font: "Inter", system-ui, sans-serif;
      --seb-font-display: "Hanken Grotesk", "Inter", system-ui, sans-serif;
      --seb-space-xs: 8px;
      --seb-space-sm: 16px;
      --seb-space-md: 24px;
      --seb-space-lg: 32px;
      --seb-space-xl: 48px;
      --seb-space-2xl: 64px;
      --seb-space-3xl: 80px;
      --seb-space-4xl: 128px;
      --seb-max-width: 1440px;
      --seb-gutter: 20px;
      --seb-radius-sm: 8px;
      --seb-radius-md: 12px;
      --seb-radius-lg: 16px;
      --seb-radius-xl: 24px;
      --seb-radius-2xl: 40px;
      --seb-radius-full: 9999px;
      --seb-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      --seb-shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.2);
    }

    /* ── Reset & base ── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--seb-font);
      background: var(--seb-bg);
      color: var(--seb-text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a, button {
      text-decoration: none;
      border: none;
      background: none;
      cursor: pointer;
      font: inherit;
      color: inherit;
    }
    ul { list-style: none; margin: 0; padding: 0; }
    h1, h2, h3, h4, p { margin: 0; }

    /* ── Layout ── */
    .seb-page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .seb-wrap {
      width: 100%;
      max-width: var(--seb-max-width);
      margin-inline: auto;
      padding-inline: var(--seb-gutter);
    }
    .seb-main {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .seb-section {
      padding-block: var(--seb-space-3xl);
    }
    .seb-section--alt {
      background: var(--seb-bg-alt);
      border-block: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Split (two-column) layout */
    .seb-split {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-2xl);
      align-items: stretch;
      width: 100%;
    }
    .seb-split__content {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-md);
      flex: 1 1 auto;
      min-width: 0;
    }
    .seb-split__media {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      min-width: 0;
      justify-content: center;
    }
    /* Content first in DOM; image appears on the left from tablet up */
    .seb-split--reverse {
      flex-direction: column-reverse;
    }

    /* Vertical stack */
    .seb-stack { display: flex; flex-direction: column; gap: var(--seb-space-md); }
    .seb-stack--sm { gap: var(--seb-space-sm); }

    /* ── Typography ── */
    .seb-title-xl {
      font-family: var(--seb-font-display);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.1;
    }
    .seb-title-lg {
      font-family: var(--seb-font-display);
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .seb-title-md {
      font-family: var(--seb-font-display);
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.3;
    }
    .seb-title-sm {
      font-family: var(--seb-font);
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.5;
    }
    .seb-text-gradient {
      background: var(--seb-gold-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .seb-text {
      font-size: 1rem;
      line-height: 1.625;
      color: var(--seb-text-muted);
    }
    .seb-text--lg { font-size: 1.125rem; line-height: 1.6; }
    .seb-text--sm { font-size: 0.875rem; line-height: 1.5; }
    .seb-text--center { text-align: center; }
    .seb-text--accent { color: var(--seb-gold-accent); }
    .seb-caption {
      font-size: 0.625rem;
      line-height: 1.5;
      text-transform: uppercase;
      color: var(--seb-text-subtle);
    }

    /* ── Buttons ── */
    .seb-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px 32px;
      border-radius: var(--seb-radius-md);
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.4;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .seb-btn:hover { transform: translateY(-1px); }
    .seb-btn--primary {
      background: var(--seb-gold);
      color: #000;
      box-shadow: var(--seb-shadow-gold);
    }
    .seb-btn--primary-lg {
      padding: 20px 40px;
      font-size: 1.25rem;
      font-weight: 700;
    }
    .seb-btn--gradient {
      background: var(--seb-gold-gradient);
      color: #000;
    }
    .seb-btn--outline {
      border: 1px solid var(--seb-gold-accent);
      color: var(--seb-gold-accent);
      padding: 12px 32px;
    }
    .seb-btn--ghost {
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: var(--seb-radius-full);
    }
	.seb-btn--ghost,.seb-btn--gradient{
	 padding: 8px 24px;
	}
    .seb-btn--pill { border-radius: var(--seb-radius-full); }
    .seb-btn--whatsapp {
      background: var(--seb-whatsapp);
      color: var(--seb-white);
      padding: 13px 32px;
    }
    .seb-btn--full { width: 100%; }
    .seb-btn__icon { width: 20px; height: 20px; }

    /* ── UI components ── */
    .seb-badge {
      display: inline-flex;
      padding: 4px 16px;
      border: 1px solid #e5e7eb;
      border-radius: var(--seb-radius-md);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--seb-gold);
      width: fit-content;
    }
    .seb-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--seb-glass);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-full);
      font-size: 0.875rem;
    }
    .seb-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: var(--seb-space-sm);
    }
    .seb-panel {
      background: var(--seb-card-bg);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-2xl);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }
    .seb-panel--padded { padding: var(--seb-space-md); }
    .seb-highlight {
      padding: 24px;
      background: rgba(235, 180, 0, 0.05);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-xl);
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-xs);
    }
    .seb-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: var(--seb-space-lg);
      margin-top: var(--seb-space-lg);
    }

    /* Glass & feature cards */
    .seb-glass-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      background: var(--seb-glass);
      border: 1px solid var(--seb-glass-border);
      border-radius: var(--seb-radius-lg);
      backdrop-filter: blur(2px);
    }
    .seb-glass-card__body {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .seb-glass-card__title {
      font-size: 1rem;
      font-weight: 700;
    }
    .seb-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      background: var(--seb-card-bg);
      border: 1px solid var(--seb-gold-accent);
      border-left-width: 2px;
      border-radius: var(--seb-radius-md);
      backdrop-filter: blur(10px);
    }
    .seb-feature--row {
      flex-direction: row;
      align-items: flex-start;
      gap: 16px;
      border-left-width: 4px;
    }
    .seb-feature--inline { display: inline-flex; }
    .seb-feature__label {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    .seb-feature__icon { flex-shrink: 0; }
    .seb-feature-row {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-sm);
    }
    .seb-checklist {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .seb-checklist__item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
    }
    .seb-checklist__icon { flex-shrink: 0; }

    /* Media frames */
    .seb-frame {
      display: flex;
      flex-direction: column;
      border-radius: var(--seb-radius-xl);
      overflow: hidden;
    }
    .seb-frame--glow {
      box-shadow: 0 0 48px rgba(235, 180, 0, 0.12), var(--seb-shadow-lg);
    }
    .seb-frame--border {
      background: linear-gradient(141deg, #ebb400, #ffdf00);
      padding: 4px;
      border-radius: var(--seb-radius-xl);
    }
    .seb-frame--glass {
      background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 16px;
      border-radius: var(--seb-radius-2xl);
    }
    .seb-frame__img {
      width: 100%;
      border-radius: var(--seb-radius-xl);
      object-fit: cover;
    }
    .seb-frame__img--rounded { border-radius: 20px; }

    /* ── Header ── */
    .seb-header {
      flex-shrink: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(6px);
    }
    .seb-header__inner {
      display: flex;
      align-items: center;
      height: 72px;
      gap: var(--seb-space-md);
    }
    .seb-header__logo-link {
      display: flex;
      flex-shrink: 0;
      align-items: center;
    }
    .seb-header__logo {
      width: 40px;
      height: 40px;
      object-fit: cover;
    }
    .seb-header__nav {
      display: none;
      flex: 1;
      justify-content: center;
      gap: var(--seb-space-lg);
    }
    .seb-header__nav-link {
      font-family: var(--seb-font-display);
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .seb-header__nav-link--is-active {
      color: var(--seb-gold-accent);
      border-bottom: 2px solid var(--seb-gold-accent);
      padding-bottom: 4px;
      font-weight: 700;
    }
    .seb-header__actions {
      display: flex;
      align-items: center;
      gap: var(--seb-space-sm);
      margin-left: auto;
    }
    .seb-header__actions .seb-btn--ghost { display: none; }

    /* ── Hero ── */
    .seb-hero {
      background-color: var(--seb-bg-dark);
      background-image:
        linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(255, 215, 0, 0.1) 100%),
        url("image0.png");
      background-size: cover;
      background-position: center;
    }
    .seb-hero__lead { max-width: 576px; }
    .seb-hero__perks {
      display: flex;
      flex-wrap: wrap;
      gap: var(--seb-space-lg);
      padding-top: var(--seb-space-sm);
    }
    .seb-hero__shot {
      opacity: 0.8;
      border-radius: 32px;
      width: 100%;
      min-height: 280px;
      object-fit: cover;
      box-shadow: var(--seb-shadow-lg);
    }

    /* ── Section modifiers ── */
    .seb-section--get-id .seb-frame__img { min-height: 300px; }

    /* Dual cards */
    .seb-duo {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-md);
      width: 100%;
    }
    .seb-duo__card {
      flex: 1 1 auto;
      min-width: 0;
    }
    .seb-bonuses {
      padding: var(--seb-space-xl);
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-md);
      justify-content: space-between;
      min-height: 400px;
    }
    .seb-bonuses__img {
      border-radius: var(--seb-radius-xl);
      border: 1px solid var(--seb-glass-border);
      width: 100%;
      min-height: 240px;
      object-fit: cover;
    }
    .seb-support {
      padding: var(--seb-space-3xl) var(--seb-space-xl);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--seb-space-md);
      background: linear-gradient(135deg, rgba(18, 18, 18, 1), rgba(0, 0, 0, 1));
	  justify-content: center;
    }
    .seb-support__icon {
      width: 96px;
      height: 96px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(235, 180, 0, 0.1);
      border: 1px solid rgba(235, 180, 0, 0.3);
      border-radius: var(--seb-radius-full);
    }
    .seb-support__actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--seb-space-sm);
      justify-content: center;
    }

    /* Indian users grid */
    .seb-grid-cards {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: var(--seb-space-md);
    }
    .seb-grid-card {
      display: flex;
      gap: var(--seb-space-sm);
      padding: var(--seb-space-sm);
      background: var(--seb-card-bg);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-lg);
      backdrop-filter: blur(10px);
      flex: 1 1 100%;
    }
    .seb-grid-card__icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(235, 180, 0, 0.1);
      border: 1px solid rgba(235, 180, 0, 0.3);
      border-radius: var(--seb-radius-md);
    }
    .seb-section--india .seb-split { align-items: flex-start; }

    /* CTA visual */
    .seb-cta__visual {
      border-radius: var(--seb-radius-xl);
      overflow: hidden;
    }
    .seb-cta__visual .seb-frame__img {
      width: 100%;
      min-height: 280px;
      object-fit: cover;
    }

    /* ── FAQ ── */
    .seb-faq {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .seb-faq__heading {
      text-align: center;
      margin-bottom: var(--seb-space-2xl);
    }
    .seb-faq__list {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-sm);
      width: 100%;
      max-width: 900px;
    }
    .seb-faq__item {
      background: var(--seb-card-bg);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-lg);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }
    .seb-faq__item--is-open { border-color: var(--seb-gold-accent); }
    .seb-faq__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--seb-space-sm);
      padding: var(--seb-space-sm) var(--seb-space-md);
      text-align: left;
    }
    .seb-faq__question {
      font-size: 1rem;
      font-weight: 600;
    }
    .seb-faq__chevron {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .seb-faq__item--is-open .seb-faq__chevron { transform: rotate(180deg); }
    .seb-faq__answer {
      display: none;
      padding: 0 var(--seb-space-md) var(--seb-space-md);
    }
    .seb-faq__item--is-open .seb-faq__answer { display: block; }

    /* ── Footer ── */
    .seb-footer {
      background: var(--seb-bg);
      padding: var(--seb-space-3xl) 0 var(--seb-space-lg);
    }
    .seb-footer__grid {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: var(--seb-space-2xl);
    }
    .seb-footer__brand,
    .seb-footer__col {
      flex: 1 1 100%;
      min-width: 0;
    }
    .seb-footer__brand { display: flex; flex-direction: column; }
    .seb-footer__about {
      color: var(--seb-text-subtle);
      font-size: 1rem;
      line-height: 1.5;
    }
    .seb-footer__social {
      display: flex;
      gap: var(--seb-space-sm);
      margin-top: var(--seb-space-md);
    }
    .seb-footer__social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--seb-card-bg);
      border: 1px solid rgba(235, 180, 0, 0.15);
      border-radius: var(--seb-radius-full);
      backdrop-filter: blur(10px);
    }
    .seb-footer__col-title {
      font-family: var(--seb-font-display);
      font-size: 1.125rem;
      font-weight: 600;
      padding-bottom: var(--seb-space-xs);
      border-bottom: 1px solid rgba(235, 180, 0, 0.3);
      margin-bottom: var(--seb-space-md);
    }
    .seb-footer__links {
      display: flex;
      flex-direction: column;
      gap: var(--seb-space-sm);
    }
    .seb-footer__link {
      font-family: var(--seb-font-display);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--seb-text-subtle);
      transition: color 0.2s;
    }
    .seb-footer__link:hover { color: var(--seb-text); }
    .seb-footer__contact {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: var(--seb-space-sm);
    }
    .seb-footer__contact-label {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.8);
    }
    .seb-footer__legal {
      padding: var(--seb-space-sm);
      background: var(--seb-glass);
      border: 1px solid var(--seb-card-border);
      border-radius: var(--seb-radius-md);
      font-size: 0.75rem;
      color: var(--seb-text-subtle);
      margin-top: var(--seb-space-md);
    }
    .seb-footer__bar {
      margin-top: var(--seb-space-lg);
      padding-top: var(--seb-space-lg);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }
    .seb-footer__copy {
      font-size: 0.875rem;
      color: var(--seb-text-faint);
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
      .seb-title-xl { font-size: 1.75rem; }
      .seb-title-lg { font-size: 1.5rem; }
      .seb-btn--primary-lg {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
      }
      .seb-hero__perks { flex-direction: column; align-items: stretch; }
      .seb-glass-card { width: 100%; }
      .seb-support { padding: var(--seb-space-2xl) var(--seb-space-md); }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      :root { --seb-gutter: 32px; }
      .seb-title-xl { font-size: 2.5rem; }
      .seb-title-lg { font-size: 2.25rem; line-height: 1.17; }
      .seb-split { flex-direction: row; align-items: center; }
      .seb-split--reverse { flex-direction: row-reverse; }
      .seb-split__content,
      .seb-split__media {
        flex: 1 1 calc(50% - var(--seb-space-2xl) / 2);
        max-width: calc(50% - var(--seb-space-2xl) / 2);
      }
      .seb-feature-row { flex-direction: row; }
      .seb-feature-row .seb-feature { flex: 1 1 0; }
      .seb-duo { flex-direction: row; align-items: stretch; }
      .seb-duo__card { flex: 1 1 calc(50% - var(--seb-space-md) / 2); }
      .seb-grid-cards { flex-direction: row; }
      .seb-grid-card { flex: 1 1 calc(50% - var(--seb-space-md) / 2); }
      .seb-footer__grid { flex-direction: row; align-items: flex-start; }
      .seb-footer__brand,
      .seb-footer__col { flex: 1 1 calc(50% - var(--seb-space-2xl) / 2); }
      .seb-header__actions .seb-btn--ghost { display: inline-flex; }
    }

    @media (min-width: 1024px) {
      :root { --seb-gutter: 48px; }
      .seb-title-xl { font-size: 3.5rem; line-height: 1.1; }
      .seb-title-lg { font-size: 3rem; line-height: 1.17; }
      .seb-header__inner { height: 80px; }
      .seb-header__nav { display: flex; }
      .seb-header__actions .seb-btn--ghost { display: inline-flex; }
      .seb-split { flex-direction: row; align-items: center; }
      .seb-split--reverse { flex-direction: row-reverse; }
      .seb-split__content,
      .seb-split__media {
        flex: 1 1 calc(50% - var(--seb-space-2xl) / 2);
        max-width: calc(50% - var(--seb-space-2xl) / 2);
      }
      .seb-duo { flex-direction: row; align-items: stretch; }
      .seb-duo__card { flex: 1 1 calc(50% - var(--seb-space-md) / 2); }
      .seb-grid-cards { flex-direction: row; flex-wrap: wrap; }
      .seb-grid-card { flex: 1 1 calc(50% - var(--seb-space-md) / 2); }
      .seb-hero { padding-block: var(--seb-space-4xl); min-height: 600px; }
      .seb-hero__shot { min-height:200px; }
      .seb-footer__grid { flex-direction: row; align-items: flex-start; }
      .seb-footer__brand { flex: 1.5 1 220px; }
      .seb-footer__col { flex: 1 1 160px; }
    }