/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0A2463, #8FB8DE);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8FB8DE, #0A2463);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.btn-secondary:hover {
    background: #0A2463;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0A2463;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #0A2463;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.transformation-graphic {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pillar-preview {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.pillar-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.pillar-item:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0A2463, #8FB8DE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.pillar-item h4 {
    font-size: 1rem;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8FB8DE;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.solution-side h3 {
    color: #059669;
    margin-bottom: 2rem;
}

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

.problem-list li, .solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.problem-list i {
    color: #dc2626;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.solution-list i {
    color: #059669;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Methodology Preview */
.methodology-preview {
    padding: 5rem 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    color: #0A2463;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pillar-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-link {
    color: #0A2463;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.pillar-link:hover {
    color: #8FB8DE;
}

.methodology-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.about-content h3 {
    color: #0A2463;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.credentials, .philosophy {
    margin-bottom: 2rem;
}

.credentials h4, .philosophy h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: white;
}

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

.service-category {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.service-category h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item h4 {
    color: #0A2463;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-duration {
    background: #0A2463;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
}

/* Assessment CTA */
.assessment-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A2463, #8FB8DE);
    color: white;
    text-align: center;
}

.assessment-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.assessment-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

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

.benefit-item i {
    font-size: 3rem;
    color: #8FB8DE;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    opacity: 0.9;
    font-size: 1rem;
}

.assessment-buttons {
    margin-bottom: 2rem;
}

.assessment-buttons .btn-primary {
    background: white;
    color: #0A2463;
    margin-bottom: 1rem;
}

.assessment-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.assessment-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #0A2463;
    margin-right: 1rem;
    width: 30px;
}

.contact-method h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.response-time {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0A2463;
}

.response-time p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.response-time p:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0A2463;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #cbd5e1;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8FB8DE;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #8FB8DE;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assessment-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .pillar-preview {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}



/* Tablet responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small tablet/large mobile */
@media (max-width: 640px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* Methodology page logo */
.methodology-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-logo-img {
    height: 160px;
    width: auto;
}


/* Achievements list styling */
.achievements-list ul {
    list-style: none;
    padding: 0;
}

.achievements-list ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.achievements-list ul li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}



/* Legal pages styling */
.legal-page {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: #0A2463;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #8FB8DE;
    padding-bottom: 1rem;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content h3 {
    color: #334155;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}


/* Match Methodology central logo size */
.hero-logo-lg { width: 96px; height: 96px; object-fit: contain; }

/* --- Mobile navbar (integrated) --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 10002;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    pointer-events: auto;
  }
  .hamburger .bar {
    width: 24px;
    height: 2px;
    background: #333; /* dark bars for light header */
    margin: 4px 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .hamburger.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .navbar .nav-menu {
    position: fixed;
    top: 64px; /* adjust to your header height if needed */
    left: -100%;
    right: 0;
    width: 100%;
    height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: #0A2463; /* dark navy panel */
    overflow-y: auto;
    z-index: 10001;
    transition: left .3s ease;
    pointer-events: auto;
  }
  .navbar .nav-menu .nav-link { color: #fff; text-decoration: none; }
  .navbar .nav-menu.active { left: 0; }
}

/* === Services page alignment & flush look === */
.services-grid { align-items: stretch; }

.service-category {
  background: #f8fafc;
  border-radius: 16px;
  padding: 0.5rem;           /* minimal space */
  border: 1px solid #e2e8f0;
  overflow: hidden;          /* clip card shadows to rounded corners */
  display: flex;
  flex-direction: column;
}

.service-category .service-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.service-category .service-item {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

/* On mobile, keep slightly larger padding for comfort */
@media (max-width: 768px) {
  .service-category { padding: 1rem; }
}

/* === Mobile fix v2: hero pillar preview to 1-per-row with subtle dividers === */
@media (max-width: 640px) {
  .transformation-graphic { padding: 1rem !important; }
  .pillar-preview {
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .pillar-preview .pillar-item {
    flex: 0 0 100% !important;   /* 1 per row */
    width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    background: #FFFFFF !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(10,36,99,0.06); /* subtle divider */
  }
  .pillar-preview .pillar-icon { width: 52px; height: 52px; }
  .pillar-preview .pillar-item h4 { font-size: 1rem; margin-top: 6px; }
}
/* === End mobile fix v2 === */



/* Account for fixed header when using hash links */
html { scroll-padding-top: 90px; }
.pillar-section { scroll-margin-top: 90px; }


/* Added rule for header logo size */
header img,
.navbar-brand img {
    height: 50px !important;
    width: auto !important;
}



.form-note-centered {
  text-align: center;
  font-weight: bold;
  color: #000; /* black */
  margin: 20px 0;
}


/* Fix alignment for benefit-item / step-card boxes */
.benefit-item, .step-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
}

.benefit-item h4, .step-card h4 {
  margin: 1rem 0 0.5rem 0;
  word-break: break-word;
}

/* === Added by ChatGPT on clients+contact update === */

/* --- Clients section (dark blue) --- */
.clients-section{
  background:#0A2463;
  color:#ffffff;
  padding:48px 0;
}
.clients-section .section-title{
  text-align:center;
  margin-bottom:24px;
}
.logos-marquee{
  overflow:hidden;
  position:relative;
}
.logos-track{
  display:flex;
  gap:48px;
  align-items:center;
  animation: logos-scroll 30s linear infinite;
  will-change: transform;
}
.logos-track img{
  height:48px;
  max-width:160px;
  object-fit:contain;
  opacity:0.9;
  filter: brightness(0) invert(1);
}
@keyframes logos-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
/* Fallback grid when JS disabled */
.logos-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap:24px;
  place-items:center;
}
/* Email link styling */
a.email-link{ text-decoration: underline; }
/* Optional: light blue tint for icons/logos (close to #8FB8DE) */
.logos-track img.tint, .logos-grid img.tint{
  filter: brightness(0) saturate(100%) invert(75%) sepia(10%) saturate(597%) hue-rotate(177deg) brightness(96%) contrast(90%);
}

/* === Adjust link colors for contact === */

/* Force contact links to appear grey like surrounding text */
a.email-link, a[href*="linkedin.com/in/andersemblad"] {
  color: #555555; /* adjust to match your original body text grey */
  text-decoration: underline;
}

/* === Update: stop forcing all logos to monochrome === */
.logos-track img, .logos-grid img {
  height:48px;
  max-width:160px;
  object-fit:contain;
  opacity:0.95;
  filter:none; /* keep original colors */
}
/* If you want a logo forced to white, add class .mono */
.logo-mono.mono {
  filter: brightness(0) invert(1);
}

/* === Logo coloring rules === */
.logo { height:48px; max-width:160px; object-fit:contain; opacity:0.95; }
.logo.mono { filter: brightness(0) invert(1); }

/* Make in-text contact links inherit grey body color and show underline */
.contact-link, .contact-link:visited {
  color: inherit;
  text-decoration: underline;
}
.contact-link:hover, .contact-link:focus {
  text-decoration: underline;
  opacity: 0.85;
}

/* Carousel transitions */
.phrase-item{opacity:0; transform: translateY(8px); transition: opacity 1.5s ease, transform 1.5s ease;}
.phrase-item.show{opacity:1; transform: translateY(0);}
.phrase-highlight{color:#8FB8DE;}

/* Mid-page Phrase Carousel Band */
.phrase-carousel-band{background:#0A2463;color:#fff;width:100%;padding:22px 16px;
  margin-top: 64px;
}
.phrase-band-inner{max-width:1100px;margin:0 auto;display:flex;justify-content:center;align-items:center;min-height:56px;overflow:hidden;}
.phrase-item{font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-weight:800;letter-spacing:.15px;text-align:center;width:100%;max-width:900px;font-size:clamp(18px,2.4vw,30px);line-height:1.25;margin:0 auto;}

/* Compact hero spacing */
#home{ padding: 40px 0; }


/* === BB PHRASE CAROUSEL TUNING (smooth, slower) === */
.phrase-item {
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out !important;
}

/* Green pill for Free items */
.service-duration.free, .service-price {
    background: #10b981;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}



/* --- Hero with Rocket (2025-09-18 update) --- */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-block: clamp(80px, 10vh, 140px);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 6vw, 64px);
    align-items: center;
}



.hero-rocket {
    width: min(460px, 90%);   /* reduced size from 540px */
    height: auto;
    display: block;
    margin-inline: auto;
    object-fit: contain;
    border-radius: 16px;      /* softer edges like card */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* subtle shadow */
}

@media (max-width: 900px) {
  .hero-rocket { max-width: 360px; }
}

@media (max-width: 600px) {
  .hero-rocket { max-width: 280px; }
}


@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  

.hero-rocket {
    width: min(460px, 90%);   /* reduced size from 540px */
    height: auto;
    display: block;
    margin-inline: auto;
    object-fit: contain;
    border-radius: 16px;      /* softer edges like card */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* subtle shadow */
}

@media (max-width: 900px) {
  .hero-rocket { max-width: 360px; }
}

@media (max-width: 600px) {
  .hero-rocket { max-width: 280px; }
}

}

@media (max-width: 600px) {
  .hero { padding-block: 48px; }
  

.hero-rocket {
    width: min(460px, 90%);   /* reduced size from 540px */
    height: auto;
    display: block;
    margin-inline: auto;
    object-fit: contain;
    border-radius: 16px;      /* softer edges like card */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); /* subtle shadow */
}

@media (max-width: 900px) {
  .hero-rocket { max-width: 360px; }
}

@media (max-width: 600px) {
  .hero-rocket { max-width: 280px; }
}

}

/* === When Boozt Works Best section === */
.use-cases {
  background: #F7FAFF;
  border-top: 1px solid rgba(10,36,99,0.06);
  border-bottom: 1px solid rgba(10,36,99,0.06);
  padding: 64px 0;
}
.use-cases-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.use-cases .lead {
  font-size: 1.1rem;
  color: #384153;
}
.use-cases-portrait img{
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.use-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 12px;
}
.use-card{
  background: #fff;
  border: 1px solid rgba(10,36,99,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.use-card i{
  font-size: 22px;
  color: #0A2463;
  margin-bottom: 8px;
}
.use-card h3{
  font-size: 1.05rem;
  margin: 6px 0 8px;
  color: #0A2463;
}
.use-card p{ margin-bottom: 8px; }
.use-card ul{ padding-left: 18px; }
.use-card li{ margin: 4px 0; }

.use-compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.compare-col{
  background: #fff;
  border: 1px solid rgba(10,36,99,0.08);
  border-radius: 16px;
  padding: 20px;
}
.compare-col.good h4{ color:#0A2463; }
.compare-col.bad h4{ color:#8A2433; }
.compare-col ul{ padding-left: 18px; }

@media (max-width: 980px){
  .use-cases-header{ grid-template-columns: 1fr; }
  .use-cards{ grid-template-columns: 1fr 1fr; }
  .use-compare{ grid-template-columns: 1fr; }
  .use-cases-portrait{ order: -1; display:flex; justify-content:center; }
}


/* === Methodology page adjustments (2025‑09‑22) === */
.use-cases .use-cases-header{
  grid-template-columns: 1fr; /* collapse to single column since portrait is removed */
  text-align: center;
}
.use-cases .use-cases-text.centered,
.use-cases .use-cases-text{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.use-cases .use-cases-text h2{ text-align: center; }
.use-cases .use-cases-text .lead{ text-align: center; }

/* Center the 4 use-cards' icon and title, and enlarge title */
.use-cards{ display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.use-card{ text-align: center; }
.use-card i{ display: block; margin: 0 auto 8px; }
.use-card h3{ text-align: center; font-size: 1.2rem; }


/* === Refined card styling (2025-09-22 update 2) === */
.use-card {
  text-align: left; /* reset overall */
}

.use-card i {
  display: block;
  margin: 0 auto 8px;
  text-align: center; /* center icon only */
}

.use-card h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.use-card p,
.use-card ul,
.use-card li {
  line-height: 1.4; /* tighter, more normal line spacing */
  text-align: left;
}





/* ================================
   THREE SPRINTS SECTION STYLING
   ================================ */

/* Base layout (always active) */
.three-sprints {
  padding: 60px 0;
  text-align: center;
}
.three-sprints-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.three-sprint-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.three-sprint-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.three-sprint-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 8px 0 12px;
  opacity: 0.95;
}
.sprint-number {
  /* Match Four Pillars number */
  font-size: 3rem;
  font-weight: 700;
  color: e8f0#e2;
  margin-bottom: 1rem;
}

/* ===== STYLE OPTION 1: Light Neutral (inactive) ===== */
/*
.three-sprint-card {
  background: #f9f9f9;
  color: #0a143f;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.sprint-number {
  color: #0a143f;
}
*/

/* ===== STYLE OPTION 2: Business Boozt Blue (GRADIENT) — ACTIVE ===== */
.three-sprint-card {
  background: linear-gradient(135deg, #0A2463, #8FB8DE);
  color: #f3f4f6;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
/* Style the sprint card number */
.three-sprint-card .sprint-number {
  color: #ffffff;   /* Blue example */
  font-weight: bold;
}
.three-sprint-card h4 {
  color: #e5e7eb;
}
/* Style the sprint card title */
.three-sprint-card h3 {
  color: #8FB8DE;   /* Dark gray example */
  font-size: 1.8em; /* adjust as needed */
  font-weight: 600;
}
/* ===== STYLE OPTION 3: Accent Border Style (inactive) ===== */
/*
.three-sprint-card {
  background: #ffffff;
  border: 2px solid #2563eb;
  color: #0a143f;
}
.sprint-number {
  color: #2563eb;
}
*/
