/* ===================================
   OPS 360 Partners - Landing Page Styles
   Brand Colors:
   - OPS Blue: #1E40AF
   - Deep Navy: #0F172A
   - OPS Silver: #94A3B8
   - OPS Silver Light: #E5E7EB
   =================================== */

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ops-blue: #1E40AF;
    --ops-blue-light: #2563EB;
    --ops-blue-lighter: #3B82F6;
    --ops-blue-lightest: #60A5FA;
    --deep-navy: #0F172A;
    --ops-silver: #94A3B8;
    --ops-silver-light: #E5E7EB;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
    --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-navy);
}

a {
    text-decoration: none;
    color: var(--ops-blue);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--ops-blue-light);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    color: var(--white);
    border-color: var(--ops-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ops-blue-light) 0%, var(--ops-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--ops-blue);
    border-color: var(--ops-blue);
}

.btn-outline:hover {
    background: var(--ops-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-cta {
    background: var(--white);
    color: var(--ops-blue);
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    color: var(--ops-blue);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-footer {
    height: 60px;
}

/* Legacy text logo styles - keeping for fallback */
.logo-ops {
    color: var(--ops-blue);
}

.logo-360 {
    color: var(--deep-navy);
}

.logo-partners {
    font-weight: 500;
    font-size: 14px;
    color: var(--ops-silver);
    margin-left: 4px;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--deep-navy);
    transition: var(--transition);
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-navy);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ops-blue);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E5E7EB 50%, #F1F5F9 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--ops-blue);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.2));
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--ops-silver);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-tagline {
    display: flex;
    gap: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--ops-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline span {
    position: relative;
}

.hero-tagline span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -16px;
    color: var(--ops-blue);
}

/* Hero Visual - Orbit Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.orbit-container {
    position: relative;
    width: 450px;
    height: 450px;
}

/* Center 360° - The focal point */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--deep-navy) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    box-shadow: 
        var(--shadow-xl), 
        0 0 60px rgba(30, 64, 175, 0.4),
        0 0 100px rgba(30, 64, 175, 0.2),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: pulse-glow 3s ease-in-out infinite;
}

.orbit-center .center-360 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-center .center-degree {
    font-size: 24px;
    font-weight: 700;
    opacity: 0.9;
    margin-top: -8px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            var(--shadow-xl), 
            0 0 60px rgba(30, 64, 175, 0.4),
            0 0 100px rgba(30, 64, 175, 0.2),
            inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            var(--shadow-xl), 
            0 0 80px rgba(30, 64, 175, 0.6),
            0 0 120px rgba(30, 64, 175, 0.3),
            inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Orbit rings */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-origin: center center;
}

.orbit-1 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    border: 2px solid rgba(30, 64, 175, 0.15);
    animation: orbit-rotate 20s linear infinite;
}

.orbit-2 {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    border: 2px dashed rgba(30, 64, 175, 0.1);
    animation: orbit-rotate 35s linear infinite reverse;
}

.orbit-3 {
    width: 440px;
    height: 440px;
    margin: -220px 0 0 -220px;
    border: 1px dotted rgba(148, 163, 184, 0.3);
    animation: orbit-rotate 50s linear infinite;
}

/* Orbit items - positioned around the circle */
.orbit-item {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(30, 64, 175, 0.15);
    font-size: 11px;
    font-weight: 600;
    color: var(--deep-navy);
    border: 2px solid rgba(30, 64, 175, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-item:hover {
    transform: scale(1.15) !important;
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(30, 64, 175, 0.25);
    z-index: 50;
}

/* Counter-rotate to keep text upright */
.orbit-1 .orbit-item {
    animation: counter-orbit 20s linear infinite;
}

.orbit-2 .orbit-item {
    animation: counter-orbit 35s linear infinite reverse;
}

/* Position orbit-1 items (3 items, 120° apart) */
.orbit-1 .orbit-item:nth-child(1) { 
    top: -32px; 
    left: calc(50% - 32px); 
}
.orbit-1 .orbit-item:nth-child(2) { 
    bottom: 10%; 
    right: -32px; 
}
.orbit-1 .orbit-item:nth-child(3) { 
    bottom: 10%; 
    left: -32px; 
}

/* Position orbit-2 items (4 items, 90° apart) */
.orbit-2 .orbit-item:nth-child(1) { 
    top: -32px; 
    left: calc(50% - 32px); 
}
.orbit-2 .orbit-item:nth-child(2) { 
    top: calc(50% - 32px); 
    right: -32px; 
}
.orbit-2 .orbit-item:nth-child(3) { 
    bottom: -32px; 
    left: calc(50% - 32px); 
}
.orbit-2 .orbit-item:nth-child(4) { 
    top: calc(50% - 32px); 
    left: -32px; 
}

/* Orbit-3 decorative dots */
.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--ops-blue-lighter);
    border-radius: 50%;
    opacity: 0.6;
}

.orbit-3 .orbit-dot:nth-child(1) { top: -4px; left: calc(50% - 4px); }
.orbit-3 .orbit-dot:nth-child(2) { top: 15%; right: 5%; }
.orbit-3 .orbit-dot:nth-child(3) { bottom: 15%; right: 5%; }
.orbit-3 .orbit-dot:nth-child(4) { bottom: -4px; left: calc(50% - 4px); }
.orbit-3 .orbit-dot:nth-child(5) { bottom: 15%; left: 5%; }
.orbit-3 .orbit-dot:nth-child(6) { top: 15%; left: 5%; }

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counter-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ops-silver);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--ops-silver);
    border-bottom: 2px solid var(--ops-silver);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ops-blue);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--ops-silver);
}

/* Problem Section */
.problem-section {
    background: var(--deep-navy);
    color: var(--white);
}

.problem-section .section-header h2,
.problem-section .section-subtitle {
    color: var(--white);
}

.problem-section .section-subtitle {
    opacity: 0.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.problem-card.highlight-card {
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    border: none;
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.problem-card.highlight-card p {
    color: var(--white);
}

/* Solution Section */
.solution-section {
    background: linear-gradient(180deg, #F8FAFC 0%, var(--white) 100%);
}

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

.solution-text .section-label {
    display: block;
    margin-bottom: 16px;
}

.solution-text h2 {
    margin-bottom: 24px;
}

.solution-text .lead {
    font-size: 1.125rem;
    color: var(--ops-silver);
    margin-bottom: 32px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--ops-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature div strong {
    display: block;
    margin-bottom: 4px;
}

.feature div span {
    color: var(--ops-silver);
    font-size: 0.9rem;
}

/* Solution Visual */
.solution-visual {
    display: flex;
    justify-content: center;
}

.os-diagram {
    position: relative;
    width: 380px;
    height: 380px;
}

.os-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--deep-navy) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.os-center span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
}

.os-center small {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
}

.os-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.os-segment {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    transform: rotate(var(--rotation)) translateY(-150px) rotate(calc(-1 * var(--rotation)));
    background: var(--color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.os-segment:hover {
    transform: rotate(var(--rotation)) translateY(-150px) rotate(calc(-1 * var(--rotation))) scale(1.1);
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 240px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.step-content {
    background: var(--white);
    border: 1px solid var(--ops-silver-light);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ops-blue);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--ops-blue);
}

.step-content p {
    color: var(--ops-silver);
    font-size: 0.95rem;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ops-blue), var(--ops-blue-light));
    margin-top: 24px;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: -10px;
    color: var(--ops-blue);
    font-size: 20px;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(180deg, #F8FAFC 0%, var(--white) 100%);
}

.package-group {
    margin-bottom: 80px;
}

.package-group-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.package-group-subtitle {
    text-align: center;
    color: var(--ops-silver);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Starter Packages */
.starter-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--ops-silver-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--ops-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--ops-blue);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    display: inline-block;
    background: var(--ops-silver-light);
    color: var(--deep-navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    color: var(--white);
}

.package-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.package-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 20px;
}

.package-price .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ops-blue);
}

.package-price .term {
    display: block;
    font-size: 14px;
    color: var(--ops-silver);
    margin-top: 4px;
}

.package-desc {
    color: var(--ops-silver);
    margin-bottom: 24px;
    font-style: italic;
}

.package-features {
    text-align: left;
    margin-bottom: 24px;
}

.package-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--deep-navy);
    font-size: 0.95rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.package-best-for {
    font-size: 0.9rem;
    color: var(--ops-silver);
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--ops-silver-light);
}

/* Growth Packages */
.growth-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.growth-card {
    background: var(--white);
    border: 2px solid var(--ops-silver-light);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.growth-card:hover {
    border-color: var(--ops-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.growth-card.popular {
    border-color: var(--ops-blue);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.growth-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--ops-blue-light) 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.growth-tier {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.growth-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ops-blue);
    margin-bottom: 12px;
}

.growth-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ops-silver);
}

.growth-best {
    font-size: 0.85rem;
    color: var(--ops-silver);
    margin-bottom: 20px;
    min-height: 40px;
}

.growth-card ul {
    text-align: left;
    margin-bottom: 24px;
}

.growth-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--deep-navy);
    position: relative;
    padding-left: 20px;
}

.growth-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--ops-blue);
}

/* Infrastructure Section */
.infrastructure-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1E293B 100%);
    border-radius: 32px;
    padding: 60px;
    color: var(--white);
}

.infrastructure-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
}

.infrastructure-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.infra-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.infra-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.infra-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.infra-card ul {
    text-align: left;
}

.infra-card ul li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 16px;
}

.infra-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 12px;
}

.infrastructure-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.infrastructure-cta p {
    font-size: 1.25rem;
    color: var(--white);
}

/* Why Section */
.why-section {
    background: var(--white);
}

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

.why-text .section-label {
    display: block;
    margin-bottom: 16px;
}

.why-text h2 {
    margin-bottom: 32px;
}

.comparison {
    margin-bottom: 32px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.comparison-item.wrong {
    background: rgba(239, 68, 68, 0.05);
}

.comparison-item.right {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.comparison-item.wrong .comparison-icon {
    background: var(--error);
    color: var(--white);
}

.comparison-item.right .comparison-icon {
    background: var(--success);
    color: var(--white);
}

.comparison-item p {
    font-size: 1rem;
    margin: 0;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--ops-silver-light);
    border-radius: 12px;
}

.value-icon {
    font-size: 24px;
}

.who-for {
    background: linear-gradient(135deg, #F8FAFC 0%, var(--ops-silver-light) 100%);
    border-radius: 24px;
    padding: 40px;
}

.who-for h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.who-list {
    margin-bottom: 24px;
}

.who-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
}

.who-list .check {
    width: 28px;
    height: 28px;
    background: var(--ops-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.who-warning {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error);
    padding: 16px;
    border-radius: 0 12px 12px 0;
}

.who-warning p {
    margin: 0;
    color: var(--deep-navy);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ops-blue) 0%, var(--deep-navy) 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

.cta-questions {
    margin-bottom: 32px;
}

.cta-questions p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.cta-questions strong {
    color: var(--white);
}

.cta-answer {
    margin-bottom: 40px;
}

.cta-answer h3 {
    color: var(--white);
    font-size: 1.75rem;
    position: relative;
    display: inline-block;
}

.cta-answer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warning);
    border-radius: 2px;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.cta-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ops-blue-lighter) !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .growth-packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-visual {
        order: -1;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .process-connector::after {
        transform: rotate(90deg);
        right: -8px;
        top: 20px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    /* Logo adjustments for tablet */
    .logo-image {
        height: 45px;
    }
    
    .logo-footer {
        height: 50px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .starter-packages {
        grid-template-columns: 1fr;
    }
    
    .growth-packages {
        grid-template-columns: 1fr;
    }
    
    .growth-card.popular {
        transform: none;
    }
    
    .growth-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .infrastructure-section {
        padding: 40px 24px;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Logo adjustments for mobile */
    .logo-image {
        height: 40px;
    }
    
    .logo-footer {
        height: 45px;
    }
    
    .navbar .container {
        height: 70px;
    }
    
    .nav-links {
        top: 70px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .package-card {
        padding: 24px;
    }
    
    .growth-card {
        padding: 24px 16px;
    }
    
    .who-for {
        padding: 24px;
    }
}

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

.hero-content,
.section-header,
.problem-card,
.process-step,
.package-card,
.growth-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 100px;
}
