/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.heading,
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.accent {
    font-style: italic;
    font-weight: 600;           /* makes "Powerful" stand out */
    color: #00B8C8;
}

/* Section labels (kickers) */
.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
/* ==================== BASE STYLES ==================== */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
    color: #1F2528;
}

/* Navigation */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #00B8C8;
}

.nav-link-active {
    color: #00B8C8;
}

/* Accent (for "Powerful" in hero) */
.accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;           /* makes it bold */
    color: #00B8C8;
    letter-spacing: -0.04em;    /* helps with the W shape */
}

/* Section Labels */
.section-label {
    color: #00B8C8;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background-color: #C7F000;
    color: #002F36;
    font-weight: 600;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #DFFF35;
}

.btn-primary-pill {
    border-radius: 9999px;
    padding: 0.875rem 2rem;
}

.btn-primary-rect {
    border-radius: 1.5rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Underlines */
.teal-underline {
    width: 3rem;
    height: 4px;
    background-color: #00B8C8;
}

.lime-underline {
    width: 3rem;
    height: 4px;
    background-color: #C7F000;
}

/* Hero */
.hero-heading {
    font-size: clamp(2.1rem, 5.5vw, 3.75rem);
    line-height: 1.05;
}

.cta-text {
    font-size: clamp(1.65rem, 4.8vw, 2.75rem);
    line-height: 1.05;
}

.hero-bottom-blend {
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,.55) 30%, #ffffff 65%);
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(to right, #00B8C8, #C7F000, #FF6A2A, #8A4DFF);
    z-index: 0;
    border-radius: 9999px;
}

@media (max-width: 1023px) {
    .process-timeline::before {
        display: none;
    }
}

.timeline-step {
    position: relative;
    z-index: 10;
}

.timeline-number {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    background: white;
    box-shadow: 0 0 0 4px currentColor;
}

/* Who We Are Section */
.who-we-are-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .who-we-are-section {
        padding-bottom: 0.25rem;
    }
}

.who-we-are-section .who-we-are-grid {
    align-items: stretch;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .who-we-are-section .who-we-are-grid {
        gap: 3rem;
    }
}

.who-we-are-section .who-we-are-media {
    line-height: 0;
}

.who-we-are-section .who-we-are-img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
    .who-we-are-section .who-we-are-img {
        margin-left: -3rem;
    }
}

.who-we-are-section .who-we-are-copy {
    padding-top: 0;
    height: 100%;
    align-items: center;
}

.who-we-are-section .who-we-are-body {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .who-we-are-section .who-we-are-body {
        margin-top: 2rem;
    }
}

.who-we-are-section .who-we-are-body p {
    font-size: 1rem;
    line-height: 1.7;
}

.who-we-are-section .who-we-are-body p + p {
    margin-top: 1rem;
}

/* Impact Section */
.who-we-are-section + .impact-section {
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .who-we-are-section + .impact-section {
        padding-top: 2.5rem;
    }
}

/* Atomisation Section */
.atomisation-section {
    position: relative;
    z-index: 25;
    background-size: 58% 160%;
    background-position: right -60px bottom -30px;
    background-repeat: no-repeat;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: -80px;
    overflow: visible;
}

/* Journal Cards */
.journal-card {
    transition: all 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

/* Touch Targets */
.touch-target {
    min-height: 48px;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 4.75rem 1.75rem 2.5rem;
    text-align: center;
    border-radius: 0.5rem;
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

.feature-card-icon {
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 6rem;
    z-index: 1;
}

/* Service Images */
.service-block-img {
    width: 100%;
    height: auto;
    display: block;
}

.service-img-wrapper {
    position: relative;
}

.service-img-wrapper img {
    position: relative;
    z-index: 0;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, transparent 50%, white 100%),
                      linear-gradient(to left, white 0%, transparent 12%, transparent 88%, white 100%),
                      linear-gradient(to right, white 0%, transparent 12%, transparent 88%, white 100%);
    pointer-events: none;
    z-index: 1;
}

/* Dark Service Cards */
.dark-service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
}

/* Contact */
.contact-hero {
    background-size: cover;
    background-position: 78% bottom;
    background-repeat: no-repeat;
}

.contact-card {
    background: linear-gradient(135deg, #002F36 0%, #004550 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.form-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00B8C8;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0,184,200,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-weight: 500;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    background-color: #00B8C8;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
}

/* ==================== TRUST BAR ==================== */
.home-hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .home-hero-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem 1.75rem;
        width: 40rem;
    }
    
    .home-hero-trust-wrap {
        margin-left: -1.5rem;
    }
}

.home-hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.home-hero-trust-icon {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .home-hero-trust-icon {
        width: 2.6rem;
        height: 2.6rem;
    }
}

.home-hero-trust-label {
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    max-width: 9rem;
    color: #374151;
}

@media (min-width: 768px) {
    .home-hero-trust-label {
        font-size: 0.8125rem;
    }
}

/* Trust Bar Mobile */
@media (max-width: 767px) {
    .home-hero-trust-wrap {
        margin-top: 0.85rem !important;
        padding-top: 0.1rem !important;
        padding-bottom: 0.4rem !important;
    }
    
    .home-hero-trust-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.4rem !important;
    }
    
    .home-hero-trust-item {
        gap: 0.2rem !important;
    }
    
    .home-hero-trust-icon {
        width: 1.85rem !important;
        height: 1.85rem !important;
    }
    
    .home-hero-trust-label {
        font-size: 0.66rem !important;
        line-height: 1.15 !important;
        max-width: 5.2rem !important;
    }
}

/* ==================== OTHER MOBILE FIXES ==================== */

/* Impact Section on Mobile */
@media (max-width: 767px) {
    .impact-section {
        margin-top: 2rem !important;
    }
}

/* Purple Wave Fix on Mobile */
@media (max-width: 767px) {
    .atomisation-section {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .atomisation-section img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px !important;
        object-fit: cover !important;
        object-position: 120% top !important;
        display: block !important;
    }
}

/* Process Section Fix on Mobile */
@media (max-width: 767px) {
    .section-padding.py-4.md\:py-8.bg-white {
        padding-bottom: 3rem !important;
        overflow: visible !important;
    }
    
    .process-timeline {
        padding-bottom: 2rem !important;
    }
    
    .timeline-step {
        margin-bottom: 1.5rem !important;
    }
    
    .timeline-step:last-child {
        margin-bottom: 0 !important;
    }
    
    .process-timeline .timeline-step img {
        margin-top: 0.35rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .process-timeline .timeline-step h3 {
        font-size: 0.92rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .process-timeline .timeline-step p {
        font-size: 0.68rem !important;
        line-height: 1.15 !important;
        max-width: 100% !important;
    }
}

/* Atomisation Section Mobile */
@media (max-width: 767px) {
    .atomisation-section {
        margin-top: -60px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        margin-bottom: -60px !important;
        background-size: 100% 160% !important;
        background-position: right bottom -20px !important;
    }
}

/* General Mobile Padding */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .who-we-are-section::after {
        width: 65%;
        opacity: 0.75;
    }
}
footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Clean full-bleed backgrounds - only the waves/overlays stretch to edges */
.home-hero,
.final-cta,
.atomisation-section {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Keep all text and content nicely padded */
.home-hero .max-w-7xl,
.final-cta .max-w-7xl,
.atomisation-section .max-w-7xl {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 1024px) {
    .home-hero .max-w-7xl,
    .final-cta .max-w-7xl,
    .atomisation-section .max-w-7xl {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}/* Reduce left padding on header and footer on very wide screens */
nav,
footer {
    padding-left: 1rem !important;
}

@media (min-width: 1280px) {
    nav,
    footer {
        padding-left: 3rem !important;   /* you can change 2rem to 1.5rem or 3rem if you want */
    }
}.final-cta {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    }
/* Clean final neon wave - works on ALL pages */
.final-cta {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 240px !important;     /* same height as other pages */
}

@media (min-width: 1024px) {
    .final-cta {
        min-height: 260px !important;
    }
}