/* Dark Apple-esque Design for RKE Partners */

/* CSS Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #f5f5f7;
    background: #000;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, #1a1a1a 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #0a0a0a 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-orbs::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.gradient-orbs::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.005em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1em;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5f5f7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #007aff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: #f5f5f7;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-btn {
    background: #007aff;
    color: white !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    background: #0056cc;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    color: #f5f5f7;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: #007aff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, #007aff 0%, #34c759 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1a6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #007aff;
    color: white;
}

.btn-primary:hover {
    background: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    scroll-margin-top: 120px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Ensure sections with IDs have proper scroll offset */
section[id] {
    scroll-margin-top: 120px;
}

.section:nth-child(even) {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-section {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34c759;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #a1a1a6;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Insight Grid */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.insight-card.full-width {
    grid-column: 1 / -1;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 1.5rem;
    color: white;
}

.insight-content h3 {
    color: #f5f5f7;
    margin-bottom: 1rem;
}

.insight-content p {
    color: #a1a1a6;
}

/* Metrics Container */
.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007aff, #34c759, #ff9500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.metric-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: white;
    font-size: 1.25rem;
}

.metric-header h3 {
    color: #f5f5f7;
    font-size: 1.5rem;
}

.metric-content h4 {
    color: #007aff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.metric-content p {
    color: #a1a1a6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* AID Method */
.aid-method {
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.aid-header {
    text-align: center;
    margin-bottom: 3rem;
}

.aid-header h3 {
    color: #007aff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.aid-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.aid-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aid-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.aid-icon i {
    color: white;
    font-size: 1.25rem;
}

.aid-step h4 {
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.aid-step p {
    color: #a1a1a6;
    font-size: 0.95rem;
}

.aid-arrow {
    color: #007aff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aid-result {
    text-align: center;
    padding: 2rem;
    background: rgba(52, 199, 89, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.aid-result h4 {
    color: #34c759;
    margin-bottom: 1rem;
}

.aid-result p {
    color: #a1a1a6;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.problem-solution-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7941e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    color: white;
    font-size: 1.25rem;
}

.problem-solution-card h3 {
    color: #f5f5f7;
    margin-bottom: 1.5rem;
}

.solution {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.metric-tag {
    background: linear-gradient(135deg, #007aff, #34c759);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.metric-tag.small {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

.metric-tag.large {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.solution p {
    color: #a1a1a6;
    margin: 0;
}

.strategic-questions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.strategic-questions h3 {
    color: #007aff;
    margin-bottom: 1rem;
}

.strategic-questions p {
    color: #a1a1a6;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.platform-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-icon i {
    color: white;
    font-size: 1.5rem;
}

.platform-card h3 {
    color: #f5f5f7;
    margin-bottom: 1rem;
}

.platform-card > p {
    color: #a1a1a6;
    margin-bottom: 2rem;
}

.platform-examples h4 {
    color: #007aff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.platform-examples ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.platform-examples li {
    color: #a1a1a6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.platform-examples li::before {
    content: '•';
    color: #34c759;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.platform-examples p {
    color: #a1a1a6;
    font-size: 0.95rem;
}

.metric-linkage {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Assessments List */
.assessments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.assessment-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.assessment-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.assessment-metric {
    flex-shrink: 0;
}

.assessment-content h3 {
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.assessment-content p {
    color: #a1a1a6;
    margin-bottom: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #007aff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deliverable-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.deliverable-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deliverable-icon i {
    color: white;
    font-size: 1.5rem;
}

.deliverable-card h3 {
    color: #f5f5f7;
    margin-bottom: 1rem;
}

.deliverable-card p {
    color: #a1a1a6;
}

.implementation-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
}

.note-icon i {
    color: #007aff;
    font-size: 1.5rem;
}

.implementation-note p {
    color: #f5f5f7;
    margin: 0;
}

/* Layers Container */
.layers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.layer-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.layer-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.layer-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.layer-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-icon i {
    color: #007aff;
    font-size: 1.25rem;
}

.layer-content h3 {
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.layer-content p {
    color: #a1a1a6;
    margin: 0;
}

.integration-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    background: rgba(52, 199, 89, 0.05);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.integration-icon i {
    color: #34c759;
    font-size: 1.5rem;
}

.integration-note p {
    color: #f5f5f7;
    margin: 0;
}

/* Timeline */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.timeline-phase {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.timeline-phase:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-icon i {
    color: white;
    font-size: 1.5rem;
}

.phase-info h3 {
    color: #007aff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.phase-info h4 {
    color: #f5f5f7;
    font-size: 1.25rem;
    margin: 0;
}

.phase-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.phase-content li {
    color: #a1a1a6;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #34c759;
}

/* Measurement Section */
.measurement-section {
    margin-bottom: 4rem;
}

.measurement-section h3 {
    text-align: center;
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.measurement-section .subtitle {
    text-align: center;
    color: #a1a1a6;
    margin-bottom: 3rem;
}

.measurement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.measurement-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.measurement-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.measurement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.measurement-icon i {
    color: white;
    font-size: 1.25rem;
}

.measurement-item h4 {
    color: #f5f5f7;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.measurement-item p {
    color: #a1a1a6;
    font-size: 0.9rem;
    margin: 0;
}

/* Acceptance Criteria */
.acceptance-criteria {
    background: rgba(52, 199, 89, 0.05);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.acceptance-criteria h3 {
    color: #34c759;
    text-align: center;
    margin-bottom: 0.5rem;
}

.acceptance-criteria .subtitle {
    text-align: center;
    color: #a1a1a6;
    margin-bottom: 2rem;
}

.criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a1a1a6;
}

.criteria-item i {
    color: #34c759;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Targets Table */
.targets-table-container {
    margin-bottom: 3rem;
}

.table-responsive {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
}

.targets-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.targets-table th,
.targets-table td {
    text-align: left;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.targets-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f7;
    font-weight: 600;
    font-size: 0.85rem;
}

.targets-table td {
    color: #a1a1a6;
}

.role-cell {
    min-width: 200px;
}

.role-cell strong {
    color: #f5f5f7;
}

.role-cell small {
    color: #86868b;
}

.metric-cell {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.85rem;
}

.metric-cell.apc { color: #007aff; }
.metric-cell.acr { color: #34c759; }
.metric-cell.vais { color: #ff9500; }
.metric-cell.eaei { color: #af52de; }
.metric-cell.caga { color: #ff375f; }

.table-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.table-note i {
    color: #007aff;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.table-note p {
    color: #a1a1a6;
    margin: 0;
    font-size: 0.9rem;
}

/* APC Examples */
.apc-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.apc-example-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.apc-example-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.example-header {
    text-align: center;
    margin-bottom: 2rem;
}

.example-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.example-icon i {
    color: white;
    font-size: 1.5rem;
}

.example-header h3 {
    color: #f5f5f7;
    margin-bottom: 0.25rem;
}

.example-header h4 {
    color: #a1a1a6;
    font-weight: 400;
    margin: 0;
}

.example-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.comparison-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
}

.comparison-item.before {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.3);
}

.comparison-item.after {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.comparison-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comparison-item.before .comparison-label {
    color: #ff453a;
}

.comparison-item.after .comparison-label {
    color: #34c759;
}

.comparison-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 0.25rem;
}

.comparison-details {
    font-size: 0.85rem;
    color: #a1a1a6;
}

.comparison-arrow {
    color: #007aff;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.apc-result {
    margin-top: 1rem;
}

.apc-multiplier {
    background: linear-gradient(135deg, #007aff, #34c759);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Story Section */
.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    text-align: center;
    margin-bottom: 3rem;
}

.story-title h3 {
    color: #f5f5f7;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.story-subtitle {
    color: #007aff;
    font-size: 1.25rem;
    font-weight: 500;
}

.story-intro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid #007aff;
}

.story-intro p {
    color: #a1a1a6;
    margin: 0;
    line-height: 1.7;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-quarter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.story-quarter:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.quarter-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quarter-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.quarter-header h4 {
    color: #f5f5f7;
    margin: 0;
}

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

.story-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #34c759;
}

.story-metric p {
    color: #a1a1a6;
    margin: 0;
    font-size: 0.9rem;
}

.quarter-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.outcome-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #34c759, #007aff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-icon i {
    color: white;
    font-size: 1rem;
}

.outcome-content h5 {
    color: #f5f5f7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.outcome-content p {
    color: #a1a1a6;
    margin: 0;
    font-size: 0.9rem;
}

.culture-change {
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.culture-change h4 {
    color: #007aff;
    margin-bottom: 1.5rem;
}

.culture-change p {
    color: #a1a1a6;
    margin: 0;
    line-height: 1.7;
}

/* Enterprise Features */
.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #f5f5f7;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #a1a1a6;
}

/* Value Proposition */
.value-prop-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-prop-text {
    font-size: 1.25rem;
    color: #a1a1a6;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007aff, #34c759);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pillar-icon i {
    color: white;
    font-size: 1.5rem;
}

.pillar h4 {
    color: #f5f5f7;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: #a1a1a6;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 6rem 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header h2 {
    color: #f5f5f7;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #a1a1a6;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-cta {
    margin-bottom: 2rem;
}

.contact-note {
    color: #86868b;
    margin: 1rem 0 0 0;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f5f7;
}

.footer-logo i {
    color: #007aff;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5f5f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #86868b;
    font-size: 0.85rem;
    margin: 0;
}

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

/* Scroll animations */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .metrics-container {
        grid-template-columns: 1fr;
    }
    
    .apc-examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .insight-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .aid-steps {
        flex-direction: column;
    }
    
    .aid-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .assessment-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .layer-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .layer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .quarter-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .targets-table th,
    .targets-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .timeline-phase {
        padding: 1.5rem;
    }
    
    .story-quarter {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}