/* GrowQuick.ai - Premium Custom CSS */

:root {
    --bg-dark: #07070a;
    --bg-card: rgba(18, 18, 24, 0.7);
    --bg-card-hover: rgba(26, 26, 36, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.16);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-glow: rgba(79, 70, 229, 0.15);
    
    --accent-blue: #3b82f6;
    --accent-violet: #8b5cf6;
    --accent-emerald: #10b981;
    --accent-pink: #ec4899;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

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

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

/* Background Grids & Orbs */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

.orb-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-blue) 0%, var(--accent-violet) 100%);
}

.orb-2 {
    top: 600px;
    left: -200px;
    background: radial-gradient(circle, var(--accent-pink) 0%, var(--primary) 100%);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

/* Typography & Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-violet) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color-hover);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-full-width {
    width: 100%;
    padding: 12px;
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(7, 7, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
}

.logo-gq {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 800;
}

.logo-text {
    color: var(--text-primary);
}

.accent-dot {
    color: var(--accent-violet);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.play-icon {
    margin-right: 8px;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    margin-right: -8px;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-proof-text strong {
    color: var(--text-primary);
}

/* Sections Core Layout */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Interactive Simulator Section */
.demo-section {
    padding: 80px 0;
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.simulator-card {
    background-color: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* LinkedIn Post Card */
.linkedin-post-card {
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 12px;
}

.user-info .user-name {
    font-size: 1rem;
    font-weight: 600;
}

.user-info .user-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.user-info .post-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.li-logo {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0a66c2;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 3px;
}

.post-content {
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.post-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 16px;
}

.post-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.stats-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    font-size: 0.9rem;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.action-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.action-btn.active {
    color: var(--accent-blue);
}

.comment-input-area {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.input-wrapper {
    flex: 1;
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 8px 16px;
    font-size: 0.85rem;
}

.input-wrapper button {
    background-color: var(--accent-blue);
    border: none;
    color: white;
    padding: 0 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.input-wrapper button:hover {
    background-color: #2563eb;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.comment-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.comment-body {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    flex: 1;
}

.comment-user {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.comment-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* LinkedIn DM Card */
.linkedin-dm-card {
    height: 520px;
    border-left: 1px solid var(--border-color);
}

.dm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
}

.dm-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.dm-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-user-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.dm-status {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
}

.dm-actions {
    display: flex;
    gap: 16px;
    color: var(--text-secondary);
    cursor: pointer;
}

.dm-messages-container {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dm-system-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.05em;
    margin: 8px 0;
}

.dm-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.dm-message.received {
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.dm-message.sent {
    background-color: var(--accent-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.dm-message.typing-indicator {
    background-color: rgba(255, 255, 255, 0.04);
    align-self: flex-start;
    padding: 12px 16px;
}

.typing-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    margin-right: 3px;
    animation: wave 1.3s linear infinite;
}

.typing-dot:nth-child(2) { animation-delay: -1.1s; }
.typing-dot:nth-child(3) { animation-delay: -0.9s; }

.dm-input-area {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.02);
}

.dm-input-area input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.dm-send-btn {
    background-color: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Features Bento Grid Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-hover);
    background-color: var(--bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-card.large-feature {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-icon-wrapper.blue-grad { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.feature-icon-wrapper.purple-grad { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.feature-icon-wrapper.emerald-grad { background: linear-gradient(135deg, #10b981, #047857); }
.feature-icon-wrapper.pink-grad { background: linear-gradient(135deg, #ec4899, #be185d); }

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

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.feature-preview {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.badge-pill {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-pill.success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
}

.arrow-down {
    color: var(--text-muted);
}

.preview-sequence {
    align-items: stretch;
    justify-content: space-around;
}

.seq-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-num {
    background-color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.seq-line {
    width: 2px;
    height: 24px;
    background-color: var(--border-color);
    margin-left: 11px;
}

/* ROI Calculator Section */
.roi-section {
    padding: 80px 0;
    background: radial-gradient(circle at 70% 50%, var(--primary-glow), transparent 60%);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.roi-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.calculator-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
}

.input-group {
    margin-bottom: 28px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.label-wrapper label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.value-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.1);
    padding: 2px 10px;
    border-radius: 6px;
}

/* Custom Range Input */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.number-input-prefix {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 12px;
}

.number-input-prefix span {
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.number-input-prefix input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    width: 80px;
    font-weight: 600;
    font-size: 0.95rem;
}

.roi-results-card {
    background-color: rgba(15, 15, 25, 0.85);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 36px;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
    backdrop-filter: blur(10px);
}

.results-header {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 24px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-item.full-width-result {
    grid-column: span 2;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.result-number.highlighted {
    font-size: 2.8rem;
    color: var(--accent-emerald);
}

.result-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.discount-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

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

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

.pricing-card.popular {
    border: 2px solid var(--primary);
    background-color: rgba(14, 14, 26, 0.85);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-violet) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.plan-header {
    margin-bottom: 28px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: baseline;
}

.price-container .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

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

.price-container .billing-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li span {
    color: var(--accent-emerald);
    font-weight: bold;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
}

.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.faq-item.active .faq-content {
    max-height: 300px; /* arbitrary height to slide down */
    padding-bottom: 20px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s;
}

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

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 0;
}

.cta-banner-card {
    background: linear-gradient(135deg, rgba(14, 14, 26, 0.9) 0%, rgba(30, 27, 75, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto 12px;
}

.form-group {
    display: flex;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.form-group:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.form-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 8px 16px;
    font-size: 0.95rem;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.success-message-hidden {
    display: none;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 16px;
    animation: fadeIn 0.3s forwards;
}

.success-message-show {
    display: block !important;
}

/* Contact Form Custom Styles */
.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 10px 16px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    background-color: rgba(5, 5, 8, 0.9);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 320px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links-grid {
    display: flex;
    gap: 64px;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.link-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.link-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes wave {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Scroll Fade Animation utility */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Adjustments */
@media (max-width: 968px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .simulator-wrapper {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.large-feature {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links-grid {
        gap: 32px;
        justify-content: space-between;
    }
}
