/* ===================================
   My Barnacle Buddy Website Styles
   Navy, Slate, White, Marine Accents
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --navy: #0F172A;
    --navy-light: #1E293B;
    --slate: #475569;
    --slate-light: #64748B;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --marine-blue: #0EA5E9;
    --marine-teal: #14B8A6;
    --marine-cyan: #06B6D4;
    --accent-orange: #F97316;
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Fonts */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============ NAVIGATION ============ */

.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid #E2E8F0;
    padding: var(--space-sm) 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--marine-blue);
}

.btn-nav {
    background: var(--marine-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--marine-cyan);
    transform: translateY(-2px);
}

/* ============ BUTTONS ============ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--marine-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--marine-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--marine-blue);
    border: 2px solid var(--marine-blue);
}

.btn-outline:hover {
    background: var(--marine-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ============ HERO SECTION ============ */

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    color: var(--marine-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    border: 1px solid var(--marine-cyan);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--slate-light);
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.hero-trust {
    text-align: center;
    margin-top: var(--space-md);
}

.hero-trust p {
    font-size: 1rem;
    color: var(--slate-light);
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--marine-cyan);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--slate-light);
}

/* ============ PROBLEM SECTION ============ */

.problem-section {
    padding: 3rem 0;
    background: var(--off-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.problem-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--slate);
    font-style: italic;
    font-size: 1.1rem;
}

/* ============ SOLUTION SECTION ============ */

.solution-section {
    padding: 3rem 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-lg);
    align-items: center;
}

.solution-visual {
    position: relative;
    overflow: visible;
}

.solution-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.solution-visual img:hover {
    transform: scale(1.5);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
    z-index: 100;
}

.solution-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.lead {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.solution-benefits {
    list-style: none;
    font-size: 1.1rem;
}

.solution-benefits li {
    color: var(--navy);
    padding: var(--space-xs) 0;
    line-height: 1.7;
}

.solution-benefits li strong {
    color: var(--marine-blue);
    font-weight: 700;
}

.solution-text h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.solution-text .btn {
    margin-top: var(--space-md);
}

.mockup-placeholder {
    background: linear-gradient(135deg, var(--marine-blue) 0%, var(--marine-cyan) 100%);
    border-radius: var(--radius-xl);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

/* ============ FEATURES SECTION ============ */

.features-section {
    padding: 2rem 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    border: 2px solid #e2e8f0;
}

.feature-card:hover {
    border-color: var(--marine-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--slate);
}

/* ============ REQUIREMENTS SECTION ============ */

.requirements-section {
    padding: 3rem 0;
    background: var(--off-white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.requirement-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s;
    border-top: 4px solid var(--marine-blue);
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.req-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.requirement-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.requirement-card ul {
    list-style: none;
    margin-left: 0;
}

.requirement-card ul li {
    padding: var(--space-xs) 0;
    color: var(--slate);
    line-height: 1.6;
}

.requirement-card ul li strong {
    color: var(--navy);
    font-weight: 700;
}

/* ============ PRICING SECTION ============ */

.pricing-section {
    padding: 3rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.pricing-card-featured {
    border-color: var(--marine-blue);
    border-width: 3px;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--marine-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 2px solid #E2E8F0;
    margin-bottom: var(--space-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
}

.price-period {
    font-size: 1.2rem;
    color: var(--slate);
}

.pricing-savings {
    color: var(--success);
    font-weight: 600;
    margin-top: var(--space-xs);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.pricing-features li {
    padding: var(--space-xs) 0;
    color: var(--navy);
}

.pricing-note {
    text-align: center;
    color: var(--slate);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

.pricing-comparison {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.pricing-comparison h3 {
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.comparison-item {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.comparison-label {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: var(--space-xs);
}

.comparison-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.comparison-value.highlight {
    color: var(--success);
    font-size: 2rem;
}

/* ============ CTA SECTION ============ */

.cta-section {
    background: linear-gradient(135deg, var(--marine-blue) 0%, var(--marine-teal) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: var(--space-sm);
}

/* ============ FAQ SECTION ============ */

.faq-section {
    padding: 3rem 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--marine-blue);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--slate);
}

/* ============ DEMO FORM SECTION ============ */

.demo-section {
    padding: 3rem 0;
    background: var(--navy);
    color: var(--white);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: start;
}

.demo-info h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.demo-benefits {
    list-style: none;
    font-size: 1.1rem;
    margin-top: var(--space-md);
}

.demo-benefits li {
    padding: var(--space-xs) 0;
}

.demo-form {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--marine-blue);
}

.form-note {
    text-align: center;
    color: var(--slate);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

/* ============ FOOTER ============ */

.footer {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-section h4 {
    margin-bottom: var(--space-sm);
    color: var(--marine-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--marine-cyan);
}

.footer-section li {
    padding: 0.3rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--navy-light);
    color: var(--slate-light);
}

/* ============ COMPARISON TABLE ============ */

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.comparison-col h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid #E2E8F0;
}

.comparison-col ul {
    list-style: none;
}

.comparison-col ul li {
    padding: var(--space-xs) 0;
    color: var(--slate);
    line-height: 1.6;
}

.comparison-col ul li:before {
    margin-right: 0.5rem;
}

/* ============ EXAMPLE STORY ============ */

.example-story {
    max-width: 900px;
    margin: 0 auto;
}

.example-story p {
    margin-bottom: var(--space-md);
}

/* ============ WORKFLOW SECTION ============ */

.workflow-section {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--marine-blue);
}

.workflow-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--marine-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.workflow-content {
    flex: 1;
}

.workflow-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.workflow-content > p {
    color: var(--slate);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.workflow-details {
    background: var(--off-white);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
}

.workflow-details strong {
    color: var(--navy);
    display: block;
    margin-bottom: var(--space-xs);
}

.workflow-details ul {
    margin-left: var(--space-sm);
    color: var(--slate);
}

.workflow-details ul li {
    padding: 0.25rem 0;
}

/* ============ COMPARISON TABLE LARGE ============ */

.comparison-table-large {
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.feature-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.feature-comparison-table thead {
    background: var(--navy);
    color: var(--white);
}

.feature-comparison-table th {
    padding: var(--space-sm);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.feature-comparison-table td {
    padding: var(--space-sm);
    border-bottom: 1px solid #E2E8F0;
    color: var(--slate);
    line-height: 1.6;
}

.feature-comparison-table tbody tr:hover {
    background: var(--off-white);
}

.feature-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-comparison-table td:first-child {
    font-weight: 600;
    color: var(--navy);
}

/* ============ COMPARISON COMPONENTS ============ */

.comparison-grid-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    align-items: start;
}

.comparison-col {
    display: flex;
    flex-direction: column;
}

.comparison-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.comparison-col h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.comparison-col p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.comparison-value {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
    width: fit-content;
}

.comparison-value.good {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.comparison-value.bad {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.comparison-value.neutral {
    background: rgba(234, 179, 8, 0.1);
    color: #a16207;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.problem-number {
    width: 50px;
    height: 50px;
    background: var(--marine-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.problem-content h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.problem-content p {
    color: var(--slate);
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* ============ TABS SECTION ============ */

.tabs-section {
    padding: 3rem 0;
    background: var(--white);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    gap: 0;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate);
    transition: all 0.3s;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--marine-blue);
}

.tab-btn.active {
    background: var(--white);
    color: var(--marine-blue);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tab-content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.tab-content ul li {
    padding: 0.3rem 0;
    color: var(--slate);
}

.tab-content ul li:before {
    content: "• ";
    color: var(--marine-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 968px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-col h3 {
        margin-top: 1rem;
    }
    
    .problem-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Add mobile menu later */
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .workflow-number {
        margin-bottom: var(--space-sm);
    }
}



