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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Navigation */
.nav {
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

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

.logo-image {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 0.25rem;
}

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

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
}

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

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.mobile-nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-cta {
    margin: 1rem 1.5rem 0.5rem;
    padding: 0.75rem 1.5rem !important;
    background-color: #ffffff;
    color: #000000 !important;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    border-bottom: none !important;
}

.mobile-nav-cta:hover {
    background-color: #f3f4f6 !important;
    color: #000000 !important;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

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

.btn-outline {
    background-color: rgba(17, 17, 17, 0.5);
    color: #ffffff;
    border: 1px solid #333333;
}

.btn-outline:hover {
    background-color: rgba(17, 17, 17, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    min-width: 0;
}

@media (min-width: 1024px) {
    .hero-text {
        align-items: flex-start;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
}

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

.hero-title .highlight {
    color: #ffffff;
    background-color: #000000;
    padding: 0 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

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

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

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

/* Cards */
.hero-cards {
    position: relative;
    width: 100%;
    min-width: 0;
}

.cards-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    filter: blur(48px);
}

.cards-container {
    position: relative;
    width: 100%;
    min-width: 0;
}

.cards-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    filter: blur(48px);
}

.cards-container {
    position: relative;
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #333333;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.card {
    background-color: rgba(17, 17, 17, 0.5);
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.3s;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    hyphens: auto;
}

.card-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 640px) {
    .cards-grid {
        gap: 1rem;
    }
    
    .card {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-alt {
    background-color: rgba(17, 17, 17, 0.5);
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
}

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

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

.service-card {
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

/* Expertise Section */
.expertise-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

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

.expertise-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .expertise-text h2 {
        font-size: 2.5rem;
    }
}

.expertise-text p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

.feature-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #d1d5db;
    font-size: 1rem;
}

/* Progress Chart */
.progress-chart {
    position: relative;
}

.chart-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    filter: blur(48px);
}

.chart-container {
    position: relative;
    background-color: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #333333;
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.chart-subtitle {
    color: #9ca3af;
}

.progress-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
}

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

.progress-value {
    font-size: 0.875rem;
    color: #ffffff;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: #333333;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #ffffff, #e5e7eb);
    border-radius: 9999px;
    width: 0;
    transition: width 2s ease-out;
}

.progress-fill.animate {
    width: var(--target-width);
}

/* Results Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.carousel-slide {
    min-width: 33.333%;
    width: 33.333%;
    flex-shrink: 0;
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    padding: 0 1rem;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
}

.case-study-card {
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid #333333;
    border-radius: 1rem;
    padding: 2rem;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
}

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

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

.logo-placeholder {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
}

.website-info {
    flex: 1;
}

.website-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.customer-name {
    color: #9ca3af;
    font-size: 1rem;
}

.results-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

@media (max-width: 640px) {
    .results-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

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

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.testimonial {
    font-style: italic;
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #ffffff;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 3rem;
    height: 3rem;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background-color: #ffffff;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, #000000, #1a1a1a);
    padding: 6rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .cta h2 {
        font-size: 2.5rem;
    }
}

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 32rem;
    margin: 0 auto;
}

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

/* Contact Section */
.contact-section {
    background-color: rgba(17, 17, 17, 0.5);
}

.contact-content {
    display: grid;
    gap: 4rem;
    align-items: start;
}

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

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

.contact-info .section-description {
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.contact-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid #333333;
    border-radius: 1rem;
    padding: 2rem;
}

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

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 0.375rem;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 0.25rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #ffffff;
    border-color: #ffffff;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.125rem;
    width: 0.25rem;
    height: 0.5rem;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-submit {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .form-submit {
        width: 100%;
        justify-self: stretch;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid #333333;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

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

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

.footer-brand .logo-image {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-contact li {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
} 