/* === iGamingKYC.com — Global Styles === */
:root {
    --bg: #07070e;
    --bg-card: #0e0e1a;
    --bg-hover: #141425;
    --accent: #00e67a;
    --accent-dim: rgba(0,230,122,.12);
    --accent-glow: rgba(0,230,122,.06);
    --purple: #a855f7;
    --blue: #3b82f6;
    --orange: #f59e0b;
    --red: #ef4444;
    --text: #e8e8f0;
    --text-2: #85859e;
    --text-3: #4a4a62;
    --border: #1a1a2e;
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }

/* === Grid Background === */
.grid-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 64px 64px;
}
.grid-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 45% at 30% -5%, rgba(168,85,247,.18), transparent),
        radial-gradient(ellipse 55% 35% at 80% 0%, rgba(0,230,122,.14), transparent),
        radial-gradient(ellipse 45% 25% at 55% 100%, rgba(59,130,246,.08), transparent);
}
.grid-bg.glow-green::after {
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0,230,122,.12), transparent);
}
.grid-bg.glow-blue::after {
    background: radial-gradient(ellipse 60% 35% at 50% 0%, rgba(59,130,246,.1), transparent);
}
.grid-bg.glow-orange::after {
    background:
        radial-gradient(ellipse 60% 35% at 60% 0%, rgba(245,158,11,.1), transparent),
        radial-gradient(ellipse 40% 25% at 30% 0%, rgba(239,68,68,.07), transparent);
}

/* === Navigation === */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: .9rem 2rem; display: flex; align-items: center; justify-content: space-between; background: rgba(7,7,14,.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.logo { font-family: 'Dela Gothic One', cursive; font-size: 1.2rem; color: var(--accent); text-decoration: none; letter-spacing: -.02em; }
.logo span { color: var(--text); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .65rem 1.4rem; font-weight: 700; font-size: .8rem; text-decoration: none; border-radius: 6px; transition: all .2s; letter-spacing: .03em; text-transform: uppercase; }
.btn-p { background: var(--accent); color: var(--bg); }
.btn-p:hover { background: #33ffaa; box-shadow: 0 0 24px var(--accent-glow); transform: translateY(-1px); }
.btn-g { background: transparent; border: 1px solid var(--border); color: var(--text-2); }
.btn-g:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* === Hero === */
.hero { position: relative; z-index: 1; min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 4rem; }
.tag { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; margin-bottom: 1.8rem; background: var(--accent-dim); border: 1px solid rgba(0,230,122,.18); border-radius: 100px; font-size: .72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
.tag::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
.tag.purple { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.22); color: var(--purple); }
.tag.purple::before { background: var(--purple); }
.tag.blue { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.22); color: var(--blue); }
.tag.blue::before { background: var(--blue); }
.tag.orange { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.22); color: var(--orange); }
.tag.orange::before { background: var(--orange); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

h1 { font-family: 'Dela Gothic One', cursive; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 1.4rem; max-width: 780px; }
h1 .g { background: linear-gradient(135deg, var(--accent), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
h1 .vs { color: var(--purple); }
h1 .gr { color: var(--accent); }
h1 .o { color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--text-2); max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* === Layout === */
.wrap { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; padding: 4.5rem 2rem; }
.content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 7.5rem 2rem 4rem; }
.content.narrow { max-width: 780px; }
.label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: .8rem; }
h2 { font-family: 'Dela Gothic One', cursive; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: .8rem; }
.desc { color: var(--text-2); font-size: 1rem; line-height: 1.7; max-width: 560px; margin-bottom: 2.5rem; }
.breadcrumb { font-size: .78rem; color: var(--text-3); margin-bottom: 2rem; }
.breadcrumb a { color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.intro { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; max-width: 680px; }
.updated { font-size: .78rem; color: var(--text-3); margin-bottom: 2.5rem; }

/* === Guide Cards === */
.guides { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.guide-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; text-decoration: none; color: var(--text); transition: all .25s; position: relative; overflow: hidden; }
.guide-card::after { content: '→'; position: absolute; top: 1.8rem; right: 1.8rem; color: var(--text-3); font-size: 1.2rem; transition: all .25s; }
.guide-card:hover { border-color: rgba(0,230,122,.2); transform: translateY(-3px); }
.guide-card:hover::after { color: var(--accent); transform: translateX(3px); }
.card-tag { display: inline-block; padding: .2rem .6rem; margin-bottom: 1rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; border-radius: 4px; }
.t-guide { background: rgba(59,130,246,.12); color: var(--blue); }
.t-compare { background: rgba(168,85,247,.12); color: var(--purple); }
.t-fraud { background: rgba(245,158,11,.12); color: var(--orange); }
.guide-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.3; }
.guide-card p { font-size: .85rem; color: var(--text-2); line-height: 1.55; }

/* === Checklist Cards === */
.checklist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.ck { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; transition: all .25s; }
.ck:hover { border-color: rgba(0,230,122,.15); }
.ck-n { font-family: 'Dela Gothic One', cursive; font-size: 2rem; color: var(--text-3); opacity: .35; margin-bottom: .8rem; }
.ck h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.ck p { font-size: .85rem; color: var(--text-2); line-height: 1.6; }

/* === TLDR Box === */
.tldr { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; margin-bottom: 3rem; }
.tldr-h { font-family: 'Dela Gothic One', cursive; font-size: .85rem; color: var(--accent); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.tldr p { color: var(--text-2); line-height: 1.7; font-size: .92rem; }
.tldr strong { color: var(--text); }

/* === Comparison Table === */
.tbl-wrap { overflow-x: auto; margin-bottom: 3rem; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-card); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead th { padding: 1rem 1.2rem; text-align: left; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.01); }
thead th:first-child { width: 38%; padding-left: 1.5rem; }
thead th.prov { text-align: center; color: var(--text-2); font-size: .78rem; }
thead th.rec { color: var(--accent); }
tbody tr { border-bottom: 1px solid rgba(26,26,46,.6); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: .85rem 1.2rem; font-size: .88rem; color: var(--text-2); vertical-align: middle; }
tbody td:first-child { font-weight: 600; color: var(--text); padding-left: 1.5rem; }
tbody td.c { text-align: center; }
.win { color: var(--accent) !important; font-weight: 600; }
.y { color: var(--accent); }
.n { color: #ef4444; opacity: .5; }

/* === Content Blocks === */
.block { margin-bottom: 2.5rem; }
.block h2 { font-family: 'Dela Gothic One', cursive; font-size: 1.35rem; margin-bottom: .8rem; letter-spacing: -.02em; }
.block h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; margin-top: 1.3rem; color: var(--text); }
.block p { color: var(--text-2); line-height: 1.75; font-size: .92rem; margin-bottom: .6rem; }
.block strong { color: var(--text); }

/* === Article (Guide Pages) === */
article h2 { font-family: 'Dela Gothic One', cursive; font-size: 1.4rem; margin: 2.5rem 0 .8rem; letter-spacing: -.02em; color: var(--text); }
article h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .4rem; color: var(--text); }
article p { color: var(--text-2); line-height: 1.8; font-size: .93rem; margin-bottom: .8rem; }
article strong { color: var(--text); }

/* === Info Box === */
.info-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; margin: 1.5rem 0; }
.info-box h4 { font-size: .85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.info-box p { font-size: .88rem; margin-bottom: .4rem; }

/* === Jurisdiction Cards === */
.jurisdictions { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.jur { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.3rem; }
.jur h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.jur p { font-size: .82rem; color: var(--text-2); line-height: 1.5; margin: 0; }

/* === Threat Cards === */
.threats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.threat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.3rem; transition: border-color .2s; }
.threat:hover { border-color: rgba(245,158,11,.2); }
.threat-icon { font-size: 1.5rem; margin-bottom: .6rem; }
.threat h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.threat p { font-size: .82rem; color: var(--text-2); line-height: 1.5; margin: 0; }

/* === Stat Callout === */
.stat-callout { background: var(--bg-card); border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; padding: 1.3rem 1.5rem; margin: 1.5rem 0; }
.stat-callout .big { font-family: 'Dela Gothic One', cursive; font-size: 1.8rem; color: var(--orange); }
.stat-callout p { font-size: .88rem; margin: 0; }

/* === Defense Cards === */
.defense { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.def { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; position: relative; overflow: hidden; }
.def::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--blue)); }
.def h4 { font-size: .92rem; font-weight: 700; margin-bottom: .35rem; }
.def p { font-size: .85rem; color: var(--text-2); line-height: 1.55; margin: 0; }

/* === Verdict Box === */
.verdict { background: var(--bg-card); border: 1px solid rgba(0,230,122,.18); border-radius: 14px; padding: 2.5rem; text-align: center; margin: 3rem 0; }
.verdict h2 { font-family: 'Dela Gothic One', cursive; font-size: 1.6rem; margin-bottom: .8rem; }
.verdict p { color: var(--text-2); font-size: .95rem; line-height: 1.7; max-width: 580px; margin: 0 auto 1.8rem; }

/* === CTA Section === */
.cta-section { text-align: center; padding: 5rem 2rem; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--accent-glow), transparent); pointer-events: none; }
.cta-section h2 { margin-bottom: .8rem; }
.cta-section p { color: var(--text-2); max-width: 480px; margin: 0 auto 2rem; }

/* === CTA Box (guide pages) === */
.cta { background: var(--bg-card); border: 1px solid rgba(0,230,122,.18); border-radius: 14px; padding: 2.5rem; text-align: center; margin: 3rem 0; }
.cta h2 { font-family: 'Dela Gothic One', cursive; font-size: 1.5rem; margin-bottom: .8rem; }
.cta p { color: var(--text-2); font-size: .93rem; line-height: 1.7; max-width: 520px; margin: 0 auto 1.5rem; }

/* === Footer === */
footer { position: relative; z-index: 1; text-align: center; padding: 2rem; border-top: 1px solid var(--border); color: var(--text-3); font-size: .78rem; }
footer a { color: var(--text-2); text-decoration: none; }
footer a:hover { color: var(--accent); }
.disclaimer { max-width: 680px; margin: .8rem auto 0; font-size: .7rem; color: var(--text-3); line-height: 1.5; }

/* === Animations === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero > * { animation: fadeUp .5s ease-out both; }
.hero > :nth-child(2) { animation-delay: .06s; }
.hero > :nth-child(3) { animation-delay: .12s; }
.hero > :nth-child(4) { animation-delay: .18s; }

/* === Responsive === */
@media (max-width: 768px) {
    .nav-links { display: none; }
}

/* === HubSpot Form Section === */
.form-section {
    position: relative; z-index: 1;
    max-width: 620px; margin: 0 auto; padding: 0 2rem 4rem;
}
.form-section .form-card {
    background: linear-gradient(165deg, #161638 0%, #1a1230 50%, #141430 100%);
    border: 1px solid rgba(168,85,247,.2); border-radius: 14px;
    padding: 2.5rem; position: relative; overflow: hidden;
    box-shadow: 0 0 80px rgba(168,85,247,.07), 0 0 40px rgba(0,230,122,.04), 0 4px 40px rgba(0,0,0,.5);
}
.form-section .form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #a855f7, #00e67a);
}
.form-section .form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
}
.form-section h2 {
    font-family: 'Dela Gothic One', cursive; font-size: 1.4rem;
    margin-bottom: .4rem; text-align: center;
}
.form-section .form-sub {
    color: var(--text-2); font-size: .9rem; text-align: center;
    margin-bottom: 2rem; line-height: 1.6;
}
.form-section .form-logos {
    display: flex; gap: 1.5rem; justify-content: center; align-items: center;
    margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
    font-size: .75rem; color: var(--text-3); font-weight: 500;
}
.form-section .form-logos span { white-space: nowrap; }

/* HubSpot form overrides */
.form-card .hs-form { font-family: 'DM Sans', sans-serif !important; }

.form-card .hs-form fieldset { max-width: 100% !important; }

.form-card .hs-form .hs-form-field { margin-bottom: 1.2rem; }

.form-card .hs-form label {
    font-size: .78rem !important; font-weight: 600 !important;
    color: var(--text-2) !important; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: .4rem !important; display: block;
}

.form-card .hs-form .hs-input,
.form-card .hs-form input[type="text"],
.form-card .hs-form input[type="email"],
.form-card .hs-form input[type="url"],
.form-card .hs-form input[type="number"],
.form-card .hs-form input[type="tel"],
.form-card .hs-form textarea,
.form-card .hs-form select {
    width: 100% !important;
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: .75rem 1rem !important;
    color: var(--text) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: .9rem !important;
    transition: border-color .2s !important;
    outline: none !important;
    -webkit-appearance: none !important;
}

.form-card .hs-form .hs-input:focus,
.form-card .hs-form input:focus,
.form-card .hs-form textarea:focus,
.form-card .hs-form select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

.form-card .hs-form .hs-input::placeholder,
.form-card .hs-form input::placeholder,
.form-card .hs-form textarea::placeholder {
    color: var(--text-3) !important;
}

.form-card .hs-form textarea {
    min-height: 100px !important; resize: vertical !important;
}

.form-card .hs-form select {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2385859e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    padding-right: 2.5rem !important;
}

.form-card .hs-form select option {
    background: var(--bg-card) !important;
    color: var(--text) !important;
}

/* Two-column layout for HubSpot fieldsets */
.form-card .hs-form fieldset.form-columns-2 {
    display: flex !important; gap: 1rem !important;
}
.form-card .hs-form fieldset.form-columns-2 .hs-form-field {
    flex: 1 !important;
}

/* Submit button */
.form-card .hs-form .hs-submit {
    margin-top: .5rem;
}
.form-card .hs-form .hs-button,
.form-card .hs-form input[type="submit"] {
    width: 100% !important;
    background: var(--accent) !important;
    color: var(--bg) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: .85rem 2rem !important;
    font-family: 'Dela Gothic One', cursive !important;
    font-size: .85rem !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all .2s !important;
}
.form-card .hs-form .hs-button:hover,
.form-card .hs-form input[type="submit"]:hover {
    background: #33ffaa !important;
    box-shadow: 0 0 24px var(--accent-glow) !important;
    transform: translateY(-1px) !important;
}

/* Error messages */
.form-card .hs-form .hs-error-msgs {
    list-style: none !important; padding: 0 !important; margin: .3rem 0 0 !important;
}
.form-card .hs-form .hs-error-msgs li label {
    color: var(--red) !important; font-size: .75rem !important;
    text-transform: none !important; letter-spacing: 0 !important;
}

/* Kill ALL list bullets in HubSpot forms */
.form-card ul,
.form-card ol,
.form-card li,
.form-card .hs-form ul,
.form-card .hs-form ol,
.form-card .hs-form li,
.form-card .hs-form .inputs-list,
.form-card .hs-form .inputs-list li,
.form-card .hs-form .hs-form-checkbox,
.form-card .hs-form .hs-form-booleancheckbox,
.form-card .hs-form .hs-form-radio {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.form-card li::before,
.form-card li::marker,
.form-card .hs-form li::before,
.form-card .hs-form li::marker {
    content: none !important;
    display: none !important;
    font-size: 0 !important;
}

/* Checkbox/radio styling */
.form-card .hs-form .inputs-list li {
    margin-bottom: .5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: .5rem !important;
}
.form-card .hs-form .inputs-list input[type="checkbox"],
.form-card .hs-form .inputs-list input[type="radio"] {
    width: 18px !important; height: 18px !important;
    min-width: 18px !important;
    accent-color: var(--accent) !important;
    cursor: pointer !important;
    margin: 0 !important;
}
.form-card .hs-form .inputs-list label {
    display: inline !important;
    font-size: .85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

/* Required asterisk */
.form-card .hs-form .hs-form-required { color: var(--red) !important; }

/* Legal/consent text */
.form-card .hs-form .legal-consent-container,
.form-card .hs-form .hs-richtext {
    font-size: .78rem !important; color: var(--text-3) !important;
    line-height: 1.5 !important;
}
.form-card .hs-form .legal-consent-container a {
    color: var(--accent) !important;
}

/* Success message */
.form-card .submitted-message {
    text-align: center; padding: 2rem 0;
    color: var(--accent) !important;
    font-size: 1.1rem !important;
    font-weight: 600;
}

/* === Pricing Modal === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: rgba(7,7,14,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}
.modal-overlay.active {
    display: flex !important;
}

.modal {
    background: #111122;
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    animation: modalIn .25s ease-out;
    box-shadow: 0 8px 60px rgba(0,0,0,.6);
}
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-close {
    position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
    background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px;
    color: var(--text-2); font-size: 1.2rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,.08); color: var(--text); border-color: var(--accent); }

.modal-header {
    padding: 2rem 2rem 0; text-align: center;
}
.modal-header h2 {
    font-family: 'Dela Gothic One', cursive; font-size: 1.3rem;
    margin-bottom: .3rem;
}
.modal-header p { color: var(--text-2); font-size: .85rem; margin-bottom: .2rem; }
.modal-header .volume-note {
    font-size: .72rem; color: var(--text-3); margin-top: .4rem;
}

.pricing-table { padding: 1.5rem 2rem 2rem; }

.pricing-group {
    margin-bottom: 1.2rem;
}
.pricing-group-label {
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--text-3); margin-bottom: .5rem;
    padding-bottom: .4rem; border-bottom: 1px solid var(--border);
}

.pricing-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0; border-bottom: 1px solid rgba(26,26,46,.4);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .pr-name { font-size: .88rem; color: var(--text); font-weight: 500; }
.pricing-row .pr-price { font-family: 'Dela Gothic One', cursive; font-size: .9rem; color: var(--accent); }
.pricing-row .pr-price.dim { color: var(--text-3); font-family: 'DM Sans', sans-serif; font-size: .8rem; }

.pricing-footer {
    padding: 0 2rem 2rem; text-align: center;
}
.pricing-footer .pricing-range {
    background: rgba(0,230,122,.06); border: 1px solid rgba(0,230,122,.15);
    border-radius: 10px; padding: 1rem 1.5rem; margin-bottom: 1.2rem;
}
.pricing-footer .pricing-range .label-sm {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--text-2); margin-bottom: .2rem;
}
.pricing-footer .pricing-range .range-price {
    font-family: 'Dela Gothic One', cursive; font-size: 1.6rem; color: var(--accent);
}
.pricing-footer .pricing-range .range-desc {
    font-size: .78rem; color: var(--text-3);
}
.pricing-footer .pricing-note {
    font-size: .75rem; color: var(--text-3); margin-top: .8rem; line-height: 1.5;
}

@media (max-width: 480px) {
    .modal { margin: 1rem; }
    .modal-header, .pricing-table, .pricing-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
