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

:root {
    --primary-color: #012e53;
    --secondary-color: #6f7a84;
    --accent-color: #1a5490;
    --text-dark: #1a1a1a;
    --text-light: #6f7a84;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.centered {
    text-align: center;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.logo-subtext {
    font-size: 1rem;
    color: var(--secondary-color);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.btn-primary {
    color: white;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* ===================================
   Page Hero
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===================================
   Features Grid
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===================================
   Technologies Section
   =================================== */
.technologies-section {
    background-color: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tech-item {
    background-color: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

/* ===================================
   Content Grid (About Page)
   =================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visual-box,
.stats-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px;
    border-radius: 12px;
    color: white;
}

.mission-highlight h3,
.stat-highlight h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-highlight p,
.stat-highlight p {
    color: rgba(255,255,255,0.95);
    font-size: 1.125rem;
    line-height: 1.8;
}

.stat-highlight {
    margin-bottom: 30px;
}

.stat-highlight:last-child {
    margin-bottom: 0;
}

/* ===================================
   Founders Section
   =================================== */
.founders-section {
    background-color: var(--bg-light);
}

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

.founder-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.founder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-placeholder {
    width: 150px;
    height: 150px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.founder-info {
    padding: 40px;
}

.founder-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.founder-role {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.founder-bio {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    background-color: var(--bg-white);
}

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

.value-card {
    text-align: center;
    padding: 30px;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Services Page
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(1, 46, 83, 0.02), rgba(26, 84, 144, 0.02));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    background-color: var(--bg-light);
}

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

.pricing-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-badge.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-support {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.support-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.support-details {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.pricing-note {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Process Timeline
   =================================== */
.process-section {
    background-color: var(--bg-white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background-color: var(--border-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    background-color: var(--bg-white);
}

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

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

.portfolio-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
}

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

.portfolio-category {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.tech-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.result-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ===================================
   Capabilities Section
   =================================== */
.capabilities-section {
    background-color: var(--bg-light);
}

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

.capability-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.capability-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.capability-item ul {
    list-style: none;
}

.capability-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.capability-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-blocks {
    margin: 40px 0;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-preview {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.process-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-steps strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.next-steps p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.contact-form {
    max-width: 100%;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 46, 83, 0.1);
}

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

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 5px;
}

.form-footer {
    margin-top: 30px;
}

.button-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

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

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

.spinner {
    animation: rotate 1s linear infinite;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-family: 'Poppins', sans-serif;
}

.footer-tagline {
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* ===================================
   Animations
   =================================== */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

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

    .page-title {
        font-size: 2rem;
    }

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

    .features-grid,
    .services-grid,
    .portfolio-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

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

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        left: 29px;
        top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .page-subtitle {
        font-size: 1.125rem;
    }

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

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

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

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .feature-card,
    .service-card,
    .portfolio-card {
        padding: 30px 20px;
    }

    .visual-box,
    .stats-box {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-image {
        height: 50px;
    }
}

/* === Cal Strip === */
.cal-strip {
    background: linear-gradient(135deg, #6C63FF15, #f0efff);
    border-radius: 16px;
    margin: 0 auto;
    max-width: 1100px;
}
.cal-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cal-strip-text h3 { margin-bottom: 8px; }
.cal-strip-text p { color: #555; margin: 0; }
@media (max-width: 768px) {
    .cal-strip-content { flex-direction: column; text-align: center; }
}

/* === Products Page === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.managed-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.product-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-card.managed { padding: 24px; }
.product-header { display: flex; align-items: center; justify-content: space-between; }
.product-icon { font-size: 32px; }
.product-badge {
    background: #6C63FF;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card h3 { font-size: 20px; margin: 0; }
.product-description { color: #555; font-size: 15px; line-height: 1.6; flex-grow: 1; }
.product-features { list-style: none; padding: 0; margin: 0; }
.product-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #444;
}
.product-features li::before { content: "✓"; position: absolute; left: 0; color: #6C63FF; font-weight: 700; }
.product-pricing { border-top: 1px solid #eee; padding-top: 16px; }
.product-price { font-size: 28px; font-weight: 800; color: #1a1a1a; }
.product-price-period { font-size: 14px; color: #888; margin-left: 4px; }
.product-price-monthly { display: block; font-size: 15px; color: #555; margin-top: 4px; }
.product-guarantee { font-size: 12px; color: #888; text-align: center; margin: 0; }
.btn-block { display: block; text-align: center; }

/* === Partner Page === */
.partner-intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}
@media (max-width: 968px) { .partner-intro-grid { grid-template-columns: 1fr; } }
.partner-benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 { margin: 0 0 4px; font-size: 16px; }
.benefit-item p { margin: 0; color: #555; font-size: 14px; }
.partner-pricing-box {
    background: #f8f7ff;
    border: 1px solid #e0ddff;
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 100px;
}
.wholesale-table { margin-top: 16px; border-radius: 8px; overflow: hidden; border: 1px solid #e0ddff; }
.wholesale-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #e0ddff;
}
.wholesale-row:last-child { border-bottom: none; }
.wholesale-row.header { background: #6C63FF; color: white; font-weight: 600; font-size: 12px; text-transform: uppercase; }
.wholesale-note { font-size: 13px; color: #888; margin-top: 12px; margin-bottom: 0; }
.partner-apply-section { background: #f9f9f9; }
.partner-form-wrapper { max-width: 680px; margin: 0 auto; }

/* === Audit Page === */
.audit-section { max-width: 800px; margin: 0 auto; }
.audit-intro { text-align: center; margin-bottom: 48px; }
.audit-form { background: white; border-radius: 16px; padding: 48px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.roi-embed-wrapper { min-height: 600px; }
.audit-why-section { background: #f9f9f9; }

/* === Pricing Page — Toggle === */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.toggle-label { font-size: 15px; font-weight: 500; color: #444; }
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 28px;
    transition: 0.3s;
}
.toggle-slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}
input:checked + .toggle-slider { background: #6C63FF; }
input:checked + .toggle-slider::before { transform: translateX(24px); }
.toggle-badge {
    background: #16a34a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Bundle Cards === */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
@media (max-width: 1024px) { .bundle-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.bundle-card {
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    border: 2px solid #e5e5e5;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bundle-card.bundle-featured {
    border-color: #16a34a;
    box-shadow: 0 8px 40px rgba(22, 163, 74, 0.15);
    transform: scale(1.02);
}
.bundle-card.bundle-premium { border-color: #7c3aed; }

.bundle-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bundle-badge-premium { background: #7c3aed; }
.bundle-tier-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.bundle-icon { font-size: 36px; }
.bundle-name { font-size: 28px; font-weight: 800; margin: 0; }
.bundle-tagline { color: #555; font-size: 15px; line-height: 1.5; margin: 0; }

.bundle-price-block { background: #f8f8f8; border-radius: 12px; padding: 20px; }
.bundle-setup { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.setup-label { font-size: 13px; color: #888; }
.setup-amount { font-size: 22px; font-weight: 800; color: #1a1a1a; }
.setup-was { font-size: 13px; color: #aaa; text-decoration: line-through; }
.bundle-monthly { display: flex; align-items: baseline; gap: 4px; }
.monthly-amount { font-size: 40px; font-weight: 900; color: #1a1a1a; }
.monthly-period { font-size: 16px; color: #666; }
.bundle-savings { font-size: 13px; color: #16a34a; font-weight: 600; margin-top: 8px; }

.bundle-commitment {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}
.bundle-commitment svg { flex-shrink: 0; color: #6C63FF; }

.bundle-products { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.bundle-products li { font-size: 14px; color: #444; display: flex; align-items: center; gap: 8px; }
.bundle-products li::before { content: "✓"; color: #6C63FF; font-weight: 700; flex-shrink: 0; }
.bundle-products li.inherited { color: #888; }
.bundle-products li.inherited::before { color: #bbb; }
.bundle-products li.bundle-divider {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    padding-top: 4px;
    border-top: 1px dashed #e5e5e5;
}
.bundle-products li.bundle-divider::before { display: none; }

.product-num {
    background: #f0efff;
    color: #6C63FF;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.btn-bundle {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-bundle-foundation { background: #2563EB; color: white; }
.btn-bundle-foundation:hover { background: #1d4ed8; }
.btn-bundle-growth { background: #16a34a; color: white; }
.btn-bundle-growth:hover { background: #15803d; }
.btn-bundle-premium { background: #7c3aed; color: white; }
.btn-bundle-premium:hover { background: #6d28d9; }

.bundle-cta-note { text-align: center; font-size: 12px; color: #999; margin: 0; }
.pricing-disclaimer { text-align: center; color: #666; font-size: 14px; margin-top: 40px; }
.pricing-disclaimer a { color: #6C63FF; }

/* === What's Included === */
.included-section { background: #f9f9f9; }
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.included-item { text-align: center; padding: 24px; }
.included-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.included-item h4 { margin-bottom: 8px; }
.included-item p { color: #555; font-size: 14px; margin: 0; }

/* === Add-Ons === */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.addon-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.addon-name { font-size: 14px; font-weight: 500; color: #333; }
.addon-price { font-size: 20px; font-weight: 800; color: #6C63FF; white-space: nowrap; }
.addon-price span { font-size: 13px; font-weight: 500; color: #888; }

/* === Comparison Table === */
.comparison-table-wrapper { overflow-x: auto; margin-top: 40px; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid #e5e5e5;
    white-space: nowrap;
}
.comparison-table th.product-col { text-align: left; }
.comparison-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}
.comparison-table td.product-col { font-size: 14px; }
.comparison-table td small { display: block; color: #888; font-size: 12px; margin-top: 2px; }
.comparison-table tr:hover { background: #fafafa; }

.foundation-col { background: rgba(37, 99, 235, 0.04); text-align: center; }
.growth-col { background: rgba(22, 163, 74, 0.05); text-align: center; }
.premium-col { background: rgba(124, 58, 237, 0.05); text-align: center; }
.individual-col { text-align: center; color: #666; font-size: 13px; }

th.foundation-col { color: #2563EB; }
th.growth-col { color: #16a34a; }
th.premium-col { color: #7c3aed; }

.check { color: #16a34a; font-size: 18px; font-weight: 700; }
.no-check { color: #ddd; font-size: 18px; }

.phase-header-row td {
    background: #f5f5f5;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    padding: 10px 20px;
}

.comparison-cta-row td { padding: 20px; border-top: 2px solid #e5e5e5; background: white; }
.btn-table {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.btn-table.foundation { background: #2563EB; color: white; }
.btn-table.growth { background: #16a34a; color: white; }
.btn-table.premium { background: #7c3aed; color: white; }
.btn-table.individual { background: #f0f0f0; color: #333; }

/* === FAQ Section === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.faq-item h4 { margin-bottom: 8px; font-size: 16px; }
.faq-item p { color: #555; font-size: 14px; line-height: 1.6; margin: 0; }

/* === Bundle Strip (Products page) === */
.bundle-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 968px) { .bundle-strip-grid { grid-template-columns: 1fr; } }

.bundle-strip-card {
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bundle-strip-card.strip-popular { border-color: #16a34a; box-shadow: 0 4px 20px rgba(22,163,74,0.12); }
.strip-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #16a34a;
    color: white;
}
.strip-badge-premium { background: #7c3aed; }
.strip-header { display: flex; align-items: center; gap: 12px; }
.strip-icon { font-size: 28px; }
.strip-header h3 { margin: 0; font-size: 20px; }
.strip-phase { font-size: 12px; color: #888; display: block; }
.strip-price { font-size: 28px; font-weight: 900; color: #1a1a1a; }
.strip-price span { font-size: 14px; font-weight: 500; color: #666; }
.strip-setup { font-size: 14px; color: #555; }
.strip-savings { font-size: 13px; color: #16a34a; font-weight: 600; }
.strip-products { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.strip-products li { font-size: 13px; color: #555; padding: 4px 0; padding-left: 16px; position: relative; }
.strip-products li::before { content: "✓"; position: absolute; left: 0; color: #6C63FF; font-weight: 700; }

/* === btn-outline === */
.btn-outline {
    border: 2px solid #6C63FF;
    color: #6C63FF;
    background: transparent;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline:hover { background: #6C63FF; color: white; }
