/* CSS Custom Properties - 2025 Design System */
:root {
    /* Color Palette */
    --color-primary: #1e3a8a;
    --color-primary-light: #3b82f6;
    --color-primary-hover: #1d4ed8;
    --color-accent: #00a0d2;
    --color-accent-light: #0090c0;
    --color-accent-bg: #e8f4f8;
    --color-success: #16a34a;
    --color-success-hover: #15803d;
    --color-error: #dc2626;
    --color-error-light: #ef4444;
    
    /* Neutral Colors */
    --color-text-primary: #2d3748;
    --color-text-secondary: #666;
    --color-text-muted: #888;
    --color-bg-primary: #fff;
    --color-bg-secondary: #fafbfc;
    --color-bg-accent: #f8f9fa;
    --color-border: #e6f2f5;
    --color-border-light: #f0f0f0;
    
    /* Typography Scale */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'Courier New', monospace;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-md: 0.9375rem;  /* 15px */
    --font-size-base: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem;    /* 20px */
    --font-size-xl: 1.5rem;     /* 24px */
    --font-size-2xl: 2rem;      /* 32px */
    --font-size-3xl: 2.625rem;  /* 42px */
    
    /* Spacing Scale */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-article: 2.5rem; /* 40px */
    
    /* Layout */
    --border-radius: 0.375rem;  /* 6px */
    --border-radius-lg: 0.5rem; /* 8px */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container Sizes */
    --container-xs: 480px;
    --container-sm: 768px;
    --container-md: 992px;
    --container-lg: 1200px;
    
    /* Image Sizes */
    --img-trustpilot: 2.5rem;      /* 40px */
    --img-trustpilot-sm: 2rem;     /* 32px */
    --img-trustpilot-xs: 1.75rem;  /* 28px */
    
    /* Header Spacing */
    --header-padding-mobile: 0.75rem; /* 12px */
    --container-padding: 0.9375rem;   /* 15px */
    
    /* Button and Form Spacing */
    --btn-padding-sm: 0.875rem 1rem;     /* 14px 16px */
    --btn-padding-md: 0.875rem 1.5rem;   /* 14px 24px */
    --btn-padding-lg: 1.125rem 2rem;     /* 18px 32px */
    --btn-padding-xl: 1.25rem 2rem;      /* 20px 32px */
    --form-padding: 1.125rem 1.25rem;    /* 18px 20px */
    --contact-padding: 1.5625rem 2.1875rem; /* 25px 35px */
    
    /* Statement Section Spacing */
    --statement-padding: 1.125rem 1.25rem 0.75rem 1.25rem; /* 18px 20px 12px 20px */
    --statement-margin: 0 1.25rem 0.9375rem 1.25rem;       /* 0 20px 15px 20px */
    --statement-gap: 1.125rem;        /* 18px */
    --statement-font-xs: 0.625rem;    /* 10px */
    --statement-font-xxs: 0.5625rem;  /* 9px */
    --statement-font-mini: 0.6875rem; /* 11px */
    
    /* Mobile Responsive Values */
    --mobile-gap-sm: 0.9375rem;    /* 15px */
    --mobile-gap-xs: 0.75rem;      /* 12px */
    --mobile-padding-sm: 0.9375rem; /* 15px */
    --mobile-padding-xs: 0.1875rem; /* 3px */
    --mobile-margin-sm: 0.3125rem;  /* 5px */
    --mobile-margin-md: 0.375rem;   /* 6px */
    --mobile-margin-lg: 1.875rem;   /* 30px */
    --mobile-font-xs: 0.8125rem;    /* 13px */
    
    /* Very Small Mobile (360px) */
    --mobile-xxs-padding: 0.625rem;  /* 10px */
    --mobile-xxs-margin: 0.75rem;    /* 12px */
    --mobile-xxs-font: 0.875rem;     /* 14px */
}

/* CSS Logical Properties Support */
@supports (margin-inline: 1rem) {
    :root {
        --margin-inline: margin-inline;
        --padding-inline: padding-inline;
        --border-inline: border-inline;
    }
}

/* CSS Layers - 2025 Cascade Management */
@layer reset, base, components, utilities;

@layer base {
    /* Modern CSS Math Functions */
    .fluid-typography {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .responsive-spacing {
        margin-block: clamp(1rem, 5vh, 3rem);
        padding-inline: max(1rem, 5vw);
    }
}

@layer components {
    /* Modern Button Components */
    .btn-modern {
        padding-block: var(--space-sm);
        padding-inline: var(--space-lg);
        border-radius: var(--border-radius);
        font-size: var(--font-size-base);
        font-weight: 500;
        border: 0;
        cursor: pointer;
        transition: var(--transition-fast);
        background: var(--color-accent);
        color: white;
    }
    
    .btn-modern:hover {
        background: var(--color-accent-light);
        transform: translateY(-1px);
    }
    
    .btn-modern:active {
        transform: translateY(0);
    }
    
    /* Container Queries - Component-based Responsive Design */
    .card-container {
        container-type: inline-size;
        container-name: card-layout;
    }
    
    @container card-layout (max-width: 400px) {
        .card {
            flex-direction: column;
            gap: var(--space-sm);
        }
        
        .card-image {
            width: 100%;
            height: auto;
        }
    }
    
    @container card-layout (min-width: 401px) {
        .card {
            flex-direction: row;
            gap: var(--space-lg);
        }
        
        .card-image {
            width: 40%;
            height: auto;
        }
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile Performance Optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* GPU acceleration for smoother scrolling */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Optimize font loading for mobile */
@media (max-width: 768px) {
    body {
        /* Use system fonts for faster loading on mobile */
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-display: swap; /* Improve font loading performance */
        /* Force light theme on mobile */
        background-color: #fff !important;
        color: #2d3748 !important;
    }
    
    html {
        background-color: #fff !important;
    }
    
    .container {
        background-color: #fff;
    }
    
    .header-blue {
        background-color: #1e3a8a !important;
        color: white !important;
    }
    
    main {
        background-color: #fff;
    }
    
    /* Optimize images for mobile data usage */
    img {
        image-rendering: optimizeQuality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Enhanced Accessibility - Respect User Preferences */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
    
    /* High Contrast Mode Support - Only for desktop */
    
    /* Ensure consistent light theme across all mobile breakpoints */
    * {
        background-color: inherit;
    }
    
    .article-content {
        background-color: #fff;
        color: #2d3748;
    }
}

/* Improved touch targets for mobile */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Advanced Scrolling Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem; /* Account for sticky header */
}

/* Modern Focus Management */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* Optimize focus states for mobile */
@media (max-width: 768px) {
    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        transform: translateY(-1px);
    }
    
    /* Better spacing for mobile reading */
    .article-content {
        padding-inline: var(--space-sm);
    }
    
    /* Improved mobile button sizing and touch targets */
    .cta-button-primary,
    .cta-button-secondary {
        min-block-size: var(--space-2xl); /* 48px touch target */
        padding-block: calc(var(--space-md) - 2px);
        padding-inline: var(--space-lg);
        display: block;
        inline-size: 100%;
        text-align: center;
        margin-block-end: var(--space-sm);
        font-size: clamp(var(--font-size-base), 4vw, var(--font-size-lg));
        touch-action: manipulation;
        -webkit-appearance: none;
        border: none;
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    /* Enhanced touch feedback */
    .cta-button-primary:active,
    .cta-button-secondary:active {
        transform: scale(0.98);
    }
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header styles */
.header-blue {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.site-title {
    font-size: var(--font-size-xl);
    font-weight: bold;
    letter-spacing: 0.125rem;
    margin: 0;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
}

.trustpilot-img {
    max-height: var(--img-trustpilot);
    width: auto;
}

/* Mobile Header Optimizations */
@media (max-width: 768px) {
    .header-blue {
        padding: var(--header-padding-mobile) 0;
    }
    
    .site-title {
        font-size: var(--font-size-base);
        letter-spacing: 0.0625rem;
        line-height: 1.2;
    }
    
    .trustpilot-img {
        max-height: var(--img-trustpilot-sm);
    }
    
    .header-blue .container {
        padding: 0 var(--container-padding);
    }
    
    .header-blue .container .row {
        align-items: center;
        margin: 0;
    }
    
    .header-blue .col-md-6 {
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: var(--font-size-sm);
        letter-spacing: 0.03125rem;
    }
    
    .trustpilot-img {
        max-height: var(--img-trustpilot-xs);
    }
    
    .header-blue .col-md-6 {
        padding: 0 var(--space-xs);
    }
}

/* Article header styles */
.article-header {
    margin-bottom: var(--space-article);
}

.publication-info {
    font-size: var(--font-size-md);
    color: var(--color-text-secondary);
    display: flex;
    gap: var(--space-md);
    align-items: center;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.publisher {
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.article-title {
    font-size: clamp(var(--font-size-xl), 5vw, var(--font-size-2xl));
    font-weight: 700;
    color: #1a202c;
    margin-block: var(--space-xl) var(--space-lg);
    line-height: 1.25;
    letter-spacing: -0.025em;
    max-width: 90%;
}

.article-subtitle {
    font-size: var(--font-size-lg);
    color: #4a5568;
    font-style: italic;
    font-weight: 400;
    margin-bottom: var(--space-article);
    line-height: 1.4;
    max-width: 85%;
}

/* Mobile Typography Scaling */
@media (max-width: 768px) {
    .article-header {
        margin-bottom: var(--space-xl);
    }
    
    .publication-info {
        font-size: 0.8125rem;
        gap: var(--space-sm);
        flex-wrap: wrap;
    }
    
    .article-title {
        font-size: 1.75rem;
        margin: var(--space-lg) 0 var(--space-md) 0;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .article-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-xl);
        max-width: 100%;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: var(--font-size-xl);
        margin: var(--space-md) 0 var(--space-sm) 0;
        line-height: 1.35;
    }
    
    .article-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: 1.5625rem;
        line-height: 1.5;
    }
    
    .publication-info {
        font-size: var(--font-size-xs);
        gap: var(--space-sm);
    }
}

/* Author info styles */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex-grow: 1;
}

.author-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.author-bio {
    font-size: var(--font-size-sm);
    color: #666;
}

.engagement-stats {
    display: flex;
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: var(--font-size-sm);
}

.stat i {
    color: #dc2626;
}

/* Mobile Author Layout Optimization */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--mobile-gap-sm);
        padding: var(--mobile-gap-sm) 0;
    }
    
    .author-info-row {
        display: flex;
        align-items: center;
        gap: var(--mobile-gap-xs);
        width: 100%;
    }
    
    .author-avatar {
        width: 2.8125rem;
        height: 2.8125rem;
        flex-shrink: 0;
    }
    
    .author-name {
        font-size: var(--font-size-md);
        margin-bottom: var(--mobile-padding-xs);
    }
    
    .author-bio {
        font-size: var(--mobile-font-xs);
        line-height: 1.4;
    }
    
    .engagement-stats {
        gap: var(--mobile-gap-sm);
        margin-top: var(--mobile-margin-sm);
    }
    
    .stat {
        font-size: var(--mobile-font-xs);
    }
}

@media (max-width: 480px) {
    .author-info {
        gap: var(--mobile-gap-xs);
        padding: var(--mobile-gap-xs) 0;
    }
    
    .author-avatar {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .author-name {
        font-size: var(--font-size-sm);
    }
    
    .author-bio {
        font-size: var(--font-size-xs);
    }
    
    .engagement-stats {
        gap: var(--mobile-gap-xs);
    }
    
    .stat {
        font-size: var(--font-size-xs);
        gap: var(--mobile-padding-xs);
    }
}

/* Content styles */
.article-content {
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--color-text-primary);
}

.article-content p {
    margin-bottom: 1.5em;
    color: var(--color-text-primary);
}

/* Proper spacing around bank statement */
.article-content .pre-statement {
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.article-content .post-statement {
    margin-top: var(--space-lg);
    font-weight: 500;
    line-height: 1.6;
}

.article-content .bank-statement-container + p,
.article-content p + .bank-statement-container {
    margin-top: 0;
}

.article-content p:has(+ .bank-statement-container) {
    margin-bottom: 0;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content strong {
    font-weight: 600;
    color: #1a202c;
}

.article-content em {
    font-style: italic;
    color: #4a5568;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin: 50px 0 35px 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.question-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin: 40px 0 25px 0;
}

/* Mobile Content Spacing Optimization */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    main.container {
        margin-top: var(--space-lg);
    }
    
    .article-content {
        font-size: var(--font-size-base);
        line-height: 1.65;
        padding: 0 var(--mobile-margin-sm);
    }
    
    .article-content p {
        margin-bottom: 1.4em;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
        margin: 2.1875rem 0 1.5625rem 0;
        line-height: 1.35;
    }
    
    .question-title {
        font-size: var(--font-size-lg);
        margin: var(--mobile-margin-lg) 0 var(--space-lg) 0;
        line-height: 1.4;
    }
    
    /* Better mobile paragraph spacing */
    .article-content p:first-child {
        margin-top: 0;
    }
    
    .article-content h2 + p {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    body {
        background-color: #fff !important;
        color: #2d3748 !important;
    }
    
    .container {
        padding: 0 var(--mobile-gap-sm);
        background-color: #fff;
    }
    
    main.container {
        margin-top: var(--mobile-gap-sm);
        background-color: #fff;
    }
    
    .article-content {
        font-size: var(--font-size-md);
        line-height: 1.6;
        padding: 0;
    }
    
    .article-content p {
        margin-bottom: 1.3em;
    }
    
    .section-title {
        font-size: 1.375rem;
        margin: var(--mobile-margin-lg) 0 var(--space-lg) 0;
        line-height: 1.4;
    }
    
    .question-title {
        font-size: var(--font-size-base);
        margin: 1.5625rem 0 var(--mobile-gap-sm) 0;
    }
}

.content-image {
    margin: 35px 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: contain;
}

.image-caption {
    font-size: 15px;
    color: #718096;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    margin-top: 8px;
}

/* Mobile Image Optimization */
@media (max-width: 768px) {
    .content-image {
        margin: var(--mobile-margin-lg) 0;
    }
    
    .content-image img {
        border-radius: var(--border-radius);
        box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    }
    
    .image-caption {
        font-size: var(--mobile-font-xs);
        margin-top: var(--mobile-margin-md);
        padding: 0 var(--space-sm);
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .content-image {
        margin: 1.5625rem 0;
    }
    
    .content-image img {
        border-radius: var(--space-xs);
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    
    .image-caption {
        font-size: var(--font-size-xs);
        margin-top: var(--mobile-margin-sm);
        padding: 0 var(--mobile-margin-sm);
    }
}

/* Mobile Navigation UX Elements */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(30, 58, 138, 0.1);
    z-index: 1001;
}

.reading-progress-fill {
    height: 100%;
    background: #1e3a8a;
    width: 0%;
    transition: width 0.25s ease-out;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 2.8125rem;
        height: 2.8125rem;
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: var(--mobile-gap-sm);
        right: var(--mobile-gap-sm);
        width: 2.5rem;
        height: 2.5rem;
        font-size: var(--font-size-sm);
    }
    
    .reading-progress {
        height: 2px;
    }
}

/* Very Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    body {
        background-color: #fff !important;
        color: #2d3748 !important;
    }
    
    .container {
        padding: 0 var(--mobile-xxs-padding);
        background-color: #fff;
    }
    
    .article-title {
        font-size: var(--font-size-lg);
        line-height: 1.25;
        margin: var(--mobile-xxs-margin) 0 var(--space-sm) 0;
    }
    
    .article-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-lg);
    }
    
    .section-title {
        font-size: var(--font-size-lg);
        margin: var(--space-lg) 0 var(--space-md) 0;
    }
    
    .author-avatar {
        width: 2rem;
        height: 2rem;
    }
    
    .back-to-top {
        bottom: var(--mobile-xxs-padding);
        right: var(--mobile-xxs-padding);
        width: 2rem;
        height: 2rem;
        font-size: var(--font-size-xs);
    }
    
    .form-input, 
    .submit-button {
        font-size: 16px;
        padding: 16px 12px;
        min-height: 48px;
        min-width: 44px;
    }
    
    .cta-button-primary {
        font-size: 16px;
        padding: 16px 12px;
        min-height: 48px;
        width: 100%;
    }
    
    .site-title {
        font-size: var(--font-size-sm);
        letter-spacing: 0.025rem;
    }
    
    .trustpilot-img {
        max-height: 24px;
    }
    
    .header-blue .col-md-6 {
        padding: 0 4px;
    }
}

/* Links */
a {
    color: #1e3a8a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration-thickness: 2px;
}

/* CTA styles */
.cta-box {
    text-align: center;
    margin: 30px 0;
}

/* Final CTA section */
.final-cta-section {
    background-color: #f9fafb;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.final-cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.cta-features {
    margin: 30px 0;
}

.feature {
    font-size: var(--font-size-base);
    color: #374151;
    margin: 10px 0;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}

a.cta-button-primary {
    background-color: var(--color-success);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: var(--font-size-base);
    transition: background-color 0.3s ease;
    display: inline-block;
}

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

a.cta-button-secondary {
    background-color: transparent;
    color: var(--color-primary);
    padding: 15px 30px;
    text-decoration: underline;
    font-size: 16px;
    display: inline-block;
}

a.cta-button-secondary:hover {
    color: var(--color-primary-hover);
}

.trustpilot-footer-img {
    max-height: 60px;
    width: auto;
}

.trustpilot-section {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

/* Enhanced Mobile Design - Consolidated into main mobile breakpoints */
    
    .final-cta-title {
        font-size: 26px;
    }
    
    .author-info {
        flex-wrap: wrap;
        padding: 18px;
        text-align: center;
    }
    
    .engagement-stats {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .publication-info {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-section {
        padding: 30px 20px;
    }
    
    .content-image {
        margin: 25px 0;
    }
    
    .hero-image {
        margin-bottom: 25px;
    }
    
    .article-content .how-to-section {
        margin: 2.1875rem 0;
    }
    
    .step-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
}

/* Mobile breakpoints consolidated for better maintainability */
    
    .section-title {
        font-size: 24px;
        margin: var(--mobile-margin-lg) 0 var(--space-lg) 0;
    }
    
    .question-title {
        font-size: 20px;
        margin: 25px 0 18px 0;
    }
    
    .article-content {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .publication-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        font-size: var(--font-size-sm);
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 16px;
    }
    
    .engagement-stats {
        justify-content: center;
    }
    
    .final-cta-title {
        font-size: 22px;
    }
    
    .cta-button-primary {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .step-number {
        font-size: var(--font-size-base);
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .contact-form-integrated {
        padding: 20px 16px;
        margin-top: 25px;
    }
    
    .form-input {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .checkbox-label {
        font-size: 15px;
    }
}

/* Additional mobile image optimizations */
@media (max-width: 768px) {
    .content-image img,
    .hero-image img {
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .image-caption {
        font-size: var(--font-size-sm);
        margin-top: 12px;
        padding: 0 10px;
    }
}

/* Enhanced CTA Section Styles */
.enhanced-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.enhanced-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    color: white;
    padding-right: 40px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.cta-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.cta-main-title .highlight {
    color: #fbbf24;
}

.profit-highlight {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.profit-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
}

.profit-amount {
    display: block;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: var(--font-size-base);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.5;
}

.trader-info {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    margin-bottom: 35px;
}

.get-started-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
    color: white;
    text-decoration: none;
}

.mobile-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-mockup {
    width: 300px;
    height: 580px;
    background: #000;
    border-radius: 45px;
    padding: 25px 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    border: 3px solid #333;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d1117 100%);
    border-radius: 35px;
    height: 100%;
    padding: 30px 20px;
    overflow: hidden;
    position: relative;
}

.trader-list {
    color: white;
}

.list-header {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
}

.trader-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trader-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.trader-id {
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.trader-actions {
    display: flex;
    gap: 4px;
}

.invest-btn, .copy-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: none;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.trader-chart {
    height: 30px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    border-radius: 4px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.trader-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30"><path d="M0,25 Q25,5 50,15 T100,10" stroke="white" stroke-width="2" fill="none" opacity="0.8"/></svg>');
    background-size: cover;
}

.trader-stats {
    display: grid;
    gap: 2px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 9px;
    color: #9ca3af;
    font-weight: 500;
}

.stat-value {
    font-size: 10px;
    color: white;
    font-weight: 600;
}

.stat-value.gain-positive {
    color: #10b981;
}

/* Responsive Design for Enhanced CTA */
@media (max-width: 992px) {
    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-main-title {
        font-size: 36px;
    }
    
    .profit-amount {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .enhanced-cta-section {
        padding: 60px 0;
    }
    
    .cta-main-title {
        font-size: 32px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px 12px;
    }
    
    .phone-screen {
        padding: 20px 12px;
    }
}

/* Integrated Contact Form Styles */
.article-conclusion {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.contact-form-integrated {
    background: #fafafa;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    margin-top: 25px;
    max-width: 600px;
}

.simple-contact-form {
    background: transparent;
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: var(--btn-padding-sm);
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    line-height: 1.5;
    background: white;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-group {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-md);
    line-height: 1.5;
    color: #4a5568;
    cursor: pointer;
}

.checkbox-text {
    line-height: 1.4;
}

.submit-button {
    background: #6b7280;
    color: white;
    padding: var(--btn-padding-md);
    border: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #4b5563;
}

.form-note {
    font-size: var(--font-size-sm);
    color: #718096;
    line-height: 1.4;
    margin-top: var(--space-md);
    text-align: center;
}

@media (max-width: 768px) {
    .form-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-integrated {
        padding: 1.5625rem var(--space-lg);
        margin-top: var(--space-xl);
        border-radius: 0.75rem;
    }
    
    .form-input {
        padding: 1rem 1.125rem;
        font-size: 1.0625rem;
        border-radius: var(--border-radius-lg);
        min-height: 54px;
        -webkit-appearance: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .submit-button {
        width: 100%;
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 600;
        min-height: 54px;
        margin-top: 15px;
        border-radius: 8px;
    }
    
    .checkbox-label {
        font-size: 16px;
        line-height: 1.5;
        gap: 14px;
        padding: 10px 0;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }
    
    .form-note {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 20px;
        padding: 0 10px;
    }
}

.form-title-clean {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.form-subtitle-clean {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 0;
    font-weight: 400;
}

.lead-form-clean {
    padding: 45px 35px;
}

.form-grid-clean {
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
}

.form-group-clean {
    position: relative;
}

.form-input-clean {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
    box-sizing: border-box;
    font-weight: 400;
}

.form-input-clean:focus {
    border-color: #1e40af;
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

.form-input-clean::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

select.form-input-clean {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2394a3b8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
}

.checkbox-group-clean {
    margin-bottom: 32px;
}

.checkbox-clean {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    padding: 4px 0;
}

.checkbox-clean input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #1e40af;
    margin-top: 2px;
}

.checkbox-text-clean {
    color: #475569;
    flex: 1;
    font-weight: 400;
}

.btn-submit-clean {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    padding: 20px 32px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-submit-clean:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-submit-clean:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-info-clean {
    text-align: center;
    padding: 25px 35px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.contact-text-clean {
    color: #64748b;
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.contact-link-clean {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
}

.contact-link-clean:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

.form-message.success {
    background: #d1fae5;
    color: #047857;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lead-form-section {
        padding: 60px 20px;
    }
    
    .form-header-clean {
        padding: 30px 20px;
    }
    
    .form-title-clean {
        font-size: 24px;
    }
    
    .form-subtitle-clean {
        font-size: var(--font-size-sm);
    }
    
    .lead-form-clean {
        padding: 30px 20px;
    }
    
    .contact-info-clean {
        padding: 20px;
    }
}

.scroll-link {
    scroll-behavior: smooth;
}

/* How To Section Styles */
.how-to-section {
    background-color: #f8fafc;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px 0;
}

.step-box {
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    color: #dc2626;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-description {
    color: #374151;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.how-to-steps .row {
    align-items: stretch;
}

/* Promotional Banner Styles */
.promotional-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.promotional-banner img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.banner-caption {
    font-size: var(--font-size-base);
    color: #374151;
    font-style: italic;
    font-weight: 500;
}

/* Editorial Verification Section */
.editorial-verification {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    margin: 5px 0;
    position: relative;
}

.verification-header {
    margin-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 5px;
}

.verification-title {
    color: #374151;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verification-title i {
    color: #6b7280;
    font-size: 20px;
}

.verification-subtitle {
    color: #6b7280;
    font-size: 16px;
    font-style: italic;
    margin: 0;
}

.verification-content {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* CRITICAL: Remove ALL spacing around bank statement */
.verification-content .bank-statement-container {
    margin: 0;
    padding: 0;
}

.verification-content p:last-of-type {
    margin-bottom: 0;
}

.verification-quote {
    background: #f9fafb;
    color: #374151;
    padding: 20px 25px;
    border-left: 4px solid #d1d5db;
    border-radius: 4px;
    margin: 35px 0;
    font-size: 16px;
    line-height: 1.6;
}

.verification-quote footer {
    text-align: right;
    margin-top: 10px;
    font-weight: 500;
    color: #6b7280;
}

/* Authentic Bank Statement Document */
.bank-statement-container {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

.bank-statement {
    background: white;
    border: 1px solid #ddd;
    padding: 0 0 var(--space-lg) 0;
    font-family: Arial, sans-serif;
    max-width: 700px;
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    position: relative;
    margin: 0;
    box-sizing: border-box;
    
    /* Realistic document photo effect */
    border-radius: 4px;
    transform: perspective(800px) rotateX(1deg) rotateY(-0.5deg);
    box-shadow: 
        0 12px 24px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.06),
        0 0 0 1px rgba(0,0,0,0.04);
    
    /* Subtle paper texture */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.005) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 30%);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-statement:hover {
    transform: perspective(800px) rotateX(0.5deg) rotateY(-0.25deg) scale(1.005);
    box-shadow: 
        0 16px 32px rgba(0,0,0,0.12),
        0 6px 12px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.05);
}

.mono {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.security-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 120px;
    color: rgba(0, 160, 210, 0.025);
    font-weight: 900;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,160,210,0.1);
    opacity: 0.8;
}

.bank-statement > * {
    position: relative;
    z-index: 1;
}

/* Header with Barclays logo */
.statement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    border-bottom: 2px solid #e6f2f5;
    padding: var(--statement-padding);
    box-sizing: border-box;
    width: 100%;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
}

.statement-meta {
    text-align: right;
    font-size: var(--statement-font-xs);
    color: #666;
}

.statement-number {
    font-weight: bold;
    color: #333;
}

.generated-date {
    margin-top: var(--space-xs);
    color: #888;
}

.barclays-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.eagle-icon {
    color: #00a0d2;
    font-size: var(--font-size-base);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.barclays-text {
    color: #00a0d2;
    font-size: var(--font-size-xl);
    font-weight: bold;
    letter-spacing: 0.0625rem;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Customer and account section */
.customer-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--statement-gap);
    border-bottom: 1px solid #e6f2f5;
    padding: var(--space-md) var(--space-lg) var(--space-sm) var(--space-lg);
    box-sizing: border-box;
    width: 100%;
    background: #fcfcfd;
}

.customer-address {
    font-size: var(--statement-font-mini);
    line-height: 1.5;
    box-sizing: border-box;
}

.account-details {
    text-align: right;
    font-size: var(--statement-font-mini);
    box-sizing: border-box;
    line-height: 1.4;
}

.account-info strong {
    font-size: var(--font-size-xs);
    color: #333;
}

.date {
    color: #666;
    font-size: var(--statement-font-xs);
}

/* Statement title */
.statement-title {
    font-size: var(--font-size-base);
    color: #00a0d2;
    font-weight: bold;
    margin: var(--statement-margin);
    text-align: center;
    padding: var(--space-sm) 0;
    box-sizing: border-box;
    line-height: 1.2;
    border-top: 2px solid #e6f2f5;
    border-bottom: 2px solid #e6f2f5;
    background: #f8fbfc;
}

/* Account summary boxes */
.account-summary {
    display: flex;
    gap: var(--statement-gap);
    margin: 0 var(--space-lg) var(--space-lg) var(--space-lg);
    box-sizing: border-box;
    width: calc(100% - 40px);
}

.summary-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 100%);
    border: 2px solid #c5e3ed;
    padding: var(--statement-gap) var(--space-lg);
    flex: 1;
    text-align: center;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 160, 210, 0.08);
}

.box-label {
    font-size: var(--statement-font-xs);
    color: #666;
    margin-bottom: 4px;
}

.box-value {
    font-size: var(--font-size-sm);
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.box-date {
    font-size: var(--statement-font-xxs);
    color: #888;
}

/* Transaction details section */
.transaction-details {
    margin: 0 var(--space-lg) 1.5625rem var(--space-lg);
    box-sizing: border-box;
}

.details-header {
    background: linear-gradient(135deg, #00a0d2 0%, #0090c0 100%);
    color: white;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 2px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 4px rgba(0, 160, 210, 0.2);
}

.transaction-list {
    border: 1px solid #ddd;
    border-top: none;
}

.transaction-item {
    display: grid;
    grid-template-columns: 70px 2.5fr 90px 90px;
    padding: 16px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 11px;
    align-items: center;
    background: white;
    gap: 12px;
    box-sizing: border-box;
    line-height: 1.3;
    transition: background-color 0.2s ease;
}

.trans-ref {
    color: #666;
    font-size: 9px;
    margin-top: 3px;
    font-family: 'Courier New', monospace;
}

.trans-amount, .trans-balance {
    text-align: right;
}

.transaction-item:nth-child(even) {
    background: #fafbfc;
}

.bank-statement .transaction-item.highlight {
    background: #e8f4f8;
    border: 2px solid #00a0d2;
    position: relative;
    animation: highlight-pulse 3s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(0,160,210,0.1);
    border-radius: 3px;
}

.transaction-item.highlight::before {
    content: "★";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00a0d2;
    font-size: 16px;
    animation: star-twinkle 2s ease-in-out infinite;
}

.trans-date {
    font-weight: bold;
    color: #333;
}

.trans-desc {
    color: #333;
    line-height: 1.3;
}

.trans-desc small {
    display: block;
    color: #666;
    font-size: 10px;
    margin-top: 2px;
}

.trans-amount {
    text-align: right;
    font-weight: bold;
}

.trans-amount.credit {
    color: #1a5f1a;
}

.trans-amount.credit::before {
    content: "£";
}

.trans-amount.debit {
    color: #b91c1c;
}

.trans-amount.debit::before {
    content: "£";
}

.trans-balance {
    text-align: right;
    color: #333;
    font-weight: bold;
}

.trans-balance::before {
    content: "£";
}

/* Pending transactions section */
.pending-section {
    margin: 25px 20px 0 20px;
    border-top: 2px solid #e6f2f5;
    padding-top: 18px;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7f9 100%);
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pending-header {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #dee2e6;
    border-bottom: none;
}

.pending-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background: #fafbfc;
    font-size: 10px;
    color: #666;
}

/* Footer */
.statement-footer {
    border-top: 3px solid #e6f2f5;
    padding: 18px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 25px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
}

.footer-info {
    font-size: 8px;
    color: #666;
    line-height: 1.4;
    max-width: 65%;
}

.security-code {
    text-align: right;
    font-size: 9px;
}

.security-code div {
    margin-bottom: 3px;
}

.page-info {
    color: #333;
}

@keyframes highlight-pulse {
    0%, 100% { 
        background: #e8f4f8;
        box-shadow: 0 0 8px rgba(0,160,210,0.3);
    }
    50% { 
        background: #d1e7f0;
        box-shadow: 0 0 15px rgba(0,160,210,0.5);
    }
}

@keyframes star-twinkle {
    0%, 100% { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Mobile responsiveness for bank statement */
@media (max-width: 768px) {
    .editorial-verification {
        padding: 15px 10px;
    }
    
    .verification-title {
        font-size: 22px;
        flex-direction: column;
        gap: 5px;
    }
    
    .verification-content {
        padding: 0;
        margin: 0;
    }
    
    .bank-statement {
        padding: 0;
        font-size: 13px;
        transform: perspective(600px) rotateX(0.5deg) rotateY(-0.25deg);
        margin: 0;
    }
    
    .bank-statement:hover {
        transform: perspective(600px) rotateX(0.25deg) rotateY(-0.125deg) scale(1.01);
    }
    
    .bank-statement-container {
        padding: 0;
        margin: 0;
    }
    
    .article-content .pre-statement {
        margin-bottom: var(--space-xs);
    }
    
    .article-content .post-statement {
        margin-top: var(--space-md);
    }
    
    .customer-section {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px 10px 15px;
    }
    
    .account-details {
        text-align: left;
    }
    
    .statement-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 15px 10px 15px;
    }
    
    .statement-meta {
        text-align: left;
    }
    
    .account-summary {
        flex-direction: column;
        gap: 10px;
    }
    
    .transaction-item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        border: 1px solid #ddd;
        margin-bottom: 4px;
        box-sizing: border-box;
    }
    
    .trans-date::before { content: "Date: "; font-weight: bold; color: #666; }
    .trans-desc::before { content: "Description: "; font-weight: bold; color: #666; display: block; }
    .trans-amount::before { content: "Amount: £"; font-weight: bold; color: #666; }
    .trans-balance::before { content: "Balance: £"; font-weight: bold; color: #666; }
    
    .trans-amount.credit::before { content: "Amount: +£"; color: #1a5f1a; }
    .trans-amount.debit::before { content: "Amount: -£"; color: #b91c1c; }
    
    .trans-ref {
        margin-top: 5px;
        padding-left: 0;
    }
    
    .statement-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .footer-info {
        max-width: 100%;
    }
    
    .verification-quote {
        font-size: 16px;
        padding: 15px 20px;
        margin: 25px 0;
    }
}

/* Timeslot Selection Styles */
.form-help {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

#specificTimeGroup {
    transition: all 0.3s ease;
    overflow: hidden;
}

#specificTimeGroup[style*="display: none"] {
    max-height: 0;
    margin: 0;
    padding: 0;
}

#specificTimeGroup[style*="display: block"] {
    max-height: 200px;
}

/* Style datetime-local input consistently */
input[type="datetime-local"].form-input {
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
}

/* Button text transitions */
.button-text {
    transition: opacity 0.2s ease;
}

/* Enhanced form field animations */
.field-group {
    transition: all 0.3s ease;
}

.field-group:focus-within {
    transform: translateY(-2px);
}

/* Enhanced Phone Input with Country Code */
.phone-input-group {
    position: relative;
}

.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-1px);
}

.country-code-prefix {
    background: #f8fafc;
    color: #1e3a8a;
    font-weight: 600;
    padding: 12px 16px;
    border-right: 1px solid #e2e8f0;
    font-size: 16px;
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-input {
    border: none !important;
    outline: none !important;
    padding: 12px 16px !important;
    flex: 1;
    font-size: 16px;
    background: transparent;
    box-shadow: none !important;
}

.phone-input:focus {
    box-shadow: none !important;
    border: none !important;
}

/* Enhanced CTA Button Styling */
.cta-submit-button {
    position: relative;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    margin-top: 24px;
}

.cta-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.cta-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
}

.cta-submit-button:hover .cta-icon {
    transform: rotate(5deg) scale(1.1);
}

.cta-submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.cta-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.cta-submit-button:hover .cta-shine-effect {
    animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.cta-submit-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
}

.cta-submit-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
}

/* Mobile responsiveness for enhanced elements */
@media (max-width: 768px) {
    .phone-input-container {
        border-radius: 6px;
    }
    
    .country-code-prefix {
        padding: 10px 12px;
        font-size: 14px;
        min-width: 50px;
    }
    
    .phone-input {
        padding: 10px 12px !important;
        font-size: 16px;
    }
    
    .cta-submit-button {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 56px;
    }
    
    .cta-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cta-submit-button {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 52px;
    }
    
    .country-code-prefix {
        padding: 8px 10px;
        font-size: 13px;
        min-width: 45px;
    }
    
    .phone-input {
        padding: 8px 12px !important;
        font-size: 15px;
    }
}

/* Mobile responsiveness for new fields */
@media (max-width: 768px) {
    .form-help {
        font-size: 11px;
        margin-top: 3px;
    }
    
    input[type="datetime-local"].form-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Editorial Design Enhancements - Professional Blog Styling */

/* Article Icons and Visual Elements */
.article-icon {
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 0.9em;
    opacity: 0.8;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 2rem 0;
    position: relative;
}

.section-divider.mini {
    margin: 2rem 0 1.5rem 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.section-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.section-divider.mini .section-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 16px;
}

.title-icon {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 0.85em;
    opacity: 0.7;
}

/* Enhanced Author Card */
.author-card {
    display: flex;
    align-items: center;
    background: var(--color-bg-accent);
    padding: 16px 20px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
}

.author-icon {
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 0.9em;
}

.author-details .author-bio {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.author-details .author-bio i {
    color: var(--color-text-muted);
    font-size: 0.85em;
}

.reading-time {
    color: var(--color-primary) !important;
    font-weight: 500;
}

.engagement-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: auto;
}

/* Problem List Styling */
.problem-list {
    background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 100%);
    border: 1px solid #fed7aa;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin: 2rem 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(254, 215, 170, 0.3);
}

.problem-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.problem-icon {
    color: #ea580c;
    font-size: 20px;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.problem-content strong {
    color: #ea580c;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.problem-content p {
    margin: 0;
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Steps Process Styling */
.steps-process {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.steps-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}

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

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 26px;
    top: 56px;
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--color-primary-light), transparent);
}

.step-number {
    background: var(--color-primary);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    position: relative;
}

.step-number i {
    position: absolute;
    font-size: 16px;
    opacity: 0.3;
}

.step-number span {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    color: var(--color-primary);
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Platform Comparison Cards */
.platform-comparison {
    display: grid;
    gap: 20px;
    margin: 2rem 0;
}

.platform-card {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition-base);
    position: relative;
}

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

.platform-card.featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, #fef7f0 0%, #f0f9ff 100%);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.platform-icon {
    color: var(--color-primary);
    font-size: 20px;
}

.platform-card.featured .platform-icon {
    color: #ea580c;
}

.platform-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.platform-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.featured-badge {
    background: var(--color-primary);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced CTA Section */
.cta-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-main-icon {
    color: var(--color-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.cta-title {
    margin: 0;
    color: var(--color-primary);
}

.cta-intro {
    text-align: center;
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.cta-process {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    margin: 2rem 0;
}

.cta-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.cta-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.cta-step:last-child {
    margin-bottom: 0;
}

.cta-step-icon {
    background: var(--color-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 18px;
}

.cta-step-content {
    flex: 1;
}

.step-label {
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}

.step-text {
    color: var(--color-text-primary);
    line-height: 1.5;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .section-divider {
        margin: 2rem 0 1.5rem 0;
    }
    
    .section-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 0 12px;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .engagement-stats {
        margin-left: 0;
        justify-content: center;
    }
    
    .problem-item,
    .step-item,
    .cta-step {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-icon,
    .step-number,
    .cta-step-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .platform-comparison {
        grid-template-columns: 1fr;
    }
    
    .platform-header {
        justify-content: center;
        text-align: center;
    }
    
    .step-item::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .problem-list,
    .steps-process,
    .cta-process {
        padding: 20px 16px;
        margin: 1.5rem 0;
    }
    
    .platform-card {
        padding: 16px;
    }
    
    .cta-main-icon {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .cta-step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Ultra-Small Device Support (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .site-title {
        font-size: 12px;
        letter-spacing: 0.02rem;
    }
    
    .trustpilot-img {
        max-height: 20px;
    }
    
    .header-blue .col-md-6 {
        padding: 0 2px;
    }
    
    .article-title {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .btn-primary, 
    .cta-button-primary,
    .form-input,
    .form-textarea {
        font-size: 16px;
        min-height: 48px;
        padding: 16px 8px;
    }
    
    .bank-statement {
        font-size: 11px;
    }
}
