:root {
    --navy-blue: #162454;
    --bright-red: #EE252C;
    --white: #FFFFFF;
    --light-gray-bg: #F5F7FB;
    --border-gray: #E5E7EB;
    --dark-text: #0F172A;
    --medium-gray: #64748B;
    --light-text: #94A3B8;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-red) 0%, #ff3d44 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(238, 37, 44, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d41f25 0%, #ee252c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 37, 44, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0f1a3d 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(22, 36, 84, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0f1a3d 0%, var(--navy-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 36, 84, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    box-shadow: 0 2px 10px rgba(22, 36, 84, 0.1);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    box-shadow: 0 4px 20px rgba(22, 36, 84, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.12);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), #ff4d54);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--bright-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--bright-red);
    font-weight: 600;
}

.btn-consultation {
    padding: 12px 28px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0a0f24 0%, #162454 40%, #1a2d5f 70%, #0d1633 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(238, 37, 44, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238, 37, 44, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(238, 37, 44, 0.08) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(238, 37, 44, 0.03) 2px,
            rgba(238, 37, 44, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(238, 37, 44, 0.03) 2px,
            rgba(238, 37, 44, 0.03) 4px
        );
    background-size: 50px 50px;
    opacity: 0.4;
}

@keyframes heroGlow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05) rotate(2deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--bright-red), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red), #ff6b70);
    border-radius: 2px;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(238, 37, 44, 0.2);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #ff3d44 0%, var(--bright-red) 50%, #ff6b70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

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

.hero-text p {
    font-size: 21px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn:first-child {
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.hero-buttons .btn:last-child {
    animation: scaleIn 0.6s ease-out 0.7s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(238, 37, 44, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: visualPulse 8s ease-in-out infinite;
}

.hero-visual::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    border: 2px dashed rgba(238, 37, 44, 0.15);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(238, 37, 44, 0.3);
    font-weight: 700;
}

@keyframes visualPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 0.3; 
    }
}

@keyframes rotateRing {
    from { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    to { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

.hero-visual .ring-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(238, 37, 44, 0.4);
    z-index: 1;
    top: 50%;
    left: 50%;
}

.hero-visual .ring-arrow::before {
    content: '→';
    display: block;
}

.hero-visual .ring-arrow-1 {
    animation: orbitArrow1 25s linear infinite;
}

.hero-visual .ring-arrow-2 {
    animation: orbitArrow2 25s linear infinite;
}

.hero-visual .ring-arrow-3 {
    animation: orbitArrow3 25s linear infinite;
}

.hero-visual .ring-arrow-4 {
    animation: orbitArrow4 25s linear infinite;
}

@keyframes orbitArrow1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(225px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(225px) rotate(-360deg);
    }
}

@keyframes orbitArrow2 {
    from {
        transform: translate(-50%, -50%) rotate(90deg) translateX(225px) rotate(-90deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(450deg) translateX(225px) rotate(-450deg);
    }
}

@keyframes orbitArrow3 {
    from {
        transform: translate(-50%, -50%) rotate(180deg) translateX(225px) rotate(-180deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(540deg) translateX(225px) rotate(-540deg);
    }
}

@keyframes orbitArrow4 {
    from {
        transform: translate(-50%, -50%) rotate(270deg) translateX(225px) rotate(-270deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(630deg) translateX(225px) rotate(-630deg);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    position: absolute;
    border: 1px solid rgba(238, 37, 44, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(238, 37, 44, 0.4), rgba(255, 107, 112, 0.4));
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(238, 37, 44, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(238, 37, 44, 0.4);
}

.hero-card.card-1 {
    top: 0;
    right: 0;
    width: 240px;
    animation: floatCard 5s ease-in-out infinite, slideInCard 0.8s ease-out 0.6s forwards;
}

.hero-card.card-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 260px;
    animation: floatCard 5s ease-in-out infinite 0.8s, slideInCard 0.8s ease-out 1s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card.card-3 {
    bottom: 0;
    right: 60px;
    width: 235px;
    animation: floatCard 5s ease-in-out infinite 1.6s, slideInCard 0.8s ease-out 1.4s forwards;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-20px);
    }
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(238, 37, 44, 0.4);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.hero-card .metric {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
    display: block;
    letter-spacing: -1px;
}

.hero-card .label {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-card .badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(238, 37, 44, 0.1), rgba(238, 37, 44, 0.05));
    border: 1px solid rgba(238, 37, 44, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bright-red);
    margin-top: 12px;
}

.hero-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(238, 37, 44, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-card .icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

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

.hero-card .icon-wrapper svg,
.hero-card .icon-wrapper::after {
    content: '◉';
    font-size: 24px;
    color: white;
    z-index: 1;
    position: relative;
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(238, 37, 44, 0.2);
    animation: rotate360 30s linear infinite reverse;
}

.hero-decorative-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    opacity: 0.4;
}

.hero-decorative-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    opacity: 0.3;
    animation-duration: 40s;
}

.hero-decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(238, 37, 44, 0.5);
    animation: float 3s ease-in-out infinite;
}

.hero-decorative-dot.dot-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.hero-decorative-dot.dot-2 {
    top: 45%;
    right: 10%;
    animation-delay: 0.5s;
}

.hero-decorative-dot.dot-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

.hero-decorative-dot.dot-4 {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.stats-section {
    padding: 80px 0;
    background: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), #ff4d54);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
    width: 80px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bright-red), #ff4d54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red), #ff4d54);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red), #ff4d54);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 37, 44, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(238, 37, 44, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bright-red) 0%, #ff4d54 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 20px rgba(238, 37, 44, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(238, 37, 44, 0.35);
}

.service-icon::after {
    content: '◉';
    font-size: 36px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .btn {
    padding: 10px 24px;
    font-size: 14px;
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), #0f1a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.feature-icon::after {
    content: '◉';
    font-size: 40px;
    color: var(--bright-red);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-gray);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    border-color: transparent;
}

.case-study-header {
    background: linear-gradient(135deg, #0d1633 0%, var(--navy-blue) 50%, #1a2d5f 100%);
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.case-study-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(238, 37, 44, 0.15), transparent 70%);
    border-radius: 50%;
}

.case-study-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.case-study-header .industry {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.case-study-body {
    padding: 30px;
}

.case-study-section {
    margin-bottom: 20px;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.case-study-section p {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.6;
}

.case-study-result {
    background: var(--light-gray-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 20px;
}

.result-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bright-red);
    display: block;
    margin-bottom: 4px;
}

.result-label {
    font-size: 14px;
    color: var(--medium-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bright-red), #ff4d54);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(238, 37, 44, 0.3);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--medium-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.industry-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--bright-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    position: relative;
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(238, 37, 44, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    background: linear-gradient(135deg, var(--bright-red), #ff4d54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), #0f1a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--medium-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
    border-color: rgba(238, 37, 44, 0.2);
}

.faq-item.active {
    border-color: var(--bright-red);
    box-shadow: 0 4px 25px rgba(238, 37, 44, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--bright-red);
    padding-left: 28px;
}

.faq-icon {
    font-size: 24px;
    color: var(--bright-red);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1633 0%, var(--navy-blue) 50%, #1a2d5f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(238, 37, 44, 0.15) 0%, rgba(238, 37, 44, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1128 0%, var(--navy-blue) 50%, #1a2d5f 100%);
    background-image: 
        linear-gradient(135deg, #0a1128 0%, var(--navy-blue) 50%, #1a2d5f 100%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    overflow: hidden;
    padding: 220px 0 80px;
}

.footer {
    background: linear-gradient(135deg, #0d1633 0%, var(--navy-blue) 50%, #1a2d5f 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(238, 37, 44, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--bright-red);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--bright-red);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--bright-red);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--font-primary);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--dark-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(22, 36, 84, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bright-red);
    box-shadow: 0 0 0 4px rgba(238, 37, 44, 0.1);
    transform: translateY(-2px);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-message {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 15px;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 2px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--bright-red);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(238, 37, 44, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f6 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bright-red), #ff4d54);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(238, 37, 44, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border-color: var(--bright-red);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(238, 37, 44, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bright-red), #ff4d54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.pricing-price span {
    font-size: 18px;
    color: var(--medium-gray);
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--medium-gray);
}

.pricing-description {
    font-size: 15px;
    color: var(--medium-gray);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--bright-red);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

.page-header {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #0a0f24 0%, var(--navy-blue) 40%, #1a2d5f 70%, #0d1633 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(238, 37, 44, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(238, 37, 44, 0.08) 0%, transparent 50%);
    animation: headerGlow 12s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(238, 37, 44, 0.5), transparent);
}

@keyframes headerGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.page-header h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(238, 37, 44, 0.2);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--bright-red);
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 12px;
    margin-top: 32px;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 8px;
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.consultation-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-sidebar {
    background: var(--light-gray-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 120px;
}

.consultation-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.consultation-benefits {
    margin-bottom: 32px;
}

.consultation-benefits li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consultation-benefits li::before {
    content: '◉';
    color: var(--bright-red);
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   PAGE-SPECIFIC ENHANCEMENTS
   ============================================ */

/* Services Page Enhancements */
.services-grid .service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Contact Page Enhancements */
.contact-info li {
    transition: all 0.3s ease;
    padding-left: 0;
}

.contact-info li:hover {
    padding-left: 5px;
    color: var(--bright-red);
}

.contact-info svg {
    transition: all 0.3s ease;
}

.contact-info li:hover svg {
    stroke: var(--bright-red);
    transform: scale(1.1);
}

/* Form Container Enhancement */
.form-container {
    animation: fadeInUp 0.8s ease-out;
}

/* Consultation Page Sidebar */
.consultation-sidebar {
    background: linear-gradient(135deg, var(--light-gray-bg) 0%, #ffffff 100%);
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.consultation-sidebar h3 {
    position: relative;
    padding-bottom: 15px;
}

.consultation-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), #ff6b70);
    border-radius: 2px;
}

/* Thank You Page Enhancements */
.thank-you-icon {
    animation: scaleIn 0.6s ease-out, pulse 2s ease-in-out 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   ABOUT US PAGE PREMIUM STYLING
   ============================================ */

/* About Page Content Wrapper */
.content-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.content-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-blue);
    margin: 60px 0 24px;
    position: relative;
    padding-left: 20px;
}

.content-wrapper h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 40px;
    background: linear-gradient(180deg, var(--bright-red), #ff6b70);
    border-radius: 3px;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.content-wrapper p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--bright-red), transparent);
    opacity: 0.5;
}

/* About Page Timeline/Journey */
.content-wrapper ul {
    margin: 30px 0;
    padding: 0;
}

.content-wrapper ul li {
    position: relative;
    padding: 16px 16px 16px 50px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(238, 37, 44, 0.02), transparent);
    border-left: 3px solid var(--bright-red);
    border-radius: 0 8px 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
}

.content-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(238, 37, 44, 0.3);
    transition: all 0.4s ease;
}

.content-wrapper ul li:hover {
    padding-left: 55px;
    background: linear-gradient(135deg, rgba(238, 37, 44, 0.05), transparent);
    box-shadow: 0 4px 20px rgba(238, 37, 44, 0.1);
}

.content-wrapper ul li:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgba(238, 37, 44, 0.4);
}

/* Features Grid Enhancement for About Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), #ff6b70);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(238, 37, 44, 0.2);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--bright-red);
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
    padding: 0;
}

.feature-item p::before {
    display: none;
}

/* Mission/Vision Highlight Boxes */
.content-wrapper h2:has(+ p) + p {
    background: linear-gradient(135deg, rgba(22, 36, 84, 0.03), rgba(238, 37, 44, 0.02));
    border-left: 4px solid var(--bright-red);
    padding: 24px 24px 24px 30px;
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy-blue);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    position: relative;
}

.content-wrapper h2:has(+ p) + p::before {
    display: none;
}

.content-wrapper h2:has(+ p) + p::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(238, 37, 44, 0.08);
    line-height: 1;
}

/* Values Section Enhancement */
.section-alt .service-card {
    background: var(--white);
    position: relative;
}

.section-alt .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--bright-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-alt .service-card:hover::after {
    opacity: 1;
}

/* Stats/Numbers Section for About Page */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
    margin: 60px 0;
    background: linear-gradient(135deg, #0a0f24 0%, var(--navy-blue) 50%, #1a2d5f 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(238, 37, 44, 0.1), transparent 60%);
}

.about-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.about-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section (if added) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--navy-blue), #1a2d5f);
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(238, 37, 44, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.team-member:hover .team-avatar::before {
    top: 150%;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: var(--bright-red);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Journey/Timeline Section */
.journey-timeline {
    position: relative;
    padding: 60px 0;
    margin: 60px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--bright-red), transparent);
    transform: translateX(-50%);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.journey-item:nth-child(even) .journey-content {
    order: 2;
}

.journey-content {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.4s ease;
}

.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--bright-red);
}

.journey-year {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.journey-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.journey-description {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Approach/Process Cards for About */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray-bg) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(238, 37, 44, 0.2);
}

.approach-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bright-red), #ff6b70);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(238, 37, 44, 0.3);
}

.approach-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* Pricing Comparison Table */
table {
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

table thead tr {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2d5f 100%);
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background: rgba(238, 37, 44, 0.02);
    transform: scale(1.01);
}

table td, table th {
    border-bottom: 1px solid var(--border-gray);
}

/* Industry Cards Enhancement */
.industry-card {
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 37, 44, 0.1), transparent);
    transition: left 0.6s ease;
}

.industry-card:hover::before {
    left: 100%;
}

/* Process Steps Enhancement */
.process-step {
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 35px;
    font-size: 24px;
    color: var(--border-gray);
    opacity: 0;
    transition: all 0.3s ease;
}

.process-step:hover::after {
    opacity: 1;
    right: -25px;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    position: relative;
    overflow: hidden;
}

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

.process-step:hover .process-number::before {
    transform: translateX(100%);
}

/* Feature Icons Enhancement */
.feature-icon {
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(238, 37, 44, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-item:hover .feature-icon::before {
    width: 120%;
    height: 120%;
}

/* Author Avatar Enhancement */
.author-avatar {
    position: relative;
    overflow: hidden;
}

.author-avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(238, 37, 44, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.testimonial-card:hover .author-avatar::after {
    top: 150%;
}

/* Case Study Result Enhancement */
.case-study-result {
    position: relative;
    overflow: hidden;
}

.case-study-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 37, 44, 0.05), transparent);
    transition: left 0.8s ease;
}

.case-study-card:hover .case-study-result::before {
    left: 100%;
}

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

/* Form Message Animations */
.form-message {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Links Enhancement */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

/* Content Section Enhancements */
.content-section {
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--bright-red), transparent);
    opacity: 0.3;
}

/* Page Transition Effects */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: pageLoad 0.8s ease-out;
}

/* Hover Effects for Links in Content */
.content-wrapper a {
    color: var(--bright-red);
    position: relative;
    transition: all 0.3s ease;
}

.content-wrapper a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

.content-wrapper a:hover::after {
    width: 100%;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--navy-blue), var(--bright-red));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--bright-red), var(--navy-blue));
}

/* Selection Styling */
::selection {
    background: var(--bright-red);
    color: var(--white);
}

::-moz-selection {
    background: var(--bright-red);
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        min-height: 400px;
        justify-content: center;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .hero-visual::before {
        width: 400px;
        height: 400px;
    }
    
    .hero-visual::after {
        width: 350px;
        height: 350px;
    }
    
    .hero-card.card-1 {
        top: 10px;
        right: 20px;
        width: 220px;
    }
    
    .hero-card.card-2 {
        top: 50%;
        left: 10px;
        width: 230px;
    }
    
    .hero-card.card-3 {
        bottom: 10px;
        right: 50px;
        width: 215px;
    }
    
    @keyframes floatCard {
        0%, 100% { 
            transform: translateY(0);
        }
        50% { 
            transform: translateY(-15px);
        }
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .consultation-layout {
        grid-template-columns: 1fr;
    }
    
    .consultation-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .btn-consultation {
        width: 100%;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-visual {
        min-height: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .hero-visual::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-visual::after {
        width: 250px;
        height: 250px;
    }
    
    .hero-card {
        position: relative !important;
        width: 100% !important;
        max-width: 280px;
        margin: 15px auto;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .hero-card.card-1 {
        order: 1;
    }
    
    .hero-card.card-2 {
        order: 2;
    }
    
    .hero-card.card-3 {
        order: 3;
    }
    
    @keyframes floatCard {
        0%, 100% { 
            transform: translateY(0);
        }
        50% { 
            transform: translateY(-10px);
        }
    }
    
    @keyframes slideInCard {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid,
    .case-studies-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
