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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f5f7fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2942;
}

.text-gold {
    color: #c5a572;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    background-color: #c5a572;
}

.logo-icon {
    padding: 0.5rem;
    background-color: #1a2942;
    border-radius: 0.5rem;
    color: white;
    transition: background-color 0.3s ease;
}

.logo-text {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a2942;
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #1a2942;
    background-color: #f3f4f6;
}

.nav-link.active {
    color: #c5a572;
    background-color: #fef3e2;
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: none;
    border-radius: 0.375rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    color: #1a2942;
    background-color: #f3f4f6;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link-mobile {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.nav-link-mobile:hover {
    color: #1a2942;
    background-color: #f3f4f6;
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #c5a572;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #b8986a;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Main Content */
.main-content {
    padding-top: 5rem;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a2942 0%, #2a3951 50%, #3a4960 100%);
    color: white;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
    text-shadow: none;
    border: none;
    outline: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #c5a572;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a2942 0%, #3a4960 100%);
    color: white;
    padding: 2rem 0 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }
}

.page-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Hero Badges */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.badge-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.badge-icon.enterprise {
    background-color: #dbeafe;
    color: #2563eb;
}

.badge-icon.growth {
    background-color: #dcfce7;
    color: #16a34a;
}

.badge-icon.startup {
    background-color: #f3e8ff;
    color: #9333ea;
}

.hero-badge span {
    color: #c5a572;
    font-weight: 600;
}

/* Sections */
.segments, .trust-indicators, .bio-section, .achievements, .services-by-segment, .contact-section, .process-section {
    padding: 4rem 0;
    background: white;
}

.segments {
    background: white;
}

.trust-indicators {
    background: #f5f7fa;
}

.achievements {
    background: #f5f7fa;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Segment Tabs */
.segment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-container {
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .tab-container {
        flex-direction: row;
    }
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.tab-btn:hover {
    color: #1a2942;
    background: #e5e7eb;
}

.tab-btn.active {
    background: #1a2942;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Segment Content */
.segment-content {
    background: linear-gradient(to right, #f5f7fa, white);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .segment-content {
        padding: 3rem;
    }
}

.segment-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .segment-info {
        grid-template-columns: 1fr 1fr;
    }
}

.segment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .segment-title {
        font-size: 1.875rem;
    }
}

.segment-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.segment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: #c5a572;
    flex-shrink: 0;
}

.case-study {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.case-study-icon {
    color: #c5a572;
}

.case-study-label {
    font-weight: 600;
    color: #1a2942;
}

.case-study-text {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
}

/* Trust Indicators */
.client-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-logo {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-placeholder {
    height: 3rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.client-type {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .bio-content {
        grid-template-columns: 1fr 1fr;
    }
}

.profile-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bio-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .bio-title {
        font-size: 2.25rem;
    }
}

.bio-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #374151;
    line-height: 1.6;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.achievement-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.achievement-card {
    display: flex;
    gap: 1rem;
}

.achievement-icon {
    padding: 0.75rem;
    background: #fef3e2;
    border-radius: 0.5rem;
    color: #d97706;
    flex-shrink: 0;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-segment {
    background: #f5f7fa;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow 0.2s ease;
}

.service-segment:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.segment-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.segment-icon.enterprise {
    background: #dbeafe;
    color: #2563eb;
}

.segment-icon.growth {
    background: #dcfce7;
    color: #16a34a;
}

.segment-icon.startup {
    background: #f3e8ff;
    color: #9333ea;
}

.segment-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2942;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-check {
    color: #c5a572;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #c5a572;
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-privacy {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.form-privacy p {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Contact Info */
.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #fef3e2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.contact-icon a {
    color: inherit;
}

.contact-label {
    font-weight: 600;
    color: #1a2942;
}

.contact-value {
    color: #6b7280;
}

/* Success Message */
.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.success-content {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 28rem;
    margin: 1rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #16a34a;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1rem;
}

.success-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #c5a572;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: #1a2942;
    color: white;
    padding: 4rem 0;
}

.cta-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #1a2942;
    color: white;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: #c5a572;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    padding: 0.5rem;
    background: #2a3951;
    border-radius: 0.5rem;
    color: white;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background: #c5a572;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #c5a572;
}

.footer-bottom {
    border-top: 1px solid #2a3951;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .segment-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}