/* ==========================================================================
   ProtoNest Landing Page Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}


body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

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

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f8fafc;
}

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

.section-title {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom-color: #e2e8f0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-sub {
    font-size: 0.75rem;
    color: #718096;
}

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

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-cta-secondary {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-cta-secondary:hover {
    color: #1a1a1a;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-micro {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0;
}

.hero-mockup {
    text-align: center;
}

.mockup-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.mockup-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-1 {
    top: -0.5rem;
    right: -0.5rem;
}

.badge-2 {
    top: 33%;
    left: -1.5rem;
}

.badge-3 {
    bottom: -0.5rem;
    left: 25%;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Services Grid - Reduced card size */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #4a5568;
    margin: 0 auto 1rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Benefits Grid */
.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #ffffff;
}

.benefit-item p {
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.trust-bar {
    text-align: center;
}

.trust-text {
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

.trust-logo {
    width: 5rem;
    height: 2.5rem;
    background-color: #e2e8f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #a0aec0;
}

/* Process Timeline */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-desktop {
    display: none;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e2e8f0;
    transform: translateY(-50%);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.step-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.step-card {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-time {
    font-size: 0.8rem;
    color: #3182ce;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-desc {
    font-size: 0.8rem;
    color: #4a5568;
    margin-bottom: 0;
}

.timeline-mobile {
    display: block;
    space-y: 1.5rem;
}

.timeline-step-mobile {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon-mobile {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.step-icon-mobile svg {
    width: 1rem;
    height: 1rem;
}

.step-content-mobile {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.step-content-mobile h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Work Grid - Reduced card size */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.work-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.work-image {
    aspect-ratio: 16/9;
    background-color: #f1f5f9;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-content {
    padding: 1.25rem;
}

.work-content h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.work-content p {
    font-size: 0.8rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.work-outcome {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.work-cta {
    background: none;
    border: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.work-cta:hover {
    text-decoration: underline;
}

/* Stats - Compact design */
.stats-container {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

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

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: #4a5568;
    font-size: 0.8rem;
}

/* Pricing - Reduced card size */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: #718096;
    transition: color 0.2s ease;
}

.toggle-label.active {
    color: #1a1a1a;
}

.toggle-switch {
    position: relative;
    width: 3rem;
    height: 1.5rem;
    background-color: #cbd5e0;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.toggle-switch.active {
    background-color: #1a1a1a;
}

.toggle-slider {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(1.5rem);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-popular {
    border-color: #1a1a1a;
    background-color: #f8fafc;
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

.feature-check {
    width: 1rem;
    height: 1rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-footnote {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.pricing-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #718096;
}

/* Testimonials - Reduced card size */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: #4a5568;
}

/* FAQ */
.faq-container {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
    transition: background-color 0.2s ease;
    font-size: 0.95rem;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #718096;
    transition: transform 0.2s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact */
.cta-banner {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-title {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-form-section {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-form-container {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    margin-top: 0.125rem;
}

.checkbox-group label {
    margin-bottom: 0;
    flex: 1;
    font-size: 0.9rem;
}

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

.contact-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #4a5568;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-value {
    color: #4a5568;
    font-size: 0.8rem;
}

.contact-note {
    background-color: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 0.875rem;
    margin-top: 1.25rem;
    color: #1e40af;
    font-size: 0.8rem;
}

.made-in-india {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    color: #ffffff;
}

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

.india-flag {
    font-size: 1.25rem;
}

.india-text {
    font-weight: 600;
    font-size: 1rem;
}

.made-in-india p {
    color: #cbd5e0;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 2rem;
}

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

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

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-about {
    color: #a0aec0;
    line-height: 1.6;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

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

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

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    background-color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #4a5568;
    color: #ffffff;
}

.social-link svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-contact {
    color: #a0aec0;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal {
    color: #a0aec0;
    font-size: 0.8rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

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

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .btn:hover,
    .service-card:hover,
    .work-card:hover,
    .pricing-card:hover {
        transform: none;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .timeline-desktop {
        display: block;
    }
    
    .timeline-mobile {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-features {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-cta {
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .cta-title {
        font-size: 2.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .work-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e2e8f0;
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .floating-badge {
        position: static;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .badge-1,
    .badge-2,
    .badge-3 {
        position: static;
        display: inline-block;
        margin: 0.25rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-item {
        max-width: none;
    }
    
    .trust-logos {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .pricing-badges {
        font-size: 0.7rem;
        gap: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card,
    .work-card,
    .testimonial-card,
    .pricing-card,
    .contact-form-container,
    .contact-card {
        border-color: #000000;
        border-width: 2px;
    }
    
    .floating-badge {
        border-color: #000000;
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .floating-badge,
    .btn,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}
