/* ============================================
   MARKETING PAGES - SHARED STYLES
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background: #1a1a2e;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ade80;
    text-decoration: none;
}

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

.nav > a,
.nav-dropdown > a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.nav > a:hover,
.nav-dropdown > a:hover {
    background: rgba(255,255,255,0.1);
}

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: #333 !important;
    padding: 0.75rem 1rem;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
}

.dropdown-menu .section-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    padding: 0.5rem 1rem 0.25rem;
    font-weight: 600;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 0.5rem 0;
}

/* Nav Buttons */
.nav .btn-login {
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.nav .btn-signup {
    background: #4ade80;
    color: #1a1a2e !important;
    font-weight: 600;
}

.nav .btn-signup:hover {
    background: #22c55e;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: #4ade80;
}

.hero .tagline {
    font-size: 1.35rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-note strong {
    color: #4ade80;
}

/* ============================================
   CTA BUTTONS
   ============================================ */

.cta-button {
    background: #4ade80;
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #22c55e;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.trust-bar p {
    color: #666;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logos span {
    font-size: 1.1rem;
    color: #999;
    font-weight: 500;
}

/* ============================================
   GENERAL SECTIONS
   ============================================ */

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.section > p {
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.feature-card a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-card a:hover {
    text-decoration: underline;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.comparison-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.comparison-section > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.comparison-card:hover {
    transform: translateY(-2px);
}

.comparison-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.comparison-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comparison-card a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
}

.comparison-card a:hover {
    text-decoration: underline;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-preview {
    background: white;
    padding: 5rem 2rem;
}

.pricing-preview h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pricing-preview > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: #f8f9fa;
    border: 3px solid #4ade80;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: bold;
    color: #4ade80;
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
}

.pricing-card .note {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card .features-list {
    text-align: left;
    margin: 1.5rem 0;
    columns: 2;
    column-gap: 1rem;
}

.pricing-card .features-list li {
    list-style: none;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    color: #555;
    break-inside: avoid;
}

.pricing-card .features-list .check {
    color: #4ade80;
    margin-right: 0.5rem;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */

.solutions-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.solutions-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.solutions-section > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.solution-card a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
}

.solution-card a:hover {
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .price-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #4ade80;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============================================
   PAGE CONTENT (for inner pages)
   ============================================ */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-content h1 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h2 {
    color: #1a1a2e;
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.page-content p {
    color: #555;
    margin-bottom: 1rem;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card .features-list {
        columns: 1;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        color: white !important;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card.featured {
    border: 3px solid #4ade80;
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #4ade80;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.savings {
    background: #4ade80;
    color: #1a1a2e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-list {
    text-align: left;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: #4ade80;
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #1a1a2e;
    color: white;
}

.comparison-table th:first-child {
    border-radius: 8px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 8px 0 0;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.yes {
    color: #4ade80;
    font-weight: bold;
}

.no {
    color: #999;
}

.extra {
    color: #ef4444;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
}

/* Pricing page mobile */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* ============================================
   COMPARISON PAGES STYLES
   ============================================ */

.vs-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.vs-badge .brand {
    font-weight: bold;
    font-size: 1.1rem;
}

.vs-badge .vs {
    color: #4ade80;
    font-weight: bold;
}

.tldr-box {
    background: #dcfce7;
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.tldr-box h3 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tldr-box p {
    color: #333;
    font-size: 1.05rem;
}

.comparison-table-section {
    background: white;
    padding: 4rem 2rem;
}

.comparison-table-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.comparison-table .feature-name {
    font-weight: 500;
}

.partial {
    color: #f59e0b;
}

.price-highlight {
    background: #dcfce7;
}

/* Pricing Comparison Grid */
.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card.highlight {
    border: 3px solid #4ade80;
}

.pricing-card.highlight .price {
    color: #4ade80;
}

.pricing-card .included {
    color: #16a34a;
}

.pricing-card .not-included {
    color: #999;
}

.pricing-card .extra-cost {
    color: #ef4444;
}

/* Trap Section */
.hubspot-trap {
    padding: 4rem 2rem;
    background: white;
}

.hubspot-trap h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.hubspot-trap > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.trap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trap-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
}

.trap-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trap-card h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.trap-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Better Section */
.better-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.better-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.better-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.better-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.better-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.better-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.better-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Who Section */
.who-section {
    padding: 4rem 2rem;
    background: white;
}

.who-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.who-card {
    padding: 2rem;
    border-radius: 12px;
}

.who-card.crawlspace {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.who-card.hubspot,
.who-card.pipedrive,
.who-card.zoho {
    background: #f3f4f6;
    border: 2px solid #d1d5db;
}

.who-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.who-card.crawlspace h4 {
    color: #16a34a;
}

.who-card.hubspot h4,
.who-card.pipedrive h4,
.who-card.zoho h4 {
    color: #666;
}

.who-card ul {
    list-style: none;
}

.who-card ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.price-reminder {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Comparison pages mobile */
@media (max-width: 768px) {
    .pricing-comparison,
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   PIPEDRIVE COMPARISON - ADDON SECTION
   ============================================ */

.addon-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.addon-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.addon-section > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #ef4444;
}

.addon-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.addon-card .price {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.addon-card p {
    color: #666;
    font-size: 0.9rem;
}

.addon-card .crawlspace-note {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Total Cost Comparison */
.total-cost {
    background: white;
    padding: 4rem 2rem;
}

.total-cost h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cost-card {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.cost-card.crawlspace {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.cost-card.pipedrive {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.cost-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cost-card.crawlspace h3 {
    color: #16a34a;
}

.cost-card.pipedrive h3 {
    color: #dc2626;
}

.cost-card .total {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.cost-card.crawlspace .total {
    color: #16a34a;
}

.cost-card.pipedrive .total {
    color: #dc2626;
}

.cost-card .breakdown {
    text-align: left;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

.cost-card .breakdown li {
    padding: 0.3rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

/* Pipedrive Strengths */
.pipedrive-strengths {
    padding: 4rem 2rem;
    background: white;
}

.pipedrive-strengths h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pipedrive-strengths > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.strengths-list {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

.strengths-list ul {
    list-style: none;
}

.strengths-list ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
}

.strengths-list ul li span {
    color: #f59e0b;
}

/* Pipedrive comparison mobile */
@media (max-width: 768px) {
    .cost-comparison {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ZOHO COMPARISON - COMPLEXITY SECTION
   ============================================ */

.complexity-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.complexity-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.complexity-section > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.complexity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.complexity-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #f59e0b;
}

.complexity-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.complexity-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.complexity-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Zoho Ecosystem Visual */
.zoho-ecosystem {
    padding: 4rem 2rem;
    background: white;
}

.zoho-ecosystem h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.zoho-ecosystem > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.ecosystem-visual {
    max-width: 800px;
    margin: 0 auto;
    background: #fef3c7;
    border: 2px solid #fcd34d;
    border-radius: 12px;
    padding: 2rem;
}

.ecosystem-visual h4 {
    text-align: center;
    color: #92400e;
    margin-bottom: 1.5rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-item {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
}

.ecosystem-note {
    text-align: center;
    color: #92400e;
    font-size: 0.95rem;
    font-style: italic;
}

/* Simplicity Comparison */
.simplicity-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.simplicity-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.simplicity-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.simplicity-card {
    border-radius: 12px;
    padding: 2rem;
}

.simplicity-card.crawlspace {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.simplicity-card.zoho {
    background: #fef3c7;
    border: 2px solid #fcd34d;
}

.simplicity-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.simplicity-card.crawlspace h3 {
    color: #16a34a;
}

.simplicity-card.zoho h3 {
    color: #92400e;
}

.simplicity-card ul {
    list-style: none;
}

.simplicity-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

/* Zoho Strengths */
.zoho-strengths {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.zoho-strengths h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.zoho-strengths > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Pricing Table */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #1a1a2e;
    color: white;
}

.pricing-table th:first-child {
    border-radius: 8px 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 8px 0 0;
}

.pricing-table tr.highlight {
    background: #dcfce7;
}

/* Zoho comparison mobile */
@media (max-width: 768px) {
    .simplicity-comparison {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FEATURES PAGE STYLES
   ============================================ */

.features-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.feature-card.highlight {
    border: 2px solid #4ade80;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card ul li {
    padding: 0.35rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    background: #4ade80;
    color: #1a1a2e;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.badge.coming {
    background: #fbbf24;
}

.badge.free {
    background: #4ade80;
}

/* ============================================
   INTEGRATION PAGES STYLES
   ============================================ */

.badge-coming {
    background: #fbbf24;
    color: #1a1a2e;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.integration-logos .fb-logo {
    background: #1877f2;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-logos .linkedin-logo {
    background: #0a66c2;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-logos .sheets-logo {
    background: #34a853;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-logos .crm-logo {
    background: #4ade80;
    color: #1a1a2e;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 1rem;
    border-radius: 12px;
}

.sync-arrow {
    color: #4ade80;
    font-size: 2rem;
}

/* Problem/Solution Grid */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.problem, .solution {
    padding: 2rem;
    border-radius: 12px;
}

.problem {
    background: #fee2e2;
    border: 2px solid #fca5a5;
}

.problem h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.solution {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.solution h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.problem ul, .solution ul {
    list-style: none;
}

.problem ul li, .solution ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 4rem 2rem;
}

.how-it-works h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    background: #4ade80;
    color: #1a1a2e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.use-cases h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.use-case h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.use-case p {
    color: #666;
    font-size: 0.95rem;
}

/* Waitlist Section */
.waitlist-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
    color: white;
}

.waitlist-section.linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.waitlist-section h2 {
    margin-bottom: 1rem;
}

.waitlist-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.waitlist-form button {
    background: #4ade80;
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.waitlist-form button:hover {
    background: #22c55e;
}

/* Integration pages mobile */
@media (max-width: 768px) {
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-form input {
        min-width: 100%;
    }
}

/* ============================================
   GOOGLE SHEETS INTEGRATION PAGE
   ============================================ */

.integration-logos span {
    font-size: 3rem;
}

/* Features Detail Section */
.features-detail {
    background: #f8f9fa;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.reverse {
    direction: rtl;
}

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

.feature-text h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-text p {
    color: #555;
}

.feature-visual {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-visual .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Google Sheets integration mobile */
@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
}

/* ============================================
   LINKEDIN INTEGRATION PAGE
   ============================================ */

.integration-logos .li-logo {
    background: #0a66c2;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* B2B Highlight Section */
.b2b-highlight {
    background: white;
    padding: 4rem 2rem;
}

.b2b-highlight h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.b2b-highlight > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
}

.b2b-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0a66c2;
}

.stat .label {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* LinkedIn-styled step numbers */
.how-it-works .step-number.linkedin {
    background: #0a66c2;
}

/* Data Captured Section */
.data-captured {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.data-captured h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.data-captured > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.data-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.data-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.data-item span {
    color: #333;
    font-size: 0.9rem;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-page body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.login-card h1 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.login-card .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #4ade80;
}

.form-group input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
}

.form-options a {
    color: #4ade80;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    background: #4ade80;
    color: #1a1a2e;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.login-button:hover {
    background: #22c55e;
}

.login-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 1rem;
}

.signup-prompt {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.signup-prompt a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
}

.signup-prompt a:hover {
    text-decoration: underline;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.success-message {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.forgot-password-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.forgot-password-link a {
    color: #4ade80;
    text-decoration: none;
}

.forgot-password-link a:hover {
    text-decoration: underline;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.back-link:hover {
    color: #4ade80;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a2e;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#forgotPasswordForm {
    display: none;
}

/* ============================================
   SIGNUP PAGE STYLES
   ============================================ */

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 450px;
}

.left-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.left-content h1 span {
    color: #4ade80;
}

.left-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.benefits-list .icon {
    color: #4ade80;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.pricing-note .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ade80;
}

.pricing-note .price span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: normal;
}

.pricing-note p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.right-panel {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.signup-card {
    width: 100%;
    max-width: 480px;
}

.signup-card h2 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.signup-card .subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group .hint {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Plan Selection */
.plan-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.plan-option {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.plan-option:hover {
    border-color: #4ade80;
}

.plan-option.selected {
    border-color: #4ade80;
    background: #f0fdf4;
}

.plan-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-option-content {
    text-align: center;
}

.plan-name {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.plan-savings {
    background: #4ade80;
    color: #1a1a2e;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a1a2e;
}

.plan-price span {
    font-size: 0.85rem;
    font-weight: normal;
    color: #666;
}

.plan-monthly-equiv {
    font-size: 0.8rem;
    color: #666;
}

/* Card Container (Square) */
#card-container {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    min-height: 50px;
    transition: border-color 0.2s;
}

#card-container:focus-within {
    border-color: #4ade80;
}

.signup-button {
    width: 100%;
    background: #4ade80;
    color: #1a1a2e;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signup-button:hover {
    background: #22c55e;
}

.signup-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.signup-button .btn-price {
    opacity: 0.8;
    font-weight: normal;
}

.terms {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.terms a {
    color: #4ade80;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.login-prompt {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.login-prompt a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
}

.login-prompt a:hover {
    text-decoration: underline;
}

.processing-message {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

/* Payment Only View */
.payment-only-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #e0f2fe;
    border-radius: 8px;
    display: none;
}

.payment-only-header p {
    color: #0369a1;
    font-size: 0.9rem;
}

.signout-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
}

.signout-link:hover {
    color: #dc2626;
}

/* Signup page mobile */
@media (max-width: 900px) {
    .page-wrapper {
        flex-direction: column;
    }
    
    .left-panel {
        padding: 2rem;
    }
    
    .left-content h1 {
        font-size: 1.75rem;
    }
    
    .right-panel {
        padding: 2rem;
    }
}

@media (max-width: 500px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .plan-selection {
        flex-direction: column;
    }
}

/* ============================================
   SOLUTIONS PAGES STYLES
   ============================================ */

.hero-label {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 2rem;
    background: white;
}

.problem-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.problem-section > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.problem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    border-radius: 12px;
    padding: 2rem;
}

.problem-card.old {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.problem-card.new {
    background: #dcfce7;
    border: 2px solid #86efac;
}

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

.problem-card.old h3 {
    color: #dc2626;
}

.problem-card.new h3 {
    color: #16a34a;
}

.problem-card ul {
    list-style: none;
}

.problem-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #555;
}

/* Cost Breakdown */
.cost-breakdown {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.cost-breakdown h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.cost-breakdown > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cost-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cost-card.highlight {
    border: 3px solid #4ade80;
}

.cost-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cost-card .line-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.cost-card .line-item:last-of-type {
    border-bottom: none;
}

.cost-card .total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #1a1a2e;
    font-weight: bold;
    font-size: 1.1rem;
}

.cost-card.highlight .total {
    color: #16a34a;
}

.savings-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #dcfce7;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.savings-note strong {
    color: #16a34a;
}

/* Sequence Example */
.sequence-example {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.sequence-example h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.sequence-example > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.sequence-visual {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sequence-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
}

.sequence-step:last-child {
    border-bottom: none;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-icon.email {
    background: #dbeafe;
    color: #2563eb;
}

.step-icon.wait {
    background: #fef3c7;
    color: #d97706;
}

.step-icon.call {
    background: #dcfce7;
    color: #16a34a;
}

.step-icon.video {
    background: #fce7f3;
    color: #db2777;
}

.step-content h4 {
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.use-case-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.use-case-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.use-case-card .sequence-preview {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* No Separate Tools Section */
.no-separate-tools {
    padding: 4rem 2rem;
    background: white;
}

.no-separate-tools h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.no-separate-tools > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tool-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.tool-card .name {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}

.tool-card .price {
    color: #dc2626;
    font-size: 0.9rem;
}

.tool-card .cross {
    color: #dc2626;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.replacement-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #dcfce7;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.replacement-note h4 {
    color: #16a34a;
    margin-bottom: 0.5rem;
}

/* Solutions pages mobile */
@media (max-width: 768px) {
    .problem-comparison {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GOOGLE SHEETS SOLUTION PAGE
   ============================================ */

/* Story Timeline */
.story-section {
    padding: 4rem 2rem;
    background: white;
}

.story-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.story-section > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.story-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-dot.past {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.timeline-dot.present {
    background: #fef3c7;
    border: 2px solid #fcd34d;
}

.timeline-dot.future {
    background: #dcfce7;
    border: 2px solid #86efac;
}

.timeline-line {
    width: 2px;
    flex-grow: 1;
    background: #ddd;
    margin-top: 0.5rem;
}

.timeline-content h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.problem-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Solution Section with Sync Visual */
.solution-section {
    padding: 4rem 2rem;
    background: white;
}

.solution-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.solution-section > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.sync-visual {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

.sync-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sync-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 180px;
}

.sync-box .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.sync-box h4 {
    color: #1a1a2e;
}

.sync-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4ade80;
    font-weight: bold;
}

.sync-arrows span {
    font-size: 1.5rem;
}

.sync-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.sync-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.sync-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.sync-feature span {
    color: #4ade80;
    font-weight: bold;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-card .number {
    background: #4ade80;
    color: #1a1a2e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Keep Spreadsheet Section */
.keep-spreadsheet {
    padding: 4rem 2rem;
    background: white;
}

.keep-spreadsheet h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.keep-spreadsheet > p {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: #dcfce7;
    border-radius: 12px;
    padding: 1.5rem;
}

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #555;
    font-size: 0.95rem;
}

/* No Zapier Section */
.no-zapier {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.no-zapier h2 {
    margin-bottom: 1rem;
}

.no-zapier > p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.zapier-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.zapier-card {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.zapier-card.old {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.zapier-card.new {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.zapier-card h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zapier-card ul {
    list-style: none;
}

.zapier-card ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Excel Note Section */
.excel-note {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.excel-note h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.excel-note > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.excel-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.excel-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.excel-box h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.excel-box p {
    color: #666;
    font-size: 0.95rem;
}

.excel-box .status {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Google Sheets solution mobile */
@media (max-width: 768px) {
    .sync-diagram {
        flex-direction: column;
    }
    
    .sync-arrows {
        transform: rotate(90deg);
    }
    
    .zapier-comparison {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SMALL BUSINESS CRM SOLUTION PAGE
   ============================================ */

/* Pain Points Section */
.pain-points {
    padding: 4rem 2rem;
    background: white;
}

.pain-points h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pain-points > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
}

.pain-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-card h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.pain-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pain-card .solution {
    color: #16a34a;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Feature card included text */
.feature-card .included {
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.75rem;
}

/* Why Section */
.why-section {
    padding: 4rem 2rem;
    background: white;
}

.why-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 1.5rem;
}

.why-card .number {
    background: #4ade80;
    color: #1a1a2e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.why-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Industries Section */
.industries-section {
    padding: 4rem 2rem;
    background: white;
}

.industries-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.industries-section > p {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.industry-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.industry-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.industry-card h4 {
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.industry-card p {
    color: #666;
    font-size: 0.85rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.testimonial-card .author {
    font-weight: bold;
}

.testimonial-card .role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Application Form */
.application-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1a1a2e;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(255,255,255,0.3);
}
.form-group input[type="file"] {
    padding: 10px;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.application-form .apply-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.application-form .apply-btn:hover {
    background: #E0E7E9;
}

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

/* ================================
   CAREERS PAGE STYLES
   ================================ */

/* Careers Hero */
.careers-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}
.careers-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.careers-hero h1 span {
    color: #4ade80;
}
.careers-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Container */
.careers-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 40px;
}
.job-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 30px 40px;
}
.job-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}
.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.job-body {
    padding: 40px;
}

/* Job Sections */
.job-section {
    margin-bottom: 35px;
}
.job-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4ade80;
}
.job-section p {
    color: #444;
    margin-bottom: 15px;
}
.job-section ul {
    list-style: none;
    padding: 0;
}
.job-section li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
}
.job-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* Compensation Grid */
.compensation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.comp-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
}
.comp-item .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}
.comp-item .label {
    font-size: 0.9rem;
    color: #666;
}
.comp-highlight {
    background: #4ade80;
    border: none;
}
.comp-highlight .amount,
.comp-highlight .label {
    color: #1a1a2e;
}

/* Benefits Grid (Careers) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}
.benefit-icon {
    font-size: 1.5rem;
}
.benefit-text {
    font-size: 0.95rem;
    color: #444;
}

/* Apply Section */
.apply-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}
.apply-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.apply-section > p {
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.apply-btn {
    display: inline-block;
    background: #4ade80;
    color: #1a1a2e;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #22c55e;
}
.apply-email {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}
.apply-email a {
    color: #4ade80;
    text-decoration: underline;
}

/* Application Form */
.application-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}
.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.application-form .form-group {
    margin-bottom: 20px;
}
.application-form .form-group.full-width {
    grid-column: 1 / -1;
}
.application-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.application-form .form-group input,
.application-form .form-group select,
.application-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1a1a2e;
}
.application-form .form-group input::placeholder,
.application-form .form-group textarea::placeholder {
    color: #999;
}
.application-form .form-group input:focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
    outline: 3px solid rgba(74, 222, 128, 0.5);
}
.application-form .form-group input[type="file"] {
    padding: 10px;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
}
.application-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.application-form .apply-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* About Section (Careers) */
.about-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-section h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.about-section p {
    color: #444;
    line-height: 1.7;
}

/* Careers Responsive */
@media (max-width: 768px) {
    .careers-hero {
        padding: 50px 20px;
    }
    .careers-hero h1 {
        font-size: 2rem;
    }
    .careers-container {
        padding: 40px 20px;
    }
    .job-header,
    .job-body {
        padding: 25px;
    }
    .compensation-grid {
        grid-template-columns: 1fr 1fr;
    }
    .application-form .form-row {
        grid-template-columns: 1fr;
    }
}