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

:root {
    --bg-primary: #fafbfc;
    --bg-secondary: #ffffff;
    --bg-accent: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-hover: #4f46e5;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
                 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent text overflow */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

/* Ensure images and media scale properly */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 251, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 28px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

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

.nav-links .cta-button {
    background: var(--gradient-1);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-links .cta-button::after {
    display: none;
}

.nav-links .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Why Section */
.why-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-accent);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
}

.why-item:hover::before {
    opacity: 1;
}

/* Staggered layout: Item 4 takes left column, Item 5 takes right 2 columns for visual balance */
.why-item:nth-child(4) {
    grid-column: 1 / 2;
}

.why-item:nth-child(5) {
    grid-column: 2 / 4;
}

.why-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Add-ons Page Hero */
.addons-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.addons-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.addons-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* Hero Story Content */
.hero-story {
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-section {
    text-align: left;
}

.story-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-invitation {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    margin-top: 2rem;
}

.invitation-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.invitation-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

.invitation-text:last-of-type {
    margin-bottom: 2rem;
}

.invitation-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* Add-ons Section */
.addons-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.addons-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.addons-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.addons-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Lifecycle Diagram */
.lifecycle-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

.lifecycle-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.lifecycle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    padding: 2rem 1.5rem;
    background: var(--bg-accent);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.lifecycle-stage:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.stage-icon {
    font-size: 3rem;
    line-height: 1;
}

.stage-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.stage-components {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.component-badge {
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.3s ease;
}

.component-badge.primary {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 700;
}

.lifecycle-stage:hover .component-badge {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.lifecycle-connector {
    font-size: 2rem;
    color: var(--accent-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.lifecycle-description {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.lifecycle-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.addon-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.addon-card.available:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.addon-card.coming-soon {
    opacity: 0.85;
    cursor: default;
}

.addon-card.coming-soon:hover {
    transform: none;
}

.addon-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.addon-status-badge.available-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.addon-status-badge.coming-soon-badge {
    background: rgba(156, 163, 175, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.addon-link.disabled {
    color: var(--text-tertiary);
    cursor: default;
    pointer-events: none;
}

.addon-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 0 1px var(--border-light);
}

.addon-icon img {
    max-width: 60px;
    max-height: 60px;
    display: block;
}

.addon-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.addon-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.addon-link {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.addon-card:hover .addon-link {
    margin-left: 4px;
}

/* Continuous Pentesting Section */
.continuous-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.continuous-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.continuous-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.continuous-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.continuous-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.continuous-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.continuous-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.continuous-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.continuous-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.continuous-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.continuous-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}


.continuous-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Order Section */
.order-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
}

.order-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.order-option {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.order-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.order-option.enterprise {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.order-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.order-badge.enterprise-badge {
    background: var(--gradient-1);
    color: white;
}

.order-option h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.order-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.order-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.order-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.order-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.order-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    padding-right: 3rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-form label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: var(--text-tertiary);
}

.order-form select {
    cursor: pointer;
}

.order-form textarea {
    resize: vertical;
    min-height: 80px;
}

.order-message {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 0.5rem;
    display: none;
}

.order-message.success {
    display: block;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.order-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Benchmarks Section */
.benchmarks-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.table-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.table-row:nth-child(even) {
    background: var(--bg-accent);
}

.table-row.header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid var(--border);
}

.table-col {
    padding: 0.85rem 1.15rem;
    font-size: 0.9rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
}

.table-col.manual-col::before,
.table-col.ai-col::before {
    display: none;
}

.table-row.header .table-col {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.metric-col {
    font-weight: 700;
    color: var(--text-primary);
}

.manual-col {
    color: var(--text-secondary);
}

.ai-col {
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-summary {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.comparison-summary p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.benchmark-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.benchmark-item {
    display: flex;
    gap: 1.5rem;
}

.benchmark-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.benchmark-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benchmark-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.process-diagram {
    margin: 4rem 0;
}

.diagram-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.diagram-step.reverse {
    direction: rtl;
}

.diagram-step.reverse > * {
    direction: ltr;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.visual-box {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.visual-box:hover {
    transform: scale(1.05);
}

.visual-box.discovery {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.analysis {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.testing {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.visual-box.reporting {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--accent-primary);
}

.box-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.box-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.connection-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 999px;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.ai-architecture {
    margin-top: 6rem;
    padding: 4rem;
    background: var(--bg-accent);
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.ai-architecture h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
}

.architecture-layer {
    background: var(--bg-secondary);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.layer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
}

.architecture-layer h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.architecture-layer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.layer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
}

.layer-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.agent-mesh {
    margin-top: 3rem;
}

.agent-mesh h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mesh-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 1.25rem;
}

.mesh-card {
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: border 0.3s ease, transform 0.3s ease;
}

.mesh-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.mesh-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.mesh-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pipeline-flow {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.flow-step {
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.flow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.flow-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Supporting Content Section */
.supporting-content-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.content-block p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-item {
    padding: 2rem;
    background: var(--bg-accent);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.result-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-primary);
}

.contact-form {
    background: var(--bg-accent);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Locations Section */
.locations-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.location-address {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-country {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.locations-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.locations-map .leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-accent);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column-links li {
    margin: 0;
}

.footer-column-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-item:nth-child(4),
    .why-item:nth-child(5) {
        grid-column: auto;
    }

    .why-item {
        min-height: auto;
    }

    .comparison-table {
        margin: 2rem auto;
        border-radius: 12px;
    }

    .table-row {
        grid-template-columns: minmax(120px, 1fr) repeat(2, minmax(0, 1fr));
    }

    .ai-architecture {
        padding: 3rem 2.5rem;
    }

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

    .mesh-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pipeline-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .lifecycle-diagram {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lifecycle-connector {
        transform: rotate(90deg);
    }

    .lifecycle-stage {
        min-width: 160px;
        flex: 0 1 calc(50% - 1rem);
    }

    .order-options {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .output-branches {
        grid-template-columns: repeat(2, 1fr);
    }

    .continuous-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-nodes {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-levels {
        grid-template-columns: repeat(2, 1fr);
    }

    .frameworks {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--border-light);
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .cta-button {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-item:nth-child(5) {
        grid-column: 1;
        padding: 1.5rem;
    }

    .comparison-table {
        margin: 1.75rem auto;
        border-radius: 12px;
        overflow-x: auto;
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .table-row.header {
        display: none;
    }

    .table-col {
        padding: 0.75rem 1rem;
        border-top: 1px solid var(--border-light);
    }

    .table-col.metric-col {
        background: rgba(15, 23, 42, 0.03);
        font-size: 0.85rem;
    }

    .table-col.manual-col::before,
    .table-col.ai-col::before {
        content: attr(data-label);
        display: inline-block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        color: var(--text-secondary);
        margin-right: 0.5rem;
    }

    .ai-architecture {
        padding: 2rem 1.5rem;
    }

    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .architecture-layer {
        padding: 1.25rem;
    }

    .mesh-grid,
    .pipeline-flow {
        grid-template-columns: 1fr;
    }

    .mesh-card,
    .flow-step {
        padding: 1rem;
    }

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

    .lifecycle-diagram {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .lifecycle-connector {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .lifecycle-stage {
        min-width: auto;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .stage-icon {
        font-size: 2.5rem;
    }

    .stage-label {
        font-size: 1rem;
    }

    .component-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .lifecycle-description {
        padding: 0 1rem;
    }

    .lifecycle-description p {
        font-size: 1rem;
    }

    .benchmark-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diagram-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diagram-step.reverse {
        direction: ltr;
    }

    .step-visual {
        justify-content: center;
        order: -1;
    }

    .agent-nodes {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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


    .continuous-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .continuous-card {
        padding: 2rem 1.5rem;
    }

    .continuous-icon {
        font-size: 2.5rem;
    }

    .continuous-card h3 {
        font-size: 1.5rem;
    }

    .continuous-features li {
        font-size: 1rem;
    }

    .continuous-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .why-section,
    .benchmarks-section,
    .how-it-works-section,
    .supporting-content-section,
    .continuous-section,
    .order-section,
    .contact-section,
    .locations-section,
    .addons-section,
    .lifecycle-section {
        padding: 4rem 0;
    }
    
    .locations-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .locations-map {
        height: 400px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .addons-hero {
        padding: 10rem 0 4rem;
        text-align: left;
    }

    .addons-hero-title {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }

    .addons-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 3rem;
    }

    .hero-story {
        margin-top: 3rem;
    }

    .story-content {
        gap: 3rem;
    }

    .story-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .story-text {
        font-size: 1rem;
    }

    .story-invitation {
        padding: 2.5rem 2rem;
    }

    .invitation-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .invitation-text {
        font-size: 1rem;
    }

    .invitation-cta {
        flex-direction: column;
        width: 100%;
    }

    .invitation-cta .btn {
        width: 100%;
    }

    .addon-card {
        padding: 2rem 1.5rem;
    }

    .addon-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .addon-icon img {
        max-width: 52px;
        max-height: 52px;
    }

    .addon-card h3 {
        font-size: 1.25rem;
    }

    .addon-card p {
        font-size: 0.95rem;
    }

    .addon-status-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .order-section {
        padding: 4rem 0;
    }

    .order-header {
        margin-bottom: 3rem;
    }

    .order-option {
        padding: 2rem 1.5rem;
    }

    .order-option h3 {
        font-size: 1.5rem;
    }

    .order-description {
        font-size: 1rem;
    }

    .order-features li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .comparison-header h3 {
        font-size: 1.25rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .benchmark-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benchmark-icon {
        font-size: 2.5rem;
    }

    .benchmark-content h3 {
        font-size: 1.25rem;
    }

    .benchmark-content p {
        font-size: 1rem;
    }

    .diagram-step {
        gap: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .visual-box {
        width: 100px;
        height: 100px;
    }

    .box-icon {
        width: 50px;
        height: 50px;
    }

    .ai-agents-visual {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .ai-agents-visual h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .central-node {
        width: 140px;
        height: 140px;
    }

    .node-label {
        font-size: 1rem;
    }

    .agent-node {
        padding: 1.5rem;
    }

    .agent-icon {
        font-size: 2rem;
    }

    .agent-name {
        font-size: 1rem;
    }

    .agent-desc {
        font-size: 0.8rem;
    }

    .content-block h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .content-block p {
        font-size: 1rem;
    }

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

    .result-desc {
        font-size: 0.9rem;
    }

    .contact-info h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .addons-cta {
        padding: 3rem 1.5rem;
    }

    .addons-cta h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .addons-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .hero-stats {
        gap: 1rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .continuous-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-modal {
        padding: 1rem;
    }

    .order-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-option {
        padding: 1.5rem 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 95vh;
        margin: 1rem;
        border-radius: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.95rem;
    }

    .order-form {
        gap: 1rem;
    }

    .order-form input,
    .order-form select,
    .order-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-column-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-column-links a {
        font-size: 0.9rem;
    }

    .why-section,
    .benchmarks-section,
    .how-it-works-section,
    .supporting-content-section,
    .continuous-section,
    .order-section,
    .contact-section,
    .locations-section,
    .addons-section,
    .lifecycle-section {
        padding: 3rem 0;
    }
    
    .locations-wrapper {
        gap: 2rem;
    }
    
    .locations-map {
        height: 350px;
    }
    
    .location-item {
        padding: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .why-item {
        padding: 1.5rem;
    }

    .why-item h3 {
        font-size: 1.25rem;
    }

    .why-item p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .benchmark-item {
        gap: 0.75rem;
    }

    .diagram-step {
        gap: 1rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .visual-box {
        width: 80px;
        height: 80px;
    }

    .box-icon {
        width: 40px;
        height: 40px;
    }

    .box-label {
        font-size: 0.75rem;
    }

    .connection-line {
        min-width: 40px;
    }

    .ai-agents-visual {
        padding: 1.5rem 1rem;
    }

    .central-node {
        width: 120px;
        height: 120px;
    }

    .node-label {
        font-size: 0.9rem;
    }

    .node-subtitle {
        font-size: 0.75rem;
    }

    .agent-node {
        padding: 1.25rem;
    }

    .agent-icon {
        font-size: 1.75rem;
    }

    .agent-name {
        font-size: 0.95rem;
    }

    .agent-desc {
        font-size: 0.75rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .results-grid {
        gap: 1rem;
    }

    .result-item {
        padding: 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .result-desc {
        font-size: 0.85rem;
    }

    .lifecycle-stage {
        padding: 1.25rem 1rem;
    }

    .stage-components {
        gap: 0.4rem;
    }

    .component-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }

    .addons-hero {
        padding: 8rem 0 3rem;
    }

    .hero-story {
        margin-top: 2rem;
    }

    .story-content {
        gap: 2.5rem;
    }

    .story-section {
        text-align: left;
    }

    .story-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .story-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .story-invitation {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .invitation-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .invitation-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .invitation-cta {
        margin-top: 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .addon-card {
        padding: 1.75rem 1.25rem;
    }

    .addon-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .addon-icon img {
        max-width: 48px;
        max-height: 48px;
    }

    .addon-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .addon-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .addons-cta {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .addons-hero-title {
        font-size: 2rem;
    }

    .hero-story {
        margin-top: 1.5rem;
    }

    .story-content {
        gap: 2rem;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-text {
        font-size: 0.9rem;
    }

    .story-invitation {
        padding: 1.5rem 1rem;
    }

    .invitation-title {
        font-size: 1.5rem;
    }

    .invitation-text {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .modal-content {
        padding: 1.25rem;
        margin: 0.5rem;
        max-height: 98vh;
    }

    .modal-content h2 {
        font-size: 1.25rem;
        padding-right: 2rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.25rem;
    }

    .order-option {
        padding: 1.25rem 0.75rem;
    }

    .addon-card {
        padding: 1.5rem 1rem;
    }

    .pathway-label,
    .stage-label,
    .component-badge,
    .branch-label {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Large screens - prevent content from being too wide */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        max-width: 1000px;
    }
}

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


.why-item,
.addon-card,
.comparison-card,
.benchmark-item,
.diagram-step,
.agent-node,
.result-item,
.order-option,
.continuous-card,
.benefit-item,
.lifecycle-stage {
    animation: fadeInUp 0.6s ease-out backwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { 
    animation-delay: 0.5s;
}

.addon-card:nth-child(1) { animation-delay: 0.1s; }
.addon-card:nth-child(2) { animation-delay: 0.2s; }
.addon-card:nth-child(3) { animation-delay: 0.3s; }
.addon-card:nth-child(4) { animation-delay: 0.4s; }
.addon-card:nth-child(5) { animation-delay: 0.5s; }

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

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

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

.agent-node:nth-child(1) { animation-delay: 0.1s; }
.agent-node:nth-child(2) { animation-delay: 0.15s; }
.agent-node:nth-child(3) { animation-delay: 0.2s; }
.agent-node:nth-child(4) { animation-delay: 0.25s; }
.agent-node:nth-child(5) { animation-delay: 0.3s; }
.agent-node:nth-child(6) { animation-delay: 0.35s; }

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

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

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

.lifecycle-stage:nth-child(1) { animation-delay: 0.1s; }
.lifecycle-stage:nth-child(3) { animation-delay: 0.15s; }
.lifecycle-stage:nth-child(5) { animation-delay: 0.2s; }
.lifecycle-stage:nth-child(7) { animation-delay: 0.25s; }
.lifecycle-stage:nth-child(9) { animation-delay: 0.3s; }

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.15s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.25s; }

/* Blog Section Styles */
.blog-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    scroll-margin-top: 80px;
}

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

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

.blog-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-post-content {
    padding: 2rem;
}

.linkedin-embed-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-accent);
    border-radius: 8px;
    padding: 1.5rem;
}

.linkedin-embed {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    background: white;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.1rem;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .linkedin-embed-wrapper {
        padding: 1rem;
    }

    .linkedin-embed {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .blog-post-content {
        padding: 1.25rem;
    }

    .linkedin-embed-wrapper {
        padding: 0.75rem;
    }

    .linkedin-embed {
        max-width: 100%;
    }
}