/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #1a202c;
    line-height: 1.7;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

/* Brand color palette - refined */
:root {
    --primary-dark: #0D1B2A;
    --brand-blue: #5B4AFF;
    --accent-cyan: #00D9FF;
    --accent-purple: #9333EA;
    --text-light: #f1f5f9;
    --text-muted: #64748B;
    --border-light: #e2e8f0;
    --bg-light: #f8fafc;
}

/* Header / Navigation */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2f4a 100%);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo:hover,
.logo:focus {
    transform: scale(1.05);
    outline: 2px solid var(--accent-cyan);
    outline-offset: 4px;
    border-radius: 4px;
}

.logo span {
    color: var(--accent-cyan);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section with Mountain Background */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(13, 27, 42, 0.4), rgba(13, 27, 42, 0.35)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&h=900&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 27, 42, 0.2) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.2);
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #e2e8f0;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

/* CTA Button styling */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #7c3aed 100%);
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 74, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(91, 74, 255, 0.4);
    outline: none;
}

.cta-button:focus {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.cta-button-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
    outline: none;
}

.cta-button-secondary:focus {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Methodology Section */
.methodology {
    padding: 120px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 74, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 40px;
}

/* Methodology Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.methodology-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
    transition: height 0.3s ease;
}

.methodology-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-cyan), #00ffcc);
}

.methodology-card:nth-child(3)::before {
    background: linear-gradient(90deg, #9333EA, var(--brand-blue));
}

.methodology-card:nth-child(1) { animation-delay: 0.1s; }
.methodology-card:nth-child(2) { animation-delay: 0.2s; }
.methodology-card:nth-child(3) { animation-delay: 0.3s; }

.methodology-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 243, 247, 0.5) 100%);
}

.methodology-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(91, 74, 255, 0.2);
}

.methodology-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.methodology-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.2);
}

.methodology-card:hover::before {
    height: 8px;
}

.methodology-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.methodology-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.card-number {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan));
    color: white;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(91, 74, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.methodology-card:nth-child(2) .card-number {
    background: linear-gradient(135deg, var(--accent-cyan), #00ffcc);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.methodology-card:nth-child(3) .card-number {
    background: linear-gradient(135deg, #9333EA, var(--brand-blue));
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.methodology-card:hover .card-number {
    transform: scale(1.15) rotate(-5deg);
    filter: brightness(1.2);
}

/* Code Section */
.code-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.code-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.code-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.code-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: block;
}

.code-block {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f3f7 100%);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 40px;
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.code-block:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-cyan);
}

.code-block code {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1a202c;
}

.code-keyword {
    color: #7C3AED;
    font-weight: 700;
}

.code-string {
    color: #059669;
}

.code-comment {
    color: #6B7280;
    font-style: italic;
}

.code-function {
    color: #1E40AF;
    font-weight: 700;
}

/* Audit Section */
.audit-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #0D1B2A 0%, #1a2f4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.audit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.audit-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.audit-header {
    margin-bottom: 70px;
    animation: heroFadeIn 1s ease-out;
}

.audit-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audit-header p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.8;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.url-input {
    background-color: rgba(31, 41, 55, 0.6);
    border: 2px solid #374151;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: #e2e8f0;
    transition: all 0.4s ease;
    font-family: 'Courier New', monospace;
    backdrop-filter: blur(10px);
}

.url-input:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    background-color: rgba(15, 23, 42, 0.8);
}

.url-input::placeholder {
    color: #6b7280;
}

.audit-button-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.audit-btn {
    flex: 1;
    padding: 16px 28px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.audit-btn-reset {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.8), rgba(75, 85, 99, 0.8));
    color: #e2e8f0;
    border-color: #4b5563;
}

.audit-btn-reset:hover,
.audit-btn-reset:focus {
    background: linear-gradient(135deg, #4b5563, #5a6b7a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.audit-btn-analyze {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00ffcc 100%);
    color: #0D1B2A;
    font-weight: 900;
    position: relative;
    overflow: hidden;
}

.audit-btn-analyze::after {
    content: ' →';
}

.audit-btn-analyze:hover,
.audit-btn-analyze:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
}

.audit-btn-reset:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.audit-btn-analyze:focus {
    outline: 2px solid #0D1B2A;
    outline-offset: 2px;
}

.audit-score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-circle {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.2));
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle-background {
    fill: none;
    stroke: rgba(55, 65, 81, 0.5);
    stroke-width: 8;
}

.score-circle-progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-cyan);
    line-height: 1;
    text-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.score-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.score-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(248, 113, 113, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
    border-radius: 10px;
    font-size: 1rem;
    color: #fca5a5;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.status-icon {
    width: 28px;
    height: 28px;
    background-color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* The Shift Section */
.shift-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.shift-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.shift-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.shift-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.shift-card:nth-child(1) { animation-delay: 0.1s; }
.shift-card:nth-child(2) { animation-delay: 0.2s; }

.shift-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-cyan);
}

.shift-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
}

.shift-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.shift-stat-box {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.shift-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(241, 245, 249, 0.5);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.shift-card:hover .chart-bar {
    filter: brightness(1.1);
}

/* Industry Solutions Section */
.solutions-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(91, 74, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    align-items: stretch;
}

.solution-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
    transition: height 0.3s ease;
}

.solution-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.solution-card:nth-child(3)::before {
    background: linear-gradient(90deg, #10b981, var(--brand-blue));
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-cyan);
}

.solution-card:hover::before {
    height: 8px;
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.solution-challenge {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.solution-benefits {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.solution-benefits h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

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

.solution-benefits li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.solution-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 800;
}

/* Technical Trust Section */
.technical-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #0D1B2A 0%, #1a2f4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.technical-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.technical-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.technical-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    animation: fadeInUp 0.6s ease-out;
}

.technical-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technical-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.8;
}

.technical-accent {
    font-size: 12rem;
    text-align: center;
    opacity: 0.15;
}

.technical-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tech-step {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
}

.tech-step:nth-child(1) { animation-delay: 0.1s; }
.tech-step:nth-child(2) { animation-delay: 0.2s; }
.tech-step:nth-child(3) { animation-delay: 0.3s; }
.tech-step:nth-child(4) { animation-delay: 0.4s; }

.tech-step:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.step-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), #00ffcc);
    color: #0D1B2A;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-step:hover .step-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.tech-step h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tech-step p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

.tech-detail {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.technical-assurance {
    padding: 50px;
    background: linear-gradient(135deg, rgba(91, 74, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    margin-top: 80px;
}

.technical-assurance h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.assurance-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 25px;
    background: rgba(13, 27, 42, 0.4);
    border-radius: 12px;
    border-left: 4px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-4px);
    background: rgba(13, 27, 42, 0.6);
    border-left-color: #00ffcc;
}

.assurance-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-cyan);
    font-weight: 900;
}

.assurance-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.assurance-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-weight: 400;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0D1B2A 0%, #1a2f4a 100%);
    color: #cbd5e1;
    text-align: center;
    padding: 60px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 400;
}

footer p:first-child {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

footer a:hover {
    color: white;
}

/* Responsive design */
@media (max-width: 1024px) {
    .audit-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .score-circle {
        width: 180px;
        height: 180px;
    }

    .score-value {
        font-size: 3.5rem;
    }

    .technical-header {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 4%;
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .methodology {
        padding: 80px 4%;
    }

    .methodology-grid {
        gap: 30px;
    }

    .methodology-card {
        padding: 35px;
    }

    .audit-header h2 {
        font-size: 2rem;
    }

    .audit-section {
        padding: 80px 4%;
    }

    .code-section {
        padding: 80px 4%;
    }

    .shift-section {
        padding: 80px 4%;
    }

    .shift-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-section {
        padding: 80px 4%;
    }

    .technical-section {
        padding: 80px 4%;
    }

    .technical-header {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .technical-accent {
        font-size: 8rem;
        opacity: 0.1;
    }

    .technical-text h2 {
        font-size: 2rem;
    }

    .technical-steps {
        gap: 30px;
    }

    /* Inline style adjustments for tablets */
    section[style*="padding: 120px"] {
        padding: 80px 4% !important;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .audit-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .score-value {
        font-size: 2.5rem;
    }

    .shift-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .solution-card {
        padding: 30px;
    }

    .technical-header {
        margin-bottom: 40px;
    }

    .technical-text h2 {
        font-size: 1.6rem;
    }

    .tech-step {
        padding: 30px;
    }

    .technical-assurance {
        padding: 30px;
    }

    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Responsive inline styles for mobile */
    section[style*="padding: 120px"] {
        padding: 60px 5% !important;
    }

    section h2 {
        font-size: 1.6rem !important;
    }

    section p {
        font-size: 0.95rem !important;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-toggle {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 20px;
        font-size: 0.9rem;
    }
}
