/* CreatorFlow Website Styles */

/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --dark: #1e1e2e;
    --dark-light: #2d2d3d;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', 'Monaco', 'Consolas', monospace;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

code {
    font-family: var(--font-mono);
    background: var(--gray-200);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    flex: 1;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background: var(--gray-300);
    color: var(--gray-800);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.125rem;
}

/* ===== Features Grid ===== */
.features {
    padding: 5rem 0;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--white);
    padding: 5rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ===== Download Section ===== */
.download-section {
    padding: 3rem 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.download-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.download-card.recommended {
    border: 2px solid var(--primary);
    position: relative;
}

.download-card.recommended::before {
    content: 'Recommended';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.os-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.download-card .version {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.download-card .requirements {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}

.price-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list .check {
    color: var(--secondary);
    font-weight: 600;
}

.guarantee {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--white);
    padding: 5rem 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
}

.trial-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.trial-note a {
    color: var(--white);
    text-decoration: underline;
}

/* ===== Checkout Section ===== */
.checkout-section {
    padding: 3rem 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.checkout-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.checkout-summary h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-summary h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.product-summary > p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.included-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.included-features li {
    padding: 0.375rem 0;
    color: var(--gray-600);
}

.price-display {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    text-align: center;
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.price-display .price-note {
    color: var(--gray-500);
}

.checkout-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.help-text {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.secure-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.guarantee-box {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    text-align: center;
}

.guarantee-box h4 {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.guarantee-box p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== Success Page ===== */
.success-section {
    padding: 4rem 0;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.next-steps {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.next-steps .step {
    display: flex;
    gap: 1rem;
    text-align: left;
    padding: 0;
}

.next-steps .step-number {
    flex-shrink: 0;
    margin: 0;
}

.next-steps .step h3 {
    margin-bottom: 0.25rem;
}

.help-box {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.help-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.account-link {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===== Account Section ===== */
.account-lookup {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.lookup-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 450px;
    width: 100%;
}

.lookup-card h2 {
    margin-bottom: 0.5rem;
}

.lookup-card > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.lookup-form {
    margin-bottom: 1rem;
}

/* ===== Licenses Section ===== */
.licenses-section {
    padding: 2rem 0;
}

.licenses-grid {
    display: grid;
    gap: 1.5rem;
}

.license-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.license-key {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.license-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #dcfce7;
    color: #166534;
}

.status-suspended {
    background: #fef3c7;
    color: #92400e;
}

.status-revoked {
    background: #fee2e2;
    color: #991b1b;
}

.license-info {
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
}

.info-row .label {
    color: var(--gray-500);
}

.activations-list {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.activations-list h4 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.activation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.activation-item:last-child {
    border-bottom: none;
}

.machine-name {
    font-weight: 500;
}

.last-verified {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.deactivate-form {
    margin: 0;
}

.license-actions {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.empty-state p {
    margin-bottom: 1rem;
    color: var(--gray-500);
}

/* ===== Help Section ===== */
.help-section {
    padding: 2rem 0;
    text-align: center;
}

.help-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.help-section p {
    color: var(--gray-600);
}

/* ===== Alerts ===== */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* ===== Docs Section ===== */
.docs-section {
    padding: 3rem 0;
}

.docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.docs-sidebar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.docs-sidebar h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.docs-nav {
    list-style: none;
}

.docs-nav li {
    margin-bottom: 0.25rem;
}

.docs-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.docs-nav a:hover,
.docs-nav a.active {
    background: var(--gray-100);
    color: var(--primary);
}

.docs-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.docs-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.docs-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.docs-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.docs-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.docs-content ul, .docs-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.docs-content li {
    margin-bottom: 0.5rem;
}

.docs-content pre {
    background: var(--dark);
    color: var(--gray-300);
    padding: 1rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin-bottom: 1rem;
}

.docs-content pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
}

/* ===== Error Page ===== */
.error-section {
    padding: 5rem 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--gray-300);
    line-height: 1;
}

.error-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.error-section p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* ===== Support Section ===== */
.support-section {
    padding: 3rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    margin-bottom: 0.5rem;
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 150px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ===== License Details ===== */
.license-details-section {
    padding: 2rem 0;
}

.license-details-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--gray-500);
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
}

/* ===== Cancelled Page ===== */
.cancelled-section {
    padding: 4rem 0;
}

.cancelled-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cancelled-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cancelled-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cancelled-container p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.cancelled-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .nav.active {
        display: flex;
        padding: 1rem 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

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

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

    .docs-sidebar {
        position: static;
    }

    .price .amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .cancelled-actions {
        flex-direction: column;
    }
}
