/* =========================================
   SENTITRUST - CUSTOM BRUTALIST DESIGN
   Hand-crafted, Editorial Style
   ========================================= */

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

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

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background: #fafaf9;
    color: #0a0a0a;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Container - Asymmetric */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

/* =========================================
   NAVIGATION - Minimal & Fixed
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 249, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid #e7e5e4;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 24px;
    color: #dc2626;
}

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

.nav-menu a {
    color: #57534e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #0a0a0a;
}

.nav-menu .btn-primary {
    background: #0a0a0a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid #0a0a0a;
}

.nav-menu .btn-primary:hover {
    background: #fff;
    color: #0a0a0a;
}

.hamburger {
    display: none;
}

/* =========================================
   HERO - Bold Asymmetric Layout
   ========================================= */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    padding-top: 40px;
}

.hero-text {
    padding-right: 40px;
}

.badge {
    display: inline-block;
    background: #fef2f2;
    border: 2px solid #fecaca;
    color: #991b1b;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.highlight {
    color: #dc2626;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #fef2f2;
    border: 2px solid #fecaca;
    z-index: -1;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #44403c;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 3px solid #0a0a0a;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 15px;
    color: #78716c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashboard Mockup - Brutalist Card */
.hero-visual {
    position: sticky;
    top: 120px;
}

.dashboard-mockup {
    background: #fff;
    border: 3px solid #0a0a0a;
    box-shadow: 12px 12px 0 #0a0a0a;
}

.mockup-header {
    background: #0a0a0a;
    padding: 16px 20px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #78716c;
}

.mockup-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vulnerability-card {
    background: #fafaf9;
    border: 2px solid #e7e5e4;
    border-left-width: 6px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vulnerability-card:hover {
    transform: translateX(-4px);
    box-shadow: 8px 8px 0 #0a0a0a;
}

.vulnerability-card.critical { border-left-color: #dc2626; }
.vulnerability-card.high { border-left-color: #ea580c; }
.vulnerability-card.medium { border-left-color: #ca8a04; }

.severity {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
    padding: 4px 8px;
    background: #fafaf9;
    border: 2px solid;
    display: inline-block;
}

.vulnerability-card.critical .severity {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

.vulnerability-card.high .severity {
    border-color: #ea580c;
    color: #ea580c;
    background: #fff7ed;
}

.vulnerability-card.medium .severity {
    border-color: #ca8a04;
    color: #ca8a04;
    background: #fefce8;
}

.vulnerability-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.vulnerability-card p {
    font-size: 14px;
    color: #57534e;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cvss {
    font-size: 12px;
    font-weight: 700;
    color: #78716c;
    font-family: 'Courier New', monospace;
}

/* =========================================
   BUTTONS - Bold & Simple
   ========================================= */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #0a0a0a;
    color: #fff;
    border: 3px solid #0a0a0a;
}

.btn-primary:hover {
    background: #fff;
    color: #0a0a0a;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #0a0a0a;
}

.btn-secondary {
    background: #fff;
    color: #0a0a0a;
    border: 3px solid #0a0a0a;
}

.btn-secondary:hover {
    background: #0a0a0a;
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #dc2626;
}

.btn-outline {
    background: transparent;
    color: #0a0a0a;
    border: 2px solid #a8a29e;
}

.btn-outline:hover {
    border-color: #0a0a0a;
    background: #fafaf9;
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* =========================================
   SECTIONS - Editorial Layout
   ========================================= */
section {
    padding: 100px 0;
    position: relative;
}

.problem-section {
    background: #fff;
    border-top: 3px solid #0a0a0a;
    border-bottom: 3px solid #0a0a0a;
}

.solution-section {
    background: #fafaf9;
}

.how-it-works {
    background: #fff;
}

.pricing-section {
    background: #0a0a0a;
    color: #fff;
}

.case-studies {
    background: #fef2f2;
}

.trust-signals {
    background: #fff;
}

.faq-section {
    background: #fafaf9;
}

.cta-section {
    background: #dc2626;
    color: #fff;
}

/* Section Headers - Bold Typography */
.section-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #57534e;
    font-weight: 400;
}

.pricing-section .section-header h2,
.pricing-section .section-subtitle {
    color: #fff;
}

.cta-section .section-header h2,
.cta-section .section-subtitle {
    color: #fff;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.problem-card {
    background: #fafaf9;
    border: 3px solid #e7e5e4;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #0a0a0a;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    color: #dc2626;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #57534e;
}

/* Cost Comparison - Bold Statement */
.cost-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    padding: 60px;
    background: #fff;
    border: 3px solid #0a0a0a;
}

.cost-item {
    text-align: center;
}

.cost-label {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #78716c;
    margin-bottom: 16px;
}

.cost-amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.cost-item.prevention .cost-amount { color: #16a34a; }
.cost-item.breach .cost-amount { color: #dc2626; }

.cost-time {
    font-size: 16px;
    color: #57534e;
    font-weight: 600;
}

.vs {
    font-size: 32px;
    font-weight: 900;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background: #fff;
    border: 2px solid #e7e5e4;
    padding: 40px;
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
    color: #dc2626;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.solution-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #57534e;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #e7e5e4;
}

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

.solution-list i {
    color: #16a34a;
    font-size: 14px;
    margin-top: 3px;
}

/* Toolkit Showcase */
.toolkit-showcase {
    margin-top: 80px;
    padding: 60px;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    border: 4px solid #0a0a0a;
    position: relative;
}

.toolkit-showcase::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 4px solid #dc2626;
    z-index: -1;
}

.toolkit-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
}

.toolkit-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #d6d3d1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.toolkit-showcase .btn-primary {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.toolkit-showcase .btn-primary:hover {
    background: #fff;
    color: #dc2626;
}

.toolkit-showcase .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.toolkit-showcase .btn-outline:hover {
    background: #fff;
    color: #0a0a0a;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: center;
}

.pricing-card {
    background: #1c1917;
    border: 3px solid #292524;
    padding: 48px 40px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #44403c;
}

.pricing-card.popular {
    background: #fafaf9;
    border-color: #dc2626;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translate(-4px, -4px);
    box-shadow: 4px 4px 0 #dc2626;
}

/* Enterprise Golden Styling */
.pricing-card.enterprise {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
    border: 3px solid #d97706;
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pricing-card.enterprise::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card.enterprise:hover {
    transform: scale(1.05) translate(-4px, -4px);
    box-shadow: 4px 4px 0 #d97706, 0 0 40px rgba(217, 119, 6, 0.3);
}

.pricing-card.enterprise:hover::after {
    opacity: 1;
}

.pricing-card.enterprise:hover::after {
    opacity: 0.1;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    background: #292524;
    color: #a8a29e;
    border: 2px solid #44403c;
}

.popular-badge {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.enterprise-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    font-weight: 900;
}

.pricing-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pricing-card.popular h3 {
    color: #0a0a0a;
}

.pricing-card.enterprise h3 {
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.pricing-price {
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0a0a0a;
}

.pricing-card.popular .amount {
    color: #dc2626;
}

.pricing-card.popular .currency {
    color: #dc2626;
}

.pricing-card.enterprise .amount {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.pricing-card.enterprise .currency {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: #78716c;
    font-weight: 600;
}

.pricing-description {
    color: #a8a29e;
    margin-bottom: 32px;
    line-height: 1.6;
}

.pricing-card.popular .pricing-description {
    color: #57534e;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
}

.pricing-features li {
    padding: 16px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #292524;
}

.pricing-card.popular .pricing-features li {
    border-bottom-color: #e7e5e4;
    color: #0a0a0a;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #16a34a;
    font-size: 14px;
    margin-top: 2px;
}

.pricing-meta {
    margin: 24px 0;
    padding: 20px;
    background: #292524;
    border: 2px solid #44403c;
    text-align: center;
}

.pricing-card.popular .pricing-meta {
    background: #fef2f2;
    border-color: #fecaca;
}

.pricing-timeline {
    font-size: 14px;
    font-weight: 700;
    color: #a8a29e;
}

.pricing-card.popular .pricing-timeline {
    color: #78716c;
}

.pricing-card .btn-primary {
    border-color: #fff;
    background: #fff;
    color: #0a0a0a;
}

.pricing-card .btn-primary:hover {
    background: #0a0a0a;
    color: #fff;
    border-color: #fff;
}

.pricing-card.popular .btn-primary {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.pricing-card.popular .btn-primary:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

/* Fix outline button visibility on dark pricing cards */
.pricing-card .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.pricing-card .btn-outline:hover {
    background: #fff;
    color: #0a0a0a;
}

.pricing-card.popular .btn-outline {
    background: transparent;
    color: #0a0a0a;
    border: 2px solid #0a0a0a;
}

.pricing-card.popular .btn-outline:hover {
    background: #0a0a0a;
    color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #0a0a0a;
    color: #a8a29e;
    padding: 80px 0 40px;
    border-top: 4px solid #dc2626;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #dc2626;
    font-size: 28px;
}

.footer-about {
    color: #78716c;
    line-height: 1.6;
}

.footer h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: #a8a29e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1917;
    color: #a8a29e;
    border: 2px solid #44403c;
    transition: all 0.2s;
    font-size: 18px;
}

.social-links a:hover {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 2px solid #292524;
    text-align: center;
    font-size: 14px;
    color: #78716c;
}

/* =========================================
   FAQ
   ========================================= */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border: 2px solid #e7e5e4;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0a0a0a;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fafaf9;
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s;
    color: #57534e;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #dc2626;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 28px 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #57534e;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
}

.cta-content > p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #fecaca;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: #dc2626;
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: #0a0a0a;
    color: #fff;
    border-color: #0a0a0a;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-section .btn-secondary:hover {
    background: #fff;
    color: #dc2626;
}

.cta-guarantee {
    font-size: 15px;
    color: #fecaca;
    font-weight: 600;
}

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: #0a0a0a;
    color: #fff;
    border: 3px solid #0a0a0a;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s;
    z-index: 999;
}

.scroll-top:hover {
    background: #fff;
    color: #0a0a0a;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #dc2626;
}

.scroll-top.visible {
    display: flex;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-visual {
        position: static;
    }
    
    .solution-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: #0a0a0a;
        transition: all 0.3s;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }
    
    .cost-amount {
        font-size: 48px;
    }
    
    .vs {
        font-size: 24px;
        padding: 16px 0;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card.popular,
    .pricing-card.enterprise {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover,
    .pricing-card.enterprise:hover {
        transform: translate(-4px, -4px);
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-number {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin: 0 auto;
    }
}

/* =========================================
   HOW IT WORKS & OTHER SECTIONS
   (keeping existing structure, applying brutalist style)
   ========================================= */

/* Timeline for How It Works */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px;
    background: #fff;
    border: 2px solid #e7e5e4;
    position: relative;
}

.timeline-item:hover {
    border-color: #dc2626;
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    border: 3px solid #0a0a0a;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.timeline-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #57534e;
}

.timeline-content ul {
    list-style: none;
    margin-top: 16px;
}

.timeline-content ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #57534e;
    padding-left: 24px;
    position: relative;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.timeline-footer {
    margin-top: 32px;
    padding: 20px 32px;
    background: #fef2f2;
    border: 2px solid #fecaca;
    text-align: center;
    font-size: 16px;
    color: #0a0a0a;
}

.timeline-footer strong {
    color: #dc2626;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 60px;
    padding: 32px;
    background: #292524;
    border: 2px solid #44403c;
    text-align: center;
    border-radius: 0;
}

.pricing-footer p {
    color: #d6d3d1;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-footer strong {
    color: #fff;
}

/* Case Study Grid */
.case-study-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.case-study-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #dc2626;
    color: #fff;
    border: 2px solid #0a0a0a;
    margin-bottom: 16px;
}

.case-study-challenge,
.case-study-result,
.case-study-outcome {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.case-study-challenge strong,
.case-study-result strong,
.case-study-outcome strong {
    color: #0a0a0a;
    font-weight: 800;
}

blockquote {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fafaf9;
    border-left: 4px solid #dc2626;
    font-style: italic;
    color: #44403c;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: #78716c;
}

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

.step {
    background: #fff;
    border: 2px solid #e7e5e4;
    padding: 40px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    border: 3px solid #0a0a0a;
}

.step h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 20px;
}

.step p {
    color: #57534e;
    line-height: 1.6;
}

/* Case Studies */
.case-study-card {
    background: #fff;
    border: 3px solid #0a0a0a;
    padding: 48px;
    margin-bottom: 32px;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e7e5e4;
}

.company-info h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.company-info p {
    color: #57534e;
    font-weight: 600;
}

.case-result {
    text-align: right;
}

.result-number {
    font-size: 48px;
    font-weight: 900;
    color: #16a34a;
    line-height: 1;
}

.result-label {
    font-size: 14px;
    color: #78716c;
    font-weight: 700;
    text-transform: uppercase;
}

.case-study-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #44403c;
    margin-bottom: 16px;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.trust-item {
    text-align: center;
    padding: 32px;
    background: #fafaf9;
    border: 2px solid #e7e5e4;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.trust-item p {
    color: #57534e;
    font-size: 15px;
    line-height: 1.6;
}
