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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #282c35;
}

/* Typography - Headings use Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.21);
}

.navbar {
    padding: 0;
}

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

.navbar-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar-item {
    margin: 0;
}

.navbar-link {
    color: #b0b8c4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-link:hover {
    color: #ffffff;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-cta {
    padding: 10px 24px;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 35, 50, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid #2d3848;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-item {
        width: 100%;
    }
    
    .navbar-link,
    .navbar-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.hero {
    padding: 80px 20px;
    background-image: url('./images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.hero-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.carousel-container {
    position: relative;
    min-height: 120px;
}

.carousel-slide {
    display: none;
    padding: 30px;
    background: rgba(139, 90, 43, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ffffff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.testimonial-section {
    padding: 30px;
    background: rgba(139, 90, 43, 0.85);
    backdrop-filter: blur(10px);
    border-left: 4px solid #8B5A2B;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.ratings {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rating {
    font-size: 0.9rem;
    color: #f5f5f5;
    font-weight: 500;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 640px) {
    .hero {
        padding: 40px 20px;
    }

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

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

    .carousel-slide {
        padding: 20px;
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: #282c35;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #b0b8c4;
    margin-bottom: 50px;
    max-width: 800px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    position: relative;
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.feature-card.selected {
    border-color: #ff6b35;
    background: #2a3444;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card-description {
    font-size: 0.95rem;
    color: #b0b8c4;
    line-height: 1.6;
}

.feature-card.selected .feature-card-title {
    color: #ff6b35;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid #4a5568;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-card.selected::before {
    background: #ff6b35;
    border-color: #ff6b35;
}

.feature-card.selected::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.features-submit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.features-submit-btn {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-submit-btn:hover:not(:disabled) {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.features-submit-btn:disabled {
    background: #4a5568;
    cursor: not-allowed;
    opacity: 0.6;
}

.features-selection-count {
    font-size: 0.9rem;
    color: #b0b8c4;
}

.features-selection-count span {
    color: #ff6b35;
    font-weight: 600;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
}

/* Discovery Section */
.discovery-section {
    padding: 100px 20px;
    background: #282c35;
}

.discovery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discovery-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.discovery-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.discovery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.discovery-description {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.discovery-subtitle {
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.6;
}

.discovery-form {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.discovery-email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.discovery-email-input::placeholder {
    color: #6b7280;
}

.discovery-email-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.discovery-submit-btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.discovery-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.discovery-right {
    position: relative;
}

.discovery-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .discovery-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discovery-title {
        font-size: 2rem;
    }
    
    .discovery-form {
        flex-direction: column;
    }
    
    .discovery-submit-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .discovery-section {
        padding: 60px 20px;
    }
    
    .discovery-title {
        font-size: 1.75rem;
    }
    
    .discovery-description {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: #282c35;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-description {
    font-size: 1.125rem;
    color: #b0b8c4;
    margin-bottom: 50px;
    max-width: 900px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card-description {
    font-size: 0.95rem;
    color: #b0b8c4;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Section */
.why-section {
    padding: 100px 20px;
    background: #282c35;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.why-description {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.why-right {
    position: relative;
}

.why-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

@media (max-width: 968px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 60px 20px;
    }
    
    .why-title {
        font-size: 1.75rem;
    }
    
    .why-description {
        font-size: 1rem;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 20px;
    background: #282c35;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: start;
}

.case-studies-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.case-studies-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.case-studies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.case-studies-description {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.case-studies-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    border-left: 1px solid #2d3848;
}

.case-study-card {
    padding: 30px 0;
    transition: all 0.3s ease;
}

.case-study-number {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.case-study-description {
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.stat-box-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.stat-box-blue {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.stat-box-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-box-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-box-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-box-yellow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

@media (max-width: 968px) {
    .case-studies-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-studies-left {
        position: static;
    }
    
    .case-studies-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #2d3848;
        padding-top: 30px;
    }
    
    .case-studies-title {
        font-size: 2rem;
    }
    
    .case-study-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .case-studies-section {
        padding: 60px 20px;
    }
    
    .case-studies-title {
        font-size: 1.75rem;
    }
    
    .case-studies-description {
        font-size: 1rem;
    }
    
    .case-study-card {
        padding: 20px 0;
    }
    
    .case-study-title {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* Consultation Section */
.consultation-section {
    padding: 100px 20px;
    background: #282c35;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.consultation-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #dedede;
    border-radius: 12px;
    padding: 40px;
}

.consultation-left .consultation-headline {
    color: #ff6b35;
}
.consultation-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ff6b35;
    border-radius: 12px;
    padding: 40px;
}

.consultation-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 5px;
}

.consultation-left .consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.consultation-right .consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.consultation-left .consultation-description {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
}

.consultation-right .consultation-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.95;
}

.consultation-form {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.consultation-email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a1a;
    outline: none;
    transition: all 0.3s ease;
}

.consultation-email-input::placeholder {
    color: #999999;
}

.consultation-email-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.consultation-submit-btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consultation-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.consultation-contact-btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ffffff;
    color: #ff6b35;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.consultation-contact-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-left,
    .consultation-right {
        padding: 30px;
    }
    
    .consultation-title {
        font-size: 2rem;
    }
    
    .consultation-form {
        flex-direction: column;
    }
    
    .consultation-submit-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .consultation-section {
        padding: 60px 20px;
    }
    
    .consultation-title {
        font-size: 1.75rem;
    }
    
    .consultation-description {
        font-size: 1rem;
    }
}

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: #282c35;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.process-col-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.process-col-2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    border-left: 1px solid #2d3848;
}

.process-col-3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    border-left: 1px solid #2d3848;
}

.process-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.process-description {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.process-cta {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.process-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.process-step {
    padding: 30px 0;
}

.process-step-number {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-step-description {
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-col-1 {
        position: static;
    }
    
    .process-col-2,
    .process-col-3 {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #2d3848;
        padding-top: 30px;
    }
    
    .process-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding: 60px 20px;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 20px 0;
    }
    
    .process-step-title {
        font-size: 1.125rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #282c35;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
    text-align: center;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #ff6b35;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff6b35;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff6b35;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.faq-answer ul {
    padding: 0 30px 25px 30px;
    margin-left: 20px;
    color: #b0b8c4;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-answer strong {
    color: #ffffff;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p,
    .faq-answer ul {
        padding: 0 20px 20px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: #282c35;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: #ff6b35;
    padding: 40px;
    border-radius: 12px;
    align-items: center;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
}

.contact-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 8px;
    padding: 30px;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    background: #282c35;
    border: 2px solid #2d3848;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-checkbox-group {
    margin-top: 10px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #b0b8c4;
    line-height: 1.6;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #ff6b35;
    flex-shrink: 0;
}

.contact-submit-btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-left {
        padding: 25px;
    }
    
    .contact-right {
        padding: 25px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #282c35;
    padding: 60px 20px 30px;
    border-top: 1px solid #2d3848;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: 140px;
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section:first-child {
    max-width: 33%;
    flex-shrink: 0;
}

.footer-section:nth-child(2) {
    flex: 1;
}

.footer-section-contact {
    margin-left: auto;
    flex: 1;
    max-width: 300px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.9rem;
    color: #b0b8c4;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address,
.footer-phone,
.footer-registration {
    font-size: 0.9rem;
    color: #b0b8c4;
    line-height: 1.6;
}

.footer-registration {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2d3848;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #6b7280;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        justify-content: stretch;
    }
    
    .footer-section-contact {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        gap: 15px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 20px 80px;
    background: #282c35;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-right {
    position: relative;
}

.about-hero-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 5px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-hero-description {
    font-size: 1.25rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.about-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.about-mission,
.about-approach {
    padding: 100px 20px;
    background: #282c35;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-paragraph {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.about-values {
    padding: 100px 20px;
    background: #282c35;
}

.about-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
    text-align: center;
}

.about-values .about-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value-card {
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-value-description {
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.about-cta {
    padding: 100px 20px;
    background: #ff6b35;
    text-align: center;
}

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

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-cta-description {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 100px 20px 60px;
    }
    
    .about-hero-container {
        gap: 30px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1.125rem;
    }
    
    .about-mission,
    .about-approach,
    .about-values {
        padding: 60px 20px;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-cta {
        padding: 60px 20px;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-description {
        font-size: 1.125rem;
    }
    
    .about-value-card {
        padding: 30px;
    }
}

/* Contact Page Styles */
.contact-page-hero {
    padding: 120px 20px 80px;
    background: #282c35;
    text-align: center;
}

.contact-page-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-page-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-page-description {
    font-size: 1.25rem;
    color: #b0b8c4;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-page-section {
    padding: 100px 20px;
    background: #282c35;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 5px;
}

.contact-info-text {
    font-size: 1rem;
    color: #b0b8c4;
    line-height: 1.8;
}

.contact-info-link {
    color: #b0b8c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #ff6b35;
}

.contact-page-right {
    background: #ff6b35;
    border-radius: 12px;
    padding: 40px;
}

.contact-page-right .contact-form {
    background: #252f3f;
    border: 2px solid #2d3848;
    border-radius: 8px;
    padding: 30px;
    gap: 5px;
}

@media (max-width: 968px) {
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-page-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-page-hero {
        padding: 100px 20px 60px;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-description {
        font-size: 1.125rem;
    }
    
    .contact-page-section {
        padding: 60px 20px;
    }
    
    .contact-page-right {
        padding: 25px;
    }
    
    .contact-page-right .contact-form {
        padding: 20px;
    }
    
    .contact-page-section-title {
        font-size: 1.75rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    padding: 120px 20px 80px;
    background: #282c35;
    text-align: center;
}

.terms-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.terms-intro {
    font-size: 1.25rem;
    color: #b0b8c4;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.terms-content {
    padding: 100px 20px;
    background: #282c35;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.terms-text {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-list li {
    font-size: 1.125rem;
    color: #b0b8c4;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-link {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.terms-updated {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2d3848;
}

@media (max-width: 640px) {
    .terms-hero {
        padding: 100px 20px 60px;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-intro {
        font-size: 1.125rem;
    }
    
    .terms-content {
        padding: 60px 20px;
    }
    
    .terms-section {
        margin-bottom: 40px;
    }
    
    .terms-section-title {
        font-size: 1.5rem;
    }
    
    .terms-text {
        font-size: 1rem;
    }
}

