/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-blue: #2E5BFF;
    --dark-blue: #1a3fb8;
    --light-blue: #e8eeff;
    --accent-orange: #FF6B35;
    --accent-green: #10B981;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

ul {
    list-style: none;
}

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

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.75rem;
    color: var(--text-dark);
}

.section-title i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Navigation Header
   =================================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0052FF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    height: 45px;
    width: auto;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3fb8 100%);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-top: 72px;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-position {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button i {
    margin-left: 0.5rem;
    animation: bounce 2s infinite;
}

/* ===================================
   Why Spain Section
   =================================== */
.why-spain {
    background: var(--bg-light);
}

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

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    color: var(--primary-blue);
}

.card-icon i {
    display: block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.card-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.card-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

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

/* Market Chart */
.market-chart {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.chart-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.chart-container {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    gap: 2rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-blue), var(--dark-blue));
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0.5rem;
}

.bar:hover {
    opacity: 0.8;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-weight: 600;
    color: var(--text-dark);
}

.bar-value {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.chart-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 3rem;
}

/* ===================================
   Understanding Approach Section
   =================================== */
.approach-section {
    background: var(--bg-light);
}

.approach-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

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

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.approach-card .card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(46, 91, 255, 0.08);
    line-height: 1;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.approach-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Market Section
   =================================== */
.market-section {
    background: white;
}

/* ===================================
   Three Pillars Section (REDESIGNED)
   =================================== */
.pillars-section {
    background: var(--bg-light);
}

.pillars-container {
    display: grid;
    gap: 3rem;
}

.pillar-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pillar-primary {
    border-top: 5px solid var(--primary-blue);
}

.pillar-secondary {
    border-top: 5px solid var(--text-light);
    opacity: 0.9;
}

.pillar-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pillar-icon-wrapper {
    flex-shrink: 0;
}

.pillar-icon {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
    color: var(--primary-blue);
}

.pillar-icon i {
    display: block;
}

.pillar-title-block {
    flex: 1;
}

.pillar-number {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pillar-title {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.pillar-content {
    margin-top: 2rem;
}

.pillar-section {
    margin-bottom: 2rem;
}

.pillar-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pillar-list {
    list-style: none;
    margin-bottom: 1rem;
}

.pillar-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.pillar-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
    line-height: 1;
}

.pillar-kpi {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 2rem;
}

.kpi-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===================================
   Sales Framework Section
   =================================== */
.framework-section {
    background: var(--bg-light);
}

.framework-process {
    display: grid;
    gap: 3rem;
}

.process-step {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 5px solid var(--primary-blue);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 3rem;
    background: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.step-time {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.step-content {
    color: var(--text-gray);
}

.step-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    margin: 1rem 0;
}

.step-result {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 1rem;
}

.step-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

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

.step-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.step-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Business Case Table */
.business-case-table {
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.case-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

.case-row.highlight {
    background: rgba(46, 91, 255, 0.05);
}

.case-row.success {
    background: rgba(16, 185, 129, 0.1);
    font-weight: 700;
}

.case-label {
    color: var(--text-dark);
    font-weight: 600;
}

.case-calc {
    color: var(--text-gray);
    font-family: 'Courier New', monospace;
}

.case-result {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
}

.case-row.success .case-result {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.roi-highlight {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.roi-number {
    font-size: 1.75rem;
    font-weight: 800;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

.comparison-row:not(.header) {
    background: white;
}

.comparison-row:not(.header):hover {
    background: var(--bg-light);
}

.comp-col.highlight {
    color: var(--accent-green);
    font-weight: 600;
}

.key-message {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 12px;
}

/* ===================================
   Quick Wins Timeline
   =================================== */
.quick-wins-section {
    background: white;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 120px;
}

.timeline-marker {
    position: absolute;
    left: 25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.timeline-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
}

.timeline-list li i {
    color: var(--accent-green);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* ===================================
   Differentiation Section
   =================================== */
.differentiation-section {
    background: var(--bg-light);
}

.diff-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.diff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.diff-row.header {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.diff-row.header .diff-col {
    padding: 1.5rem;
}

.diff-col {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.diff-row:not(.header) .diff-col:first-child {
    background: var(--bg-light);
    color: var(--text-light);
    font-style: italic;
}

.diff-row:not(.header) .diff-col:last-child {
    background: white;
}

.diff-col.highlight {
    font-weight: 600;
    color: var(--accent-green);
}

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

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.highlight-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.highlight-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   Next Steps Section
   =================================== */
.next-steps-section {
    background: white;
}

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

.step-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-blue);
}

.step-period {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-actions {
    list-style: none;
    counter-reset: step-counter;
}

.step-actions li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-actions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.closing-statement {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.statement-main {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: white;
}

.statement-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-section {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--primary-blue);
    color: white;
}

.cta-button.primary:hover {
    background: var(--dark-blue);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-button i {
    margin-right: 0.5rem;
    animation: none;
}

/* ===================================
   New Sections Styles
   =================================== */
.icp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.icp-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.icp-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.icp-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.icp-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.partner-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-contact {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.partner-value {
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.partner-value strong {
    color: var(--primary-blue);
}

.partner-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.client-badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.partner-philosophy {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.pillar-list-compact {
    list-style: none;
}

.pillar-list-compact li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.pillar-note {
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.methodology-section {
    background: white;
}

.methodology-grid {
    display: grid;
    gap: 2rem;
}

.method-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    color: var(--primary-blue);
}

.method-icon i {
    display: block;
}

.method-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.method-content {
    color: var(--text-gray);
}

.method-list {
    list-style: none;
    margin: 1rem 0;
}

.method-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.method-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.method-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 6px;
    font-size: 0.95rem;
}

.business-case-example {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.case-header {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.case-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.case-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.case-table td:first-child {
    width: 65%;
    color: var(--text-dark);
}

.case-table td:last-child {
    width: 35%;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.highlight-row {
    background: rgba(46, 91, 255, 0.05);
}

.success-row {
    background: rgba(16, 185, 129, 0.1);
}

.success-row td:last-child {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.roi-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.6;
}

.roi-banner p {
    margin: 0;
    color: white;
}

.competitive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.competitive-table th,
.competitive-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.competitive-table th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.positioning-statement {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 8px;
    color: var(--text-dark);
}

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

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    color: var(--primary-blue);
}

.value-icon i {
    display: block;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mindset-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.mindset-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.mindset-banner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-section {
    background: white;
}

.roadmap-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.timeline-objectives {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
}

.objective-section h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.objective-section ul {
    list-style: none;
}

.objective-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.objective-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.cta-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.cta-statement {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
}

.statement-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: italic;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-header {
        padding: 0.75rem 0;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-title {
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-position {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .cards-grid,
    .approach-cards,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .pillar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .icp-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .icp-grid {
        gap: 1rem;
    }

    .comparison-row,
    .case-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .case-table td {
        display: block;
        padding: 0.5rem;
    }

    .case-table td:last-child {
        text-align: left;
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .competitive-table {
        font-size: 0.9rem;
    }

    .competitive-table th,
    .competitive-table td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-row.header,
    .competitive-table th {
        font-size: 0.85rem;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        left: 5px;
        font-size: 0.8rem;
    }

    .timeline-objectives {
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .bar-chart {
        height: 200px;
    }

    .method-card,
    .pillar-card {
        padding: 2rem;
    }

    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .pillar-card,
    .process-step {
        padding: 2rem;
    }
}

/* Tablet breakpoint for ICPs */
@media (min-width: 769px) and (max-width: 1024px) {
    .icp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .cta-button {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}