/* ============================================
   ROOT & BASE STYLES
   ============================================ */

:root {
    /* Colors */
    --primary: hsl(241, 100%, 50%);
    --primary-light: hsl(241, 100%, 55%);
    --primary-foreground: #FFFFFF;
    --secondary: #F5F5F5;
    --background: #FFFFFF;
    --foreground: #1a1a1a;
    --muted-foreground: #666666;
    --card: #F9F9F9;
    --border: #E0E0E0;
    --success: #26b562;
    --error: #f25a67;

    /* Shadows */
    --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 30px 60px rgba(51, 150, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.root-container {
    min-height: 100vh;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    overflow: hidden;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 48px;
    }
}

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 40px;
    font-size: 1rem;
    color: var(--muted-foreground);
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-selector {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: background-color 0.2s;
}

.lang-button:hover {
    background-color: rgba(245, 245, 245, 0.8);
}

.flag {
    font-size: 1rem;
}

.lang-text {
    display: none;
}

.chevron-icon {
    height: 0.75rem;
    width: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
    padding: 0.75rem 1rem;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--foreground);
    border: 2px solid var(--primary);
    padding: 0.75rem 1rem;
}

.cta-button.large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 1.25rem;
}

.cta-button.full-width {
    width: 100%;
}

.icon-arrow {
    height: 1.25rem;
    width: 1.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.orb-1 {
    left: 10%;
    top: 80px;
    height: 288px;
    width: 288px;
    background-color: var(--primary);
}

.orb-2 {
    right: 6%;
    top: 96px;
    height: 320px;
    width: 320px;
    background-color: var(--primary-light);
}

.hero-container {
    display: grid;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-text {
    max-width: 48rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(51, 150, 255, 0.2);
    background-color: rgba(51, 150, 255, 0.05);
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(51, 150, 255, 0.1);
}

.sparkle-icon {
    height: 1rem;
    width: 1rem;
}

.hero-title {
    margin-top: 1rem;
    font-size: clamp(2.5rem, 8.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--foreground);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-features {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.check-icon {
    height: 1rem;
    width: 1rem;
    color: var(--success);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.wallet-img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 30px 60px rgba(51, 150, 255, 0.25));
    user-select: none;
}

/* ============================================
   PAYMENTS SECTION
   ============================================ */

.payments-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.payment-logo {
    height: 48px;
    width: auto;
    opacity: 0.8;
}

.payment-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.marquee-container {
    margin-top: 2rem;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    animation: scroll 30s linear infinite;
}

.marquee-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.45;
    filter: grayscale(1);
    transition: opacity 0.3s, filter 0.3s;
}

.marquee-logo:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   BACKERS SECTION
   ============================================ */

.backers-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.backers-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.backer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(245, 245, 245, 0.6);
    padding: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.backer-item:hover {
    opacity: 1;
    box-shadow: 0 0 20px rgba(51, 150, 255, 0.1);
}

.backer-logo {
    height: 40px;
    width: auto;
    display: block;
    width: 100%;
    object-fit: contain;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    max-width: 48rem;
    text-align: center;
    margin: 0 auto;
}

.section-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.section-title {
    margin-top: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--foreground);
}

.section-description {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6rem 0;
}

.features-grid {
    margin-top: 4rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 56px;
    border-radius: 1rem;
    background-color: rgba(51, 150, 255, 0.1);
    color: var(--primary);
}

.feature-icon svg {
    height: 28px;
    width: 28px;
}

.feature-title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

.feature-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* ============================================
   REWARDS SECTION
   ============================================ */

.rewards-section {
    background-color: rgba(245, 245, 245, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6rem 0;
}

.rewards-grid {
    display: grid;
    gap: 3.5rem;
    grid-template-columns: 1fr 1fr;
}

.rewards-content {
    flex: 1;
}

.rewards-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(51, 150, 255, 0.1);
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.rewards-title {
    margin-top: 1.25rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--foreground);
}

.rewards-description {
    margin-top: 1.5rem;
    max-width: 32rem;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.rewards-breakdown {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reward-item {
    flex: 1;
}

.reward-header {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reward-percentage {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.reward-category {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.progress-bar {
    height: 6px;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    background-color: var(--primary);
}

.crypto-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.crypto-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.crypto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    margin: 0 auto;
}

.crypto-icon img {
    height: 28px;
    width: 28px;
}

.crypto-name {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.crypto-reward {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.max-reward-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
    ring: 4px;
    ring-color: rgba(51, 150, 255, 0.2);
}

.max-text {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.max-label {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ============================================
   PREMIUM SECTION
   ============================================ */

.premium-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(245, 245, 245, 0.5);
    padding: 6rem 0;
}

.premium-card {
    border-radius: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.premium-content {
    flex: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(51, 150, 255, 0.1);
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.star-icon {
    height: 1rem;
    width: 1rem;
    fill: var(--primary);
}

.premium-title {
    margin-top: 1.5rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--foreground);
    line-height: 1.3;
}

.premium-description {
    margin-top: 1.5rem;
    max-width: 32rem;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.premium-benefits {
    margin: 2.5rem 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: rgba(51, 150, 255, 0.15);
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
}

.premium-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metal-card-img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(245, 245, 245, 0.5);
    padding: 6rem 0;
}

.cta-card {
    border-radius: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--foreground);
}

.cta-description {
    margin-top: 1.25rem;
    max-width: 32rem;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-benefit {
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(245, 245, 245, 0.8);
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--background);
}

.footer-content {
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
}

.footer-logo img {
    height: 42.7px;
    width: auto;
}

.footer-text {
    margin-top: 1.25rem;
    max-width: 20rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.footer-links {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-links a {
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--foreground);
}

/* Licensed Section */

.licensed-section {
    padding: 0 0 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.license-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 4rem 0 2rem 0;
}

.shield-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: var(--primary);
}

.license-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.licenses-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.license-card {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.license-card:hover {
    box-shadow: 0 0 20px rgba(51, 150, 255, 0.1);
}

.license-header-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 88vh;
  position: relative;
  z-index: 10000;
  background: #fff;
}
.license-flag {
    font-size: 1.5rem;
}

.license-country {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.license-badge {
    display: inline-block;
    margin-top: 0.75rem;
    border-radius: 0.375rem;
    background-color: rgba(51, 150, 255, 0.1);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.license-number {
    margin-top: 0.75rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.license-address {
    margin-top: 0.5rem;
    white-space: pre-line;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Security Section */

.security-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cert-icon {
    height: 1rem;
    width: 1rem;
}

/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.disclaimer {
    margin-top: 1rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(148, 158, 158, 0.7);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: transform 0.2s;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
}

.icon-arrow-up {
    height: 1.25rem;
    width: 1.25rem;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */

.notifications-region {
    pointer-events: none;
}

.notifications-list {
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    max-height: 100vh;
    width: 100%;
    flex-direction: column-reverse;
    padding: 1rem;
    list-style: none;
}

.notifications-section {
    position: fixed;
    top: 0;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    aria-live: polite;
    aria-relevant: additions text;
    aria-atomic: false;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 640px) {
    .lang-text {
        display: inline;
    }

    .lang-button {
        gap: 0.375rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .cta-button {
        gap: 0.75rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-features {
        font-size: 1rem;
    }

    .feature-item {
        gap: 0.5rem;
    }

    .check-icon {
        height: 1.25rem;
        width: 1.25rem;
    }

    .rewards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .header-logo {
        margin-right: 2rem;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        padding-top: 5rem;
        padding-bottom: 2rem;
        align-items: center;
    }

    .hero-text {
        text-align: left;
    }

    .hero-image {
        justify-content: flex-end;
    }

    .section-title {
        font-size: 3rem;
    }

    .rewards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-section:first-child {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 0.375rem;
    }

    .header-actions .cta-button.primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 0.875rem;
    }

    .header-actions .cta-button svg {
        width: 14px;
        height: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-text {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: center;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .premium-benefits {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .cta-button.large {
        width: 100%;
    }

    .license-header-small {
        flex-direction: column;
        align-items: flex-start;
    }
}
