/* ==================== CSS Variables ==================== */
:root {
    --primary-purple: #8A50BE;
    --primary-cyan: #27ADE2;
    --gradient-main: linear-gradient(135deg, #8A50BE 0%, #27ADE2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(138, 80, 190, 0.1) 0%, rgba(39, 173, 226, 0.1) 100%);

    --text-dark: #1a1a2e;
    --text-medium: #4a4a6a;
    --text-light: #6b6b8a;
    --bg-white: #ffffff;
    --bg-light: #f8f9ff;
    --bg-alt: #f0f4ff;

    --shadow-sm: 0 2px 8px rgba(138, 80, 190, 0.08);
    --shadow-md: 0 4px 20px rgba(138, 80, 190, 0.12);
    --shadow-lg: 0 8px 30px rgba(138, 80, 190, 0.15);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar height */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.inline-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.inline-link:hover {
    border-bottom-color: var(--primary-purple);
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-hub-link {
    background: var(--gradient-soft);
    padding: 8px 16px !important;
    border-radius: 8px;
    border: 1px solid rgba(138, 80, 190, 0.2);
    font-weight: 600 !important;
    color: var(--primary-purple) !important;
    transition: var(--transition-smooth);
}

.nav-hub-link:hover {
    background: var(--gradient-main);
    color: white !important;
    border-color: transparent;
    transform: translateY(-1px);
}

.nav-hub-link::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ==================== Buttons ==================== */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero {
    background: white;
    color: var(--primary-purple);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(138, 80, 190, 0.25);
}

.btn-pricing {
    width: 100%;
    text-align: center;
    background: var(--gradient-main);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    opacity: 0.05;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 80, 190, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 173, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 0.85fr 1.6fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(138, 80, 190, 0.25), 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    transform: scale(1.18);
    transform-origin: left center;
    border: 1px solid rgba(138, 80, 190, 0.1);
}

/* ==================== Hero Centered Layout ==================== */
.hero-centered .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
}

.hero-centered .hero-image {
    margin-top: 48px;
    max-width: 800px;
    width: 100%;
}

.hero-centered .hero-image img {
    transform: none;
    transform-origin: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-soft);
    padding: 8px 20px 8px 10px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(138, 80, 190, 0.2);
    animation: fadeInLeft 0.6s ease;
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
}

.hero-badge span {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-secondary {
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.btn-hero-secondary:hover {
    background: var(--gradient-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    animation: fadeInLeft 1s ease;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== Features Overview Grid ==================== */
.features-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-overview-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(138, 80, 190, 0.08);
}

.feature-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.feature-overview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-overview-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

/* ==================== Sections ==================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Features Showcase ==================== */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-showcase-item.feature-showcase-reverse {
    direction: rtl;
}

.feature-showcase-item.feature-showcase-reverse > * {
    direction: ltr;
}

.feature-showcase-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-showcase-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-highlights li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.feature-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 16px;
}

.feature-showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-showcase-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    border: 1px solid rgba(138, 80, 190, 0.1);
    transition: var(--transition-smooth);
}

.feature-showcase-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature-showcase-image-notifications {
    flex-direction: column;
    gap: 16px;
}

.feature-showcase-image-notifications img {
    max-width: 100%;
}

/* Wide screenshot - for tool windows and wide UI elements */
.feature-showcase-item:has(.feature-showcase-image-wide) {
    grid-template-columns: 1fr;
    text-align: center;
}

.feature-showcase-item:has(.feature-showcase-image-wide) .feature-showcase-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature-showcase-item:has(.feature-showcase-image-wide) .feature-highlights {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px 48px;
    justify-content: center;
    text-align: left;
}

.feature-showcase-image-wide {
    margin-top: 32px;
}

.feature-showcase-image-wide img {
    max-width: 100%;
    width: 100%;
}

/* ==================== How It Works ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.step-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==================== Setup Guide ==================== */
.setup-guide {
    margin-top: 80px;
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.setup-guide-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.setup-content-vertical {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.setup-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.setup-step-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.setup-step-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.setup-step-text p:last-child {
    margin-bottom: 0;
}

.setup-step-image {
    text-align: center;
}

.setup-step-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(138, 80, 190, 0.1);
    transition: var(--transition-smooth);
}

.setup-step-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* ==================== Features ==================== */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.feature-column {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-subheading {
    font-size: 18px;
    color: var(--primary-cyan);
    margin-bottom: 32px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.feature-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== Pricing ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

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

.pricing-card-featured::before {
    content: 'Save 20%';
    position: absolute;
    top: -12px;
    right: 24px;
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-description {
    text-align: center;
    color: var(--text-medium);
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 500;
}

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

.pricing-features li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 18px;
}

.pricing-features li.pricing-feature-warning {
    color: #b45309;
}

.pricing-features li.pricing-feature-warning::before {
    content: '⚠';
    color: #f59e0b;
}

/* Common Features Section */
.pricing-features-common {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-features-common h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.common-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    text-align: left;
}

.common-features-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.common-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Hub Value Box in Pricing */
.hub-value-box {
    border: 2px solid var(--primary-purple);
    background: linear-gradient(135deg, rgba(138, 80, 190, 0.03) 0%, rgba(39, 173, 226, 0.03) 100%);
}

.hub-value-box h3 {
    color: var(--text-dark);
    -webkit-text-fill-color: var(--text-dark);
    background: none;
}

.hub-value-lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hub-value-lead strong {
    color: #dc2626;
}

.hub-value-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hub-value-text strong {
    color: var(--primary-purple);
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-main);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

#jb-marketplace-widget {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    max-height: 270px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

#jb-marketplace-widget iframe {
    border-radius: var(--border-radius) !important;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand img {
    width: 32px;
    height: 32px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== Animations ==================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .features-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .setup-step {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-showcase-item.feature-showcase-reverse {
        direction: ltr;
    }

    .feature-showcase-content {
        text-align: center;
    }

    .feature-highlights {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .btn-hero,
    .btn-hero-secondary {
        padding: 14px 32px;
        font-size: 16px;
    }

    .features-overview-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

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

    .feature-column {
        padding: 32px 24px;
    }

    .feature-showcase-item {
        padding: 32px 24px;
    }

    .feature-showcase-content h3 {
        font-size: 24px;
    }

    .features-showcase {
        gap: 48px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .setup-guide {
        margin-top: 60px;
        padding: 32px 24px;
    }

    .setup-guide-title {
        font-size: 28px;
    }

    .setup-step-text h4 {
        font-size: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .step-number {
        font-size: 36px;
    }

    .price-amount {
        font-size: 42px;
    }
}

/* ==================== Dual Feature Section (Individuals & Teams) ==================== */
.dual-feature-block {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.dual-feature-block:last-child {
    margin-bottom: 0;
}

.dual-feature-block.dual-feature-reverse {
    grid-template-columns: 1fr 1.4fr;
}

.dual-feature-block.dual-feature-reverse .dual-feature-image {
    order: 2;
}

.dual-feature-block.dual-feature-reverse .dual-feature-content {
    order: 1;
}

.dual-feature-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(138, 80, 190, 0.1);
    transition: var(--transition-smooth);
}

.dual-feature-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(138, 80, 190, 0.2);
}

.dual-feature-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dual-feature-title {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.dual-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dual-feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 992px) {
    .dual-feature-block,
    .dual-feature-block.dual-feature-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dual-feature-block .dual-feature-image,
    .dual-feature-block.dual-feature-reverse .dual-feature-image {
        order: -1;
    }

    .dual-feature-block .dual-feature-content,
    .dual-feature-block.dual-feature-reverse .dual-feature-content {
        order: 0;
        text-align: center;
    }

    .dual-feature-title {
        font-size: 24px;
    }
}

/* Hub CTA */
.hub-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.hub-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hub {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-hub:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== Supported IDEs Grid ==================== */
.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-top: -40px;
    margin-bottom: 48px;
}

.ide-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.ide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.ide-card-icon {
    width: 64px;
    height: 64px;
}

.ide-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

@media (max-width: 768px) {
    .ide-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .ide-card {
        padding: 16px 12px;
    }

    .ide-card-icon {
        width: 48px;
        height: 48px;
    }

    .ide-card-name {
        font-size: 12px;
    }

    .section-subtitle {
        margin-top: -30px;
        margin-bottom: 32px;
        font-size: 16px;
    }
}

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

/* ==================== IDE Landing Pages ==================== */
.ide-hero .hero-content {
    text-align: left;
}

.ide-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--gradient-soft);
    padding: 12px 24px 12px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(138, 80, 190, 0.2);
}

.ide-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.ide-badge span {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 16px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

@media (max-width: 992px) {
    .ide-hero .hero-content {
        text-align: center;
    }

    .ide-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .ide-badge {
        padding: 10px 20px 10px 12px;
        gap: 12px;
    }

    .ide-icon {
        width: 40px;
        height: 40px;
    }

    .ide-badge span {
        font-size: 14px;
    }
}