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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    color: #1f2937;
    min-height: 100vh;
}

@media (prefers-color-scheme: dark) {
    html, body {
        background: linear-gradient(135deg, #0f172a 0%, #1a202c 100%);
        color: #f3f4f6;
    }
}

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

.hero {
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .hero p {
        color: #9ca3af;
    }
}

.input-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 0 auto 3rem;
}

@media (prefers-color-scheme: dark) {
    .input-card {
        background: #1f2937;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (prefers-color-scheme: dark) {
    .input-group label {
        color: #9ca3af;
    }
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: monospace;
    margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
    .input-group input {
        background: #111827;
        border-color: #374151;
        color: #f3f4f6;
    }
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-group button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.input-group button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.score-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: dark) {
    .score-section {
        background: #1f2937;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
}

.score-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.score-bar {
    margin-bottom: 2.5rem;
}

.bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 14px;
}

.bar-label {
    font-weight: 600;
}

.bar-points {
    color: #3b82f6;
    font-weight: 700;
}

.bar-container {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .bar-container {
        background: #374151;
    }
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 999px;
    animation: fillBar 1.5s ease-out forwards;
}

.bar-fill.bar-1 { animation-delay: 0.1s; }
.bar-fill.bar-2 { animation-delay: 0.3s; }
.bar-fill.bar-3 { animation-delay: 0.5s; }
.bar-fill.bar-4 { animation-delay: 0.7s; }
.bar-fill.bar-5 { animation-delay: 0.9s; }

@keyframes fillBar {
    from { width: 0%; }
    to { width: var(--bar-width); }
}

.bar-detail {
    font-size: 12px;
    color: #6b7280;
    margin-top: 0.5rem;
}

@media (prefers-color-scheme: dark) {
    .bar-detail {
        color: #9ca3af;
    }
}

.result-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2.5rem;
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.result-info {
    font-size: 13px;
    opacity: 0.85;
}

.how-it-works {
    padding: 4rem 1.5rem;
    margin: 3rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-color-scheme: dark) {
    .section-subtitle {
        color: #9ca3af;
    }
}

.process-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: dark) {
    .process-step {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: white;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .process-step h3 {
        color: #f3f4f6;
    }
}

.process-step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    .process-step p {
        color: #9ca3af;
    }
}

.process-arrow {
    font-size: 24px;
    color: #3b82f6;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 1024px) {
    .process-arrow {
        display: none;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (prefers-color-scheme: dark) {
    .step {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .step p {
        color: #9ca3af;
    }
}

.features {
    padding: 4rem 1.5rem;
    background: transparent;
    margin: 3rem 0;
    border-radius: 12px;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.feature-card h3,
.feature-card h4 {
    font-size: 16px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .feature-card h3,
    .feature-card h4 {
        color: #f3f4f6;
    }
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .feature-card p {
        color: #9ca3af;
    }
}

/* FAQ */
.faq {
    padding: 4rem 1.5rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .faq-item {
        background: #1f2937;
        border-color: #374151;
    }
}

.faq-question {
    font-weight: 600;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    user-select: none;
}

.faq-question:hover {
    background: #f9fafb;
}

@media (prefers-color-scheme: dark) {
    .faq-question:hover {
        background: #111827;
    }
}

.faq-toggle {
    font-size: 20px;
    color: #3b82f6;
    transition: transform 0.3s;
}

.faq-toggle.open {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer.hidden {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .faq-answer {
        color: #9ca3af;
    }
}

/* DOMEIN VERKOPEN POPUP */
.offer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
}

.offer-popup.active {
    display: flex;
}

.offer-popup-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

@media (prefers-color-scheme: dark) {
    .offer-popup-content {
        background: #1f2937;
    }
}

.offer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6b7280;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-close:hover {
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .offer-close:hover {
        color: #f3f4f6;
    }
}

.offer-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2rem;
}

@media (prefers-color-scheme: dark) {
    .offer-subtitle {
        color: #9ca3af;
    }
}

.offer-form-group {
    margin-bottom: 1.5rem;
}

.offer-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (prefers-color-scheme: dark) {
    .offer-form-group label {
        color: #9ca3af;
    }
}

.offer-form-group input,
.offer-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

@media (prefers-color-scheme: dark) {
    .offer-form-group input,
    .offer-form-group textarea {
        background: #111827;
        border-color: #374151;
        color: #f3f4f6;
    }
}

.offer-form-group input:focus,
.offer-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.offer-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.offer-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.offer-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.offer-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.offer-success {
    text-align: center;
    padding: 2rem;
}

.offer-success-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.offer-success-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.offer-success-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .offer-success-text {
        color: #9ca3af;
    }
}

.offer-info-block {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.offer-info-domain {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.offer-info-label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.offer-info-value {
    font-size: 32px;
    font-weight: 900;
}

.offer-success-close {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.offer-success-close:hover {
    background: #2563eb;
}

.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
    .error {
        background: #7f1d1d;
        color: #fee2e2;
        border-color: #991b1b;
    }
}

/* LAADSCHERM */
.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.loading-screen.active {
    display: flex;
}

.loading-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (prefers-color-scheme: dark) {
    .loading-content {
        background: #1f2937;
    }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@media (prefers-color-scheme: dark) {
    .spinner {
        border-color: #374151;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .loading-text {
        color: #f3f4f6;
    }
}

.loading-subtext {
    font-size: 14px;
    color: #6b7280;
    margin-top: 0.5rem;
}

@media (prefers-color-scheme: dark) {
    .loading-subtext {
        color: #9ca3af;
    }
}

/* POPUP MODAL */
.result-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
}

.result-popup.active {
    display: flex;
}

.result-popup-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

@media (prefers-color-scheme: dark) {
    .result-popup-content {
        background: #1f2937;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6b7280;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .popup-close:hover {
        color: #f3f4f6;
    }
}

.popup-domain-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .popup-domain-title {
        color: #f3f4f6;
    }
}

.popup-result-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2.5rem;
}

.popup-result-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-result-value {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.popup-result-info {
    font-size: 12px;
    opacity: 0.85;
}

.popup-bars {
    margin-bottom: 2.5rem;
}

.popup-bar {
    margin-bottom: 2rem;
}

.popup-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 13px;
}

.popup-bar-label {
    font-weight: 600;
}

.popup-bar-points {
    color: #3b82f6;
    font-weight: 700;
}

.popup-bar-container {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .popup-bar-container {
        background: #374151;
    }
}

.popup-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 999px;
    animation: popup-fillBar 1.2s ease-out forwards;
}

@keyframes popup-fillBar {
    from {
        width: 0%;
    }
    to {
        width: var(--bar-width, 0%);
    }
}

.popup-bar-detail {
    font-size: 11px;
    color: #6b7280;
    margin-top: 0.4rem;
}

@media (prefers-color-scheme: dark) {
    .popup-bar-detail {
        color: #9ca3af;
    }
}

.popup-action {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
}

.popup-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    text-decoration: none;
}

@media (max-width: 600px) {
    .result-popup-content {
        padding: 2rem;
    }
    
    .popup-domain-title {
        font-size: 24px;
    }
    
    .popup-result-value {
        font-size: 36px;
    }
}

/* ===== HEADER/NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: transform 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    header {
        background: #111827;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

header.hide {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    width: auto;
}

.logo svg {
    height: 100%;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    nav a {
        color: #f3f4f6;
    }
}

nav a:hover {
    color: #3b82f6;
}

body {
    padding-top: 70px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 4rem 1.5rem;
    background: #f9fafb;
    margin: 3rem 0;
}

@media (prefers-color-scheme: dark) {
    .pricing-section {
        background: #111827;
    }
}

.pricing-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 1rem;
}

.pricing-section > p {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-color-scheme: dark) {
    .pricing-section > p {
        color: #9ca3af;
    }
}

.pricing-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pricing-explanation,
.pricing-examples {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: dark) {
    .pricing-card {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .pricing-card h3 {
        color: #f3f4f6;
    }
}

.pricing-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}

@media (prefers-color-scheme: dark) {
    .pricing-card p {
        color: #9ca3af;
    }
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breakdown-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

@media (prefers-color-scheme: dark) {
    .breakdown-item {
        background: #111827;
    }
}

.example-box {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

@media (prefers-color-scheme: dark) {
    .example-box {
        border-bottom-color: #374151;
    }
}

.example-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.example-header {
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.example-calc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6b7280;
}

@media (prefers-color-scheme: dark) {
    .calc-row {
        color: #9ca3af;
    }
}

.calc-row strong {
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .calc-row strong {
        color: #f3f4f6;
    }
}

.calc-value {
    font-weight: 700;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .calc-value {
        color: #f3f4f6;
    }
}

.calc-total {
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.75rem;
    font-weight: 700;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .calc-total {
        border-top-color: #374151;
        color: #f3f4f6;
    }
}

.calc-total .calc-value {
    color: #3b82f6;
}

/* ====== BUY DOMAIN PAGE ====== */
.input-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (prefers-color-scheme: dark) {
    .input-card {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (prefers-color-scheme: dark) {
    .form-group label {
        color: #f3f4f6;
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #1f2937;
    background: white;
}

@media (prefers-color-scheme: dark) {
    .form-group input,
    .form-group textarea {
        background: #111827;
        border-color: #374151;
        color: #f3f4f6;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
    .section-subtitle {
        color: #9ca3af;
    }
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

@media (prefers-color-scheme: dark) {
    .pricing-card {
        background: #1f2937;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

.pricing-card h3 {
    font-size: 20px;
    margin: 1rem 0 0 0;
    color: #1f2937;
}

@media (prefers-color-scheme: dark) {
    .pricing-card h3 {
        color: #f3f4f6;
    }
}

.pricing-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .pricing-card p {
        color: #9ca3af;
    }
}
