/* ApexSaaS Premium Stylesheet */
:root {
    --bg-dark: 240 10% 3.9%;
    --bg-card: 240 10% 6%;
    --primary: 262.1 83.3% 57.8%; /* Purple */
    --primary-glow: 263 90% 60%;
    --accent: 180 100% 40%; /* Teal */
    --accent-glow: 180 100% 50%;
    --text-main: 0 0% 98%;
    --text-muted: 240 5% 64.9%;
    --border: 240 3.7% 15.9%;
    --border-hover: 240 3.7% 25%;
    --success: 142.1 76.2% 36.3%;
    --warning: 38 92% 50%;
    --danger: 346.8 77.2% 49.8%;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: hsl(var(--bg-dark));
    color: hsl(var(--text-main));
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* Background Spotlights */
.glow-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.glow-left {
    background: radial-gradient(circle, hsl(var(--primary)) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.glow-right {
    background: radial-gradient(circle, hsl(var(--accent)) 0%, transparent 70%);
    top: 300px;
    right: -200px;
}

/* Typography & Gradient Text */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--text-main)) 30%, hsl(var(--primary)) 70%, hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-accent {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 40px hsla(var(--primary), 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    padding: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
    color: #fff;
    box-shadow: 0 4px 20px hsla(var(--primary), 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsla(var(--primary), 0.5);
    background: linear-gradient(135deg, hsl(var(--primary-glow)), hsl(var(--accent-glow)));
}

.btn-secondary {
    background-color: hsla(240, 4%, 10%, 0.7);
    color: hsl(var(--text-main));
    border-color: hsl(var(--border));
}

.btn-secondary:hover {
    background-color: hsla(240, 4%, 15%, 0.8);
    border-color: hsl(var(--border-hover));
    transform: translateY(-2px);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: hsla(var(--bg-dark), 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--text-main));
    text-decoration: none;
}

.logo-icon {
    color: hsl(var(--primary));
    width: 28px;
    height: 28px;
}

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

.nav-link {
    color: hsl(var(--text-muted));
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: hsl(var(--text-main));
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: hsl(var(--text-main));
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(var(--primary), 0.15);
    border: 1px solid hsla(var(--primary), 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--text-main));
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--accent));
    box-shadow: 0 0 10px hsl(var(--accent));
    animation: pulse 1.5s infinite alternate;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: hsl(var(--text-muted));
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.icon-play {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.hero-social-proof p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--text-muted));
    margin-bottom: 1rem;
}

.social-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: hsl(var(--text-muted));
    font-weight: 600;
    font-size: 0.95rem;
}

.logo-item i {
    width: 18px;
    height: 18px;
    color: hsl(var(--accent));
}

/* Hero Mockup Styling */
.hero-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.mockup-frame {
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px hsla(var(--primary), 0.1);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: var(--transition);
}

.mockup-frame:hover {
    transform: rotateY(-2deg) rotateX(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px hsla(var(--accent), 0.15);
}

.mockup-header {
    background-color: #0b0b0f;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: hsl(var(--danger)); }
.dot.yellow { background-color: hsl(var(--warning)); }
.dot.green { background-color: hsl(var(--success)); }

.mockup-url {
    background-color: #17171f;
    border-radius: 4px;
    padding: 0.2rem 1.5rem;
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
    margin-left: 2rem;
    flex-grow: 0.6;
    text-align: center;
}

.mockup-content {
    display: grid;
    grid-template-columns: 60px 1fr;
    height: 280px;
}

.mock-sidebar {
    background-color: #0b0b0f;
    border-right: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    gap: 1.25rem;
}

.side-item {
    color: hsl(var(--text-muted));
    cursor: pointer;
    transition: var(--transition);
    padding: 0.25rem;
}

.side-item.active, .side-item:hover {
    color: hsl(var(--primary));
}

.side-item i {
    width: 20px;
    height: 20px;
}

.mock-main {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.mock-badge {
    background-color: hsla(142.1, 76.2%, 36.3%, 0.2);
    color: #4ade80;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    padding: 0 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.chart-bar-y {
    width: 12%;
    height: var(--height);
    background-color: hsla(var(--primary), 0.3);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: height 1s ease-in-out;
    cursor: pointer;
}

.chart-bar-y.active, .chart-bar-y:hover {
    background: linear-gradient(to top, hsl(var(--primary)), hsl(var(--accent)));
    box-shadow: 0 0 15px hsla(var(--accent), 0.5);
}

.mock-footer-row {
    display: flex;
    gap: 1rem;
}

.metric-card {
    background-color: #121217;
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    flex: 1;
}

.card-label {
    font-size: 0.7rem;
    color: hsl(var(--text-muted));
}

.card-val {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #4ade80;
}

/* Sections General */
section {
    padding: 80px 0;
}

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

.section-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: hsl(var(--accent));
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: hsl(var(--text-muted));
}

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

.feature-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--border-hover));
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-box i {
    width: 24px;
    height: 24px;
}

.pink-glow {
    background-color: rgba(219, 39, 119, 0.15);
    color: #ec4899;
}

.cyan-glow {
    background-color: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.purple-glow {
    background-color: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: hsl(var(--text-muted));
    font-size: 0.95rem;
}

/* Pricing Switcher Toggle */
.billing-switcher-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.switch-label {
    font-size: 0.95rem;
    color: hsl(var(--text-muted));
    transition: var(--transition);
}

.switch-label.active {
    color: hsl(var(--text-main));
    font-weight: 600;
}

.billing-switch {
    width: 50px;
    height: 26px;
    border-radius: 20px;
    background-color: hsl(var(--border));
    border: none;
    cursor: pointer;
    position: relative;
    padding: 3px;
    transition: var(--transition);
}

.billing-switch:hover {
    background-color: hsl(var(--border-hover));
}

.switch-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(var(--text-main));
    position: absolute;
    left: 3px;
    transition: var(--transition);
}

.billing-switch.yearly-active {
    background-color: hsl(var(--primary));
}

.billing-switch.yearly-active .switch-dot {
    left: 27px;
}

.save-badge {
    background-color: hsl(var(--accent));
    color: #0b0b0f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

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

.pricing-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: hsl(var(--border-hover));
}

.pricing-card.popular {
    border: 2px solid hsl(var(--primary));
    box-shadow: 0 10px 30px hsla(var(--primary), 0.15);
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

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

.plan-price .price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.plan-price .duration {
    color: hsl(var(--text-muted));
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--text-main));
}

.plan-features li.disabled {
    color: hsl(var(--text-muted));
}

.check-icon {
    color: hsl(var(--accent));
    width: 18px;
    height: 18px;
}

.x-icon {
    color: hsl(var(--danger));
    width: 18px;
    height: 18px;
}

/* Testimonial Slider */
.testimonial-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
    color: #f59e0b;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.client-details {
    text-align: left;
}

.client-name {
    font-weight: 600;
}

.client-role {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    color: hsl(var(--text-main));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    border-color: hsl(var(--border-hover));
    background-color: #121217;
    color: hsl(var(--accent));
}

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

.faq-item {
    background-color: hsl(var(--bg-card));
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: hsl(var(--border-hover));
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(var(--text-main));
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: hsl(var(--text-muted));
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: hsl(var(--text-muted));
    font-size: 0.95rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: hsl(var(--accent));
}

/* Contact Card & Form */
.contact-section {
    padding-bottom: 120px;
}

.contact-card {
    background: linear-gradient(135deg, #0b0b0f, #121217);
    border: 1px solid hsl(var(--border));
    border-radius: 16px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, hsla(var(--primary), 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: hsl(var(--text-muted));
    margin-bottom: 2.5rem;
}

.contact-features-check {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-features-check span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.contact-features-check i {
    width: 20px;
    height: 20px;
    color: hsl(var(--accent));
}

.contact-form-wrapper {
    background-color: hsla(240, 10%, 3.9%, 0.6);
    border: 1px solid hsl(var(--border));
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--text-muted));
}

.form-group input, .form-group select {
    background-color: #121217;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: hsl(var(--text-main));
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 10px hsla(var(--primary), 0.25);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Footer styling */
.footer {
    border-top: 1px solid hsl(var(--border));
    background-color: #0b0b0f;
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand p {
    color: hsl(var(--text-muted));
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col h4 {
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-links-col a:hover {
    color: hsl(var(--accent));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    color: hsl(var(--text-muted));
    font-size: 0.85rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* AI Copywriter Section */
.ai-copywriter-section {
    background-color: hsl(var(--bg-card));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.ai-playground-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-card {
    background-color: #0b0b0f;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 2rem;
}

.ai-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-card h3 i {
    color: hsl(var(--accent));
}

.ai-input-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ai-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--text-muted));
}

.ai-input-group input,
.ai-input-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: #121217;
    border: 1px solid hsl(var(--border));
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.ai-input-group input:focus,
.ai-input-group select:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 10px hsla(var(--primary), 0.25);
}

.ai-output-card {
    background-color: #0b0b0f;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 310px;
}

.ai-output-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-status-badge {
    font-size: 0.75rem;
    background-color: rgba(6, 182, 212, 0.15);
    color: hsl(var(--accent));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.ai-output-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ai-output-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.ai-headline-label { color: hsl(var(--accent)); }
.ai-subheading-label { color: hsl(var(--primary-glow)); }
.ai-cta-label { color: hsl(var(--success)); }

.ai-output-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    min-height: 40px;
    color: #fff;
    transition: var(--transition);
}

.ai-output-subtext {
    font-size: 0.95rem;
    color: hsl(var(--text-muted));
    min-height: 40px;
    transition: var(--transition);
}

.ai-output-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    min-height: 20px;
    transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .social-logos {
        justify-content: center;
    }
    
    .mockup-frame {
        transform: none !important;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: hsl(var(--bg-dark));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        border-top: 1px solid hsl(var(--border));
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
