/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-red: #FF4B4B;
    --deep-red: #C93A3A;
    --near-black: #0E0E10;
    --graphite: #16161A;
    --off-white: #F2F2F2;
    --warm-gray: #B8B8B8;
    --muted-gray: #7A7A7A;
    --muted-rose: #C48A8A;
    --dusty-red: #9E5A5A;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--near-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(14, 14, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 75, 75, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px;
    border: 1px solid var(--primary-red);
    border-radius: 4px;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0E0E10 0%, #2A0F14 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(196, 138, 138, 0.03) 10px, rgba(196, 138, 138, 0.03) 20px);
    z-index: -1;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 75, 75, 0.1);
    border: 1px solid rgba(255, 75, 75, 0.3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    color: var(--primary-red);
}

.hero-description {
    font-size: 18px;
    color: var(--warm-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--near-black);
}

.btn-primary:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.btn-secondary:hover {
    background: rgba(255, 75, 75, 0.1);
}

/* Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    background: var(--graphite);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-layout.reverse .split-content {
    order: 2;
}

.split-layout.reverse .split-visual {
    order: 1;
}

.split-content {
    max-width: 600px;
}

.split-content .section-label {
    display: block;
    text-align: left;
    margin-bottom: 16px;
}

.split-content .section-title {
    text-align: left;
    font-size: 42px;
    margin-bottom: 24px;
}

.split-content .section-description {
    text-align: left;
    margin-bottom: 20px;
}

.problem-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fragmentation-graph {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    filter: drop-shadow(0 4px 8px rgba(255, 75, 75, 0.1));
}

.fragmentation-graph circle {
    animation: pulse-node 3s ease-in-out infinite;
}

.fragmentation-graph circle:nth-child(2) {
    animation-delay: 0.3s;
}

.fragmentation-graph circle:nth-child(3) {
    animation-delay: 0.6s;
}

.fragmentation-graph circle:nth-child(4) {
    animation-delay: 0.9s;
}

.fragmentation-graph circle:nth-child(5) {
    animation-delay: 1.2s;
}

.fragmentation-graph circle:nth-child(6) {
    animation-delay: 1.5s;
}

.fragmentation-graph circle:nth-child(7) {
    animation-delay: 1.8s;
}

.fragmentation-graph circle:nth-child(8) {
    animation-delay: 2.1s;
}

@keyframes pulse-node {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Approach Section */
.approach-section {
    background: var(--near-black);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

.approach-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--primary-red);
    margin: 16px 0;
    opacity: 0.6;
}

.approach-card {
    padding: 40px;
    background: var(--graphite);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.approach-card:hover::before {
    transform: translateX(100%);
}

.approach-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--primary-red);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--off-white);
}

.approach-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.approach-card .btn-card {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Capabilities Section */
.capabilities-section {
    background: var(--graphite);
}

.capabilities-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.capability-item {
    padding: 32px;
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.15);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-color: var(--primary-red);
    background: rgba(255, 75, 75, 0.1);
}

.capability-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 75, 75, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.capability-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--off-white);
}

.capabilities-list {
    list-style: none;
    margin-bottom: 32px;
}

.capabilities-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--warm-gray);
}

.capabilities-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Solutions Section */
.solutions-section {
    background: var(--near-black);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    padding: 40px;
    background: var(--graphite);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(255, 75, 75, 0.1);
    border: 1px solid rgba(255, 75, 75, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--off-white);
}

.solution-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 14px;
}

/* Delivery Section */
.delivery-section {
    background: var(--graphite);
}

.delivery-content {
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-header {
    text-align: center;
    margin-bottom: 60px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.delivery-item {
    padding: 32px;
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
}

.delivery-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-red);
}

.delivery-item p {
    color: var(--warm-gray);
    line-height: 1.7;
}

.delivery-cta {
    margin-top: 60px;
    padding: 48px;
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.2);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.delivery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.delivery-cta:hover::before {
    transform: translateX(100%);
}

.delivery-cta:hover {
    border-color: var(--primary-red);
    background: rgba(255, 75, 75, 0.08);
}

.delivery-cta-content {
    flex: 1;
}

.delivery-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}

.delivery-cta-content p {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-section {
    background: var(--near-black);
    text-align: center;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text {
    font-size: 20px;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background: var(--graphite);
    padding-bottom: 120px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--primary-red);
}

.contact-info-item .contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-red);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.2);
    border-radius: 4px;
    color: var(--off-white);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 75, 75, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

/* Security Page */
.security-hero {
    min-height: 60vh;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--near-black) 0%, #1A0A0E 100%);
    position: relative;
    overflow: hidden;
}

.security-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 75, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 75, 75, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.security-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.security-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.4);
    animation: securityPulse 3s ease-in-out infinite;
}

.security-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

@keyframes securityPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 75, 75, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 80px rgba(255, 75, 75, 0.6);
        transform: scale(1.05);
    }
}

.security-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-hero-subtitle {
    color: var(--warm-gray);
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.security-features-section {
    padding: 100px 0;
    background: var(--graphite);
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.security-feature-card {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.security-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 75, 75, 0.1), transparent);
    transition: left 0.6s ease;
}

.security-feature-card:hover::before {
    left: 100%;
}

.security-feature-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.2);
    background: rgba(255, 75, 75, 0.05);
}

.security-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(255, 75, 75, 0.3);
    transition: all 0.4s ease;
}

.security-feature-card:hover .security-feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 75, 75, 0.5);
}

.security-feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.security-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 16px;
}

.security-feature-card p {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.7;
}

.compliance-section {
    padding: 100px 0;
    background: var(--near-black);
}

.compliance-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.compliance-badge {
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-badge:hover {
    border-color: var(--primary-red);
    background: rgba(255, 75, 75, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 75, 75, 0.2);
}

.badge-icon {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.badge-label {
    color: var(--warm-gray);
    font-size: 14px;
    font-weight: 500;
}

.compliance-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-animation {
    width: 100%;
    height: 100%;
    animation: shieldRotate 20s linear infinite;
}

.shield-animation svg {
    width: 100%;
    height: 100%;
}

@keyframes shieldRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.security-details-section {
    padding: 100px 0;
    background: var(--graphite);
}

.security-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.security-detail-card {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.security-detail-card:hover {
    border-color: rgba(255, 75, 75, 0.3);
    box-shadow: 0 12px 32px rgba(255, 75, 75, 0.15);
}

.security-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 24px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid rgba(255, 75, 75, 0.05);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: rgba(255, 75, 75, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: bold;
}

.security-cta-section {
    padding: 100px 0;
    background: var(--near-black);
}

.security-cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 75, 75, 0.1) 0%, rgba(255, 75, 75, 0.05) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 75, 75, 0.1) 0%, transparent 70%);
    animation: ctaRotate 20s linear infinite;
}

@keyframes ctaRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.security-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(255, 75, 75, 0.4);
    position: relative;
    z-index: 1;
}

.security-cta-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.security-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.security-cta-card p {
    color: var(--warm-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.security-cta-card .btn {
    position: relative;
    z-index: 1;
}

/* Pricing Page */
.pricing-hero {
    min-height: 60vh;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--near-black) 0%, #1A0A0E 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 75, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 75, 75, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.pricing-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.4);
}

.pricing-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.pricing-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-subtitle {
    color: var(--warm-gray);
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-plans-section {
    padding: 100px 0;
    background: var(--graphite);
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pricing-plan-card {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.2);
    background: rgba(255, 75, 75, 0.05);
}

.featured-plan {
    border: 2px solid var(--primary-red);
    background: rgba(255, 75, 75, 0.05);
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 75, 75, 0.5);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.plan-currency {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 600;
}

.plan-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1;
}

.plan-description {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--warm-gray);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 75, 75, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    stroke: var(--primary-red);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

.pricing-form-section {
    padding: 100px 0;
    background: var(--near-black);
}

.pricing-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-form-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-form-subtitle {
    color: var(--warm-gray);
    font-size: 18px;
    line-height: 1.7;
}

.pricing-form {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 48px;
}

.pricing-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 75, 75, 0.3);
}

.pricing-form select option {
    background: var(--graphite);
    color: var(--text-primary);
}

/* Careers Page */
.careers-hero {
    min-height: 60vh;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--near-black) 0%, #1A0A0E 100%);
    position: relative;
    overflow: hidden;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 75, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 75, 75, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.careers-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.careers-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.4);
}

.careers-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.careers-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-subtitle {
    color: var(--warm-gray);
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.why-join-section {
    padding: 100px 0;
    background: var(--graphite);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-join-card {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s ease;
}

.why-join-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.2);
    background: rgba(255, 75, 75, 0.05);
}

.why-join-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(255, 75, 75, 0.3);
    transition: all 0.4s ease;
}

.why-join-card:hover .why-join-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 75, 75, 0.5);
}

.why-join-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.why-join-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 16px;
}

.why-join-card p {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.7;
}

.positions-section {
    padding: 100px 0;
    background: var(--near-black);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.position-card {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s ease;
}

.position-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 75, 75, 0.2);
    background: rgba(255, 75, 75, 0.05);
}

.position-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 75, 75, 0.15);
    color: var(--primary-red);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.position-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 8px;
}

.position-location {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.position-description {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.position-tag {
    padding: 6px 12px;
    background: rgba(255, 75, 75, 0.1);
    color: var(--warm-gray);
    border: 1px solid rgba(255, 75, 75, 0.2);
    border-radius: 6px;
    font-size: 13px;
}

.careers-form-section {
    padding: 100px 0;
    background: var(--graphite);
}

.careers-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.careers-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.careers-form-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-form-subtitle {
    color: var(--warm-gray);
    font-size: 18px;
    line-height: 1.7;
}

.careers-form {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 12px;
    padding: 48px;
}

.careers-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.careers-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 75, 75, 0.3);
}

.careers-form select option {
    background: var(--graphite);
    color: var(--text-primary);
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--primary-red);
    color: var(--off-white);
    background: rgba(255, 75, 75, 0.05);
}

.file-upload-label svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.file-upload-text {
    flex: 1;
    font-size: 15px;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 160px 0 100px;
    background: var(--near-black);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 75, 75, 0.1);
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF8080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--muted-gray);
    font-size: 14px;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 75, 75, 0.03);
    border: 1px solid rgba(255, 75, 75, 0.1);
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: rgba(255, 75, 75, 0.2);
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--off-white);
    margin: 24px 0 12px;
}

.legal-section p {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-list li {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.8;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255, 75, 75, 0.05);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    transform: rotate(45deg);
}

.legal-list li strong {
    color: var(--off-white);
    font-weight: 600;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0E0E10 0%, #2A0F14 100%);
    border-top: 1px solid rgba(255, 75, 75, 0.1);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--warm-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 75, 75, 0.3);
    border-radius: 4px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-red);
    background: rgba(255, 75, 75, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 75, 75, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-layout.reverse .split-content {
        order: 1;
    }
    
    .split-layout.reverse .split-visual {
        order: 2;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
    }
    
    .security-details-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .delivery-cta .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li:not(:last-child) {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 32px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-visual {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-title {
        font-size: 36px;
    }
    
    .legal-section {
        padding: 24px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .security-hero {
        padding: 120px 0 60px;
    }
    
    .security-hero-title {
        font-size: 42px;
    }
    
    .security-hero-subtitle {
        font-size: 18px;
    }
    
    .security-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
    }
    
    .compliance-visual {
        height: 300px;
    }
    
    .security-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .security-cta-card {
        padding: 40px 24px;
    }
    
    .security-cta-card h2 {
        font-size: 28px;
    }
    
    .pricing-hero-title,
    .careers-hero-title {
        font-size: 42px;
    }
    
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .featured-plan:hover {
        transform: translateY(-8px);
    }
    
    .pricing-form-title,
    .careers-form-title {
        font-size: 36px;
    }
    
    .pricing-form,
    .careers-form {
        padding: 32px 24px;
    }
    
    .why-join-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

