/* 
   INTISARI AUTOCUT - PREMIUM STYLE SYSTEM
   Design Specifications: Premium Dark Mode & High Conversion Layout
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-darker: #05070c;
    --bg-dark: #0b0f19;
    --card-bg: rgba(30, 41, 59, 0.5);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary: #10b981; /* Neon Emerald */
    --primary-glow: rgba(16, 185, 129, 0.3);
    --cyan: #06b6d4; /* Electric Blue */
    --cyan-glow: rgba(6, 182, 212, 0.3);
    --gold: #f59e0b; /* Amber Gold */
    --gold-glow: rgba(245, 158, 11, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

section {
    padding: 6rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
}

.glow-text {
    text-shadow: 0 0 20px var(--primary-glow);
}

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

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* --- Cards & Glassmorphism --- */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card.glow-hover-emerald:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.glass-card.glow-hover-cyan:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

/* --- Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* --- Hero Section --- */
.hero {
    min-h: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 60%), 
                radial-gradient(circle at 10% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                var(--bg-darker);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Compare Video Mockup --- */
.compare-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.1);
}

.compare-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.compare-overlay-horizontal {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 90%;
    height: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #fff;
}

.face-box {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: track-face 4s infinite ease-in-out;
}

.face-box::before {
    content: 'FACE TRACKED';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-darker);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    white-space: nowrap;
}

@keyframes track-face {
    0%, 100% { top: 40%; left: 35%; }
    25% { top: 43%; left: 20%; }
    50% { top: 38%; left: 55%; }
    75% { top: 45%; left: 45%; }
}

/* --- Problem & Agitation Grid --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.problem-card {
    border-left: 4px solid #ef4444;
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fca5a5;
}

.problem-card h3 i {
    color: #ef4444;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.feature-card.glow-hover-cyan .icon-box {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* --- Terminal Command Mockup --- */
.terminal-card {
    background: #020408 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-family: var(--font-mono);
    max-width: 700px;
    margin: 4rem auto 0 auto;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.terminal-header {
    background: #0f172a;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.terminal-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: auto;
    margin-right: auto;
}

.terminal-body {
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
}

.terminal-prompt {
    color: var(--primary);
    font-weight: 700;
}

.terminal-command {
    color: #ffffff;
    font-weight: 500;
}

.terminal-copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    align-self: center;
}

.terminal-copy-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* --- Pricing Section --- */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.gold-card {
    border: 2px solid var(--gold);
    position: relative;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.pricing-card.gold-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 2.5rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.price-original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features-list li i {
    font-size: 1.1rem;
}

.pricing-features-list li i.fa-circle-check {
    color: var(--primary);
}

.pricing-features-list li i.fa-circle-xmark {
    color: #ef4444;
}

.pricing-features-list li.pro-feature i.fa-circle-check {
    color: var(--gold);
}

/* Compliance Product Description Card */
.compliance-prod-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    text-align: left;
}

.compliance-prod-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-prod-card ul {
    list-style: none;
    padding-left: 0;
}

.compliance-prod-card li {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-prod-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    position: relative;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    font-size: 1rem;
    color: #fff;
}

.author-info p {
    font-size: 0.8rem;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

/* --- Testimonials Visual Gallery --- */
.testi-gallery-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.testi-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-img-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.testi-img-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.testi-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #020408;
}

.testi-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.testi-img-card:hover .testi-img-wrapper img {
    transform: scale(1.03);
}

.testi-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 12, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.testi-img-card:hover .testi-img-overlay {
    opacity: 1;
}

.testi-zoom-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(6, 182, 212, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    transform: scale(0.8);
    transition: transform var(--transition-normal);
}

.testi-img-card:hover .testi-zoom-icon {
    transform: scale(1);
}

.testi-img-info {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testi-img-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.testi-img-info p {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 8, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    aspect-ratio: 9/16;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.25rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: #ef4444;
}

@media (max-width: 768px) {
    .testi-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testi-gallery {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.5);
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* --- Footer & Contact Support --- */
footer {
    background: #020408;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 450px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* --- Floating WhatsApp Widget --- */
.wa-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.wa-widget:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .problem-grid, .features-grid, .pricing-container, .testimonials-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-grid {
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* --- Checkout Modal & Form Styles --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 8, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    padding: 2.5rem !important;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: #ef4444;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-group select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
}


