    :root {
      --primary: #0056ff;
      --primary-soft: rgba(0, 86, 255, 0.08);
      --primary-dark: #0039a6;
      --accent: #0f172a;
      --bg: #f5f7fb;
      --border: #e2e8f0;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --success: #16a34a;
      --danger: #ef4444;
      --radius-lg: 18px;
      --radius-xl: 24px;
      --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.12);
      --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      color: var(--text-main);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: linear-gradient(135deg, #f9fbff, #eef3ff);
    }

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Header */
    header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}


    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 0;
      gap: 1rem;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    
    .header-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .badge-small {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--primary-dark);
  background: rgba(219, 234, 254, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 4.3rem;
  white-space: nowrap !important;   /* FIX LINE-BREAK */
}


    .seller-login-link {
      font-size: 0.9rem;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: all 0.2s ease;
    }

    .seller-login-link i {
      font-size: 1rem;
      transition: all 0.2s ease;
    }

    .seller-login-link:hover {
      color: var(--primary);
      transform: translateY(-1px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.65rem 1.4rem;
      transition: all 0.2s ease;
      gap: 0.4rem;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #0056ff, #0039a6);
      color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 8px 12px rgba(37, 99, 235, 0.45);
      transition: all 0.2s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(37, 99, 235, 0.55);
    }

    .btn-outline {
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--accent);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
    }

    /* Hero */
    .hero {
      padding: 2.5rem 0 2.25rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 880px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(219, 234, 254, 0.9);
      border: 1px solid rgba(191, 219, 254, 0.9);
      font-size: 0.75rem;
      color: var(--primary-dark);
      margin-bottom: 0.9rem;
    }

    .hero-title {
      font-size: clamp(2.1rem, 2.6vw + 1.4rem, 2.9rem);
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 0.65rem;
      color: var(--accent);
    }

    .hero-tagline {
      font-size: 1.02rem;
      color: var(--text-muted);
      max-width: 490px;
      margin-bottom: 1.15rem;
    }

    .hero-highlight {
      color: var(--primary);
      font-weight: 600;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-bottom: 1.25rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      align-items: center;
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-meta-item i {
      font-size: 1rem;
      color: var(--primary);
    }

    .hero-card {
      background: radial-gradient(circle at 0 0, #e0ecff, #ffffff);
      border-radius: 15px;
      padding: 1.4rem 1.4rem 1.1rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(226, 232, 240, 0.9);
      position: relative;
      overflow: hidden;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 110% -10%, rgba(37, 99, 235, 0.1), transparent 50%);
      pointer-events: none;
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.1rem;
    }

    .hero-chip {
      font-size: 0.72rem;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-chip i {
      font-size: 0.9rem;
      color: #22c55e;
    }

    .hero-avatar-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.9rem;
    }

    .hero-avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background-size: cover;
      background-position: center;
      border: 2px solid #ffffff;
      box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
    }

    .avatar + .avatar {
      margin-left: -10px;
    }

    .avatar-1 {
      background-image: url("https://images.pexels.com/photos/7679867/pexels-photo-7679867.jpeg?auto=compress&cs=tinysrgb&w=200");
    }

    .avatar-2 {
      background-image: url("https://images.pexels.com/photos/1181567/pexels-photo-1181567.jpeg?auto=compress&cs=tinysrgb&w=200");
    }

    .avatar-3 {
      background-image: url("https://images.pexels.com/photos/3760852/pexels-photo-3760852.jpeg?auto=compress&cs=tinysrgb&w=200");
    }

    .hero-avatar-text {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-avatar-text span {
      color: var(--primary-dark);
      font-weight: 600;
    }

    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
      margin-bottom: 0.85rem;
    }

    .hero-stat-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 16px;
      padding: 0.55rem 0.7rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      font-size: 0.78rem;
    }

    .hero-stat-label {
      color: var(--text-muted);
      margin-bottom: 0.15rem;
    }

    .hero-stat-value {
      font-weight: 600;
      color: var(--accent);
    }

    .hero-stat-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.7rem;
      padding: 0.05rem 0.4rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.1);
      color: var(--success);
      margin-left: 0.25rem;
    }

    .hero-mini-chart {
      margin-top: 0.4rem;
      height: 40px;
      display: flex;
      gap: 4px;
      align-items: flex-end;
    }

    .hero-mini-bar {
      flex: 1;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.2));
    }

    .hero-mini-bar:nth-child(odd) {
      opacity: 0.8;
    }

    .hero-mini-bar:nth-child(even) {
      opacity: 0.6;
    }

    .hero-note {
      font-size: 0.72rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-note i {
      color: #22c55e;
      font-size: 0.9rem;
    }

    /* Sections */
    section {
      padding: 2.5rem 0 0;
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.4rem;
    }

    .section-kicker {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .section-title {
      font-size: 1.4rem;
      letter-spacing: -0.02em;
      color: var(--accent);
    }

    .section-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 540px;
    }

    /* Benefits */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    @media (max-width: 960px) {
      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 620px) {
      .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .benefit-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 0.9rem 0.95rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }

    .benefit-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
    }

    .benefit-icon i {
      color: var(--primary);
      font-size: 1.1rem;
    }

    .benefit-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--accent);
    }

    .benefit-text {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Profit & Earnings */
    .earnings-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: stretch;
    }

    @media (max-width: 900px) {
      .earnings-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .earnings-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 1.1rem 1.2rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
    }

    .earnings-pill {
      font-size: 0.75rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.08);
      color: var(--success);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-bottom: 0.45rem;
    }

    .earnings-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
      font-size: 0.85rem;
      margin-bottom: 0.35rem;
    }

    .earnings-row strong {
      font-size: 0.9rem;
    }

    .earnings-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    .profit-highlight {
      font-size: 0.92rem;
      margin-top: 0.5rem;
      color: var(--accent);
      font-weight: 600;
    }

    .profit-highlight span {
      color: var(--primary);
    }

    .divider {
      height: 1px;
      background: rgba(226, 232, 240, 0.9);
      margin: 0.8rem 0;
    }

    .earnings-examples {
      display: grid;
      gap: 0.5rem;
    }

    .earn-example {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .earn-example span {
      font-weight: 600;
      color: var(--accent);
    }

    .earnings-chart-card {
      background: #020617;
      border-radius: 15px;
      padding: 1rem 1.1rem;
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
    }

    .earnings-chart-card::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 70%);
      right: -40px;
      top: -40px;
      opacity: 0.8;
    }

    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.7rem;
    }

    .chart-title {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .chart-badge {
      font-size: 0.75rem;
      padding: 0.12rem 0.6rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .chart-badge i {
      color: #22c55e;
      font-size: 0.9rem;
    }

    .bar-chart {
      margin-top: 0.5rem;
    }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.78rem;
      margin-bottom: 0.4rem;
    }

    .bar-label {
      width: 90px;
      color: #9ca3af;
    }

    .bar-track {
      flex: 1;
      height: 8px;
      border-radius: 999px;
      background: rgba(31, 41, 55, 0.9);
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, #22c55e, #3b82f6);
      width: 0;
      transition: width 1s ease-out;
    }

    .bar-value {
      min-width: 70px;
      text-align: right;
      color: #e5e7eb;
      font-weight: 500;
    }

    .chart-footnote {
      margin-top: 0.6rem;
      font-size: 0.75rem;
      color: #9ca3af;
    }

    /* Top Vendors */
    .vendors-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    @media (max-width: 1000px) {
      .vendors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .vendors-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .vendor-card {
      background: #ffffff;
      border-radius: 15px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      padding: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .vendor-top {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .vendor-avatar {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      overflow: hidden;
      background: #e5e7eb;
      flex-shrink: 0;
    }

    .vendor-main {
      flex: 1;
    }

    .vendor-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--accent);
    }

    .vendor-category {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .vendor-sales {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary-dark);
    }

    .vendor-stats-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      margin-top: 0.15rem;
    }

    .vendor-rating {
      display: inline-flex;
      align-items: center;
      gap: 0.15rem;
    }

    .stars {
      color: #facc15;
      font-size: 0.8rem;
    }

    .vendor-growth {
      font-size: 0.78rem;
      color: var(--success);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .vendor-growth i {
      font-size: 0.85rem;
    }

    .vendor-footer-note {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .vendors-cta {
      margin-top: 1rem;
      display: flex;
      justify-content: flex-end;
    }

    /* Metrics Section */
    .metrics-section {
      margin-top: 0.5rem;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
    }

    @media (max-width: 960px) {
      .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .metrics-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .metric-card {
      background: #020617;
      border-radius: 15px;
      padding: 0.9rem;
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .metric-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 110% -10%, rgba(37, 99, 235, 0.65), transparent 60%);
      opacity: 0.8;
      pointer-events: none;
    }

    .metric-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }

    .metric-icon i {
      font-size: 1.1rem;
      color: #60a5fa;
    }

    .metric-value {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
      position: relative;
      z-index: 1;
    }

    .metric-label {
      font-size: 0.78rem;
      color: #9ca3af;
      position: relative;
      z-index: 1;
    }

    .metric-pill {
      margin-top: 0.35rem;
      font-size: 0.72rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      color: #a5b4fc;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      position: relative;
      z-index: 1;
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    @media (max-width: 960px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 650px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 0.9rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon i {
      color: var(--primary);
      font-size: 1.05rem;
    }

    .feature-title {
      margin-top: 0.45rem;
      font-size: 0.96rem;
      font-weight: 600;
      color: var(--accent);
    }

    .feature-text {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Trust badges */
    .trust-badges {
      margin-top: 1.1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .trust-badge {
      font-size: 0.78rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(248, 250, 252, 0.95);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .trust-badge i {
      font-size: 0.9rem;
      color: var(--primary);
    }

    /* CTA Section */
    .cta-section {
      margin-top: 2.3rem;
      padding: 1.6rem;
      border-radius: 15px;
      background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 55%), #ffffff;
      border: 1px solid rgba(209, 213, 219, 0.9);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.1rem;
      justify-content: space-between;
    }

    .cta-text-block {
      max-width: 420px;
    }

    .cta-title {
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 0.25rem;
    }

    .cta-subtitle {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    /* FAQ */
    .faq-grid {
      margin-top: 0.5rem;
      border-radius: 15px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: #ffffff;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .faq-item {
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0.95rem;
      cursor: pointer;
      font-size: 0.9rem;
    }

    .faq-question span {
      font-weight: 500;
    }

    .faq-question i {
      font-size: 1.1rem;
      color: var(--primary);
      transition: transform 0.2s ease;
    }

    .faq-answer {
      padding: 0 0.95rem 0.75rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      display: none;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question i {
      transform: rotate(90deg);
    }

    /* Footer */
    footer {
      margin-top: 2.5rem;
      padding: 1.6rem 0 1.4rem;
      border-top: 1px solid rgba(226, 232, 240, 0.9);
      background: #ffffff;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .footer-link {
      color: var(--text-muted);
    }

    .footer-link:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    /* Utility */
    .mt-small {
      margin-top: 0.35rem;
    }

    .mt {
      margin-top: 1.5rem;
    }

    /* EXTRA RESPONSIVE TWEAKS – only layout, design unchanged */

    /* Tablet and small laptop */
    @media (max-width: 768px) {
      .header-inner {
        flex-wrap: wrap;
      }

      .logo-wrap {
        flex: 1 1 100%;
        justify-content: space-between;
      }

      .header-right {
        flex: 1 1 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
      }

      .badge-small {
        max-width: 100%;
      }

      .hero {
        padding: 2rem 0 2rem;
      }

      .cta-section {
        padding: 1.4rem;
      }
    }

    /* Mobile */
  @media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    gap: 0.6rem;
  }

  /* FIX: Keep Login + Register in one line */
  .header-right {
    justify-content: space-between !important;
    width: 100%;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  /* Seller Login smaller in mobile */
  .seller-login-link {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }

  /* Register button small + no full width */
  .btn-primary {
    padding: 0.55rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    width: auto !important;
  }

  /* REMOVE full width button on mobile (was breaking layout) */
  .btn {
    width: auto !important;
  }



  .hero-ctas {
    flex-direction: column;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-tagline {
    font-size: 0.96rem;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 0.5rem;
  }
}

