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

:root {
    --primary-blue: #2F4369;   /* Primary blue */
    --primary-light: #4a6a9e;  /* Lighter shade of primary for accents */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.navbar.visible {
    transform: translateY(0);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #2c3e50;
}

.navbar-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.navbar-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    padding: 2rem 1.5rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7f8c8d;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: #2F4369;
    margin: 0;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.hero .image-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8eef2 0%, #d5dce3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.hero .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.3) 49.5%, rgba(255,255,255,0.3) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.3) 49.5%, rgba(255,255,255,0.3) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* ===== About Section ===== */
.about {
    padding: 8rem 1.5rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.about .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c9d6df 0%, #b5c3cd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.2) 49.5%, rgba(255,255,255,0.2) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.2) 49.5%, rgba(255,255,255,0.2) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.875rem;
    color: #7f8c8d;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
}

.image-overlay-text {
    position: absolute;
    top: 2rem;
    left: 2rem;
    max-width: 80%;
}

.overlay-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
}

.overlay-title strong {
    font-weight: 700;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.about-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
}

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

.about-punchline {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.about-feature-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c3e50;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke: #2c3e50;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.about-link .arrow {
    font-size: 1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--primary-blue);
}

.about-link:hover .arrow {
    transform: translate(3px, 3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem;
    margin: 4rem 0 0 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    position: relative;
    border-radius: 40px;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
    border-radius: 40px 40px 0 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 500;
}

/* ===== Mid-Page CTA Section ===== */
.mid-cta {
    padding: 4rem 0;
    background-color: #f5f5f5;
    width: 100%;
}

.mid-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.mid-cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mid-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
}

.mid-cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #5a6c7d;
    max-width: 600px;
}

.mid-cta-logos {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* ===== Touch Experience Section ===== */
.touch-experience {
    padding: 8rem 1.5rem;
    background-color: #ffffff;
}

.touch-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.touch-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.touch-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.touch-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.touch-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.touch-feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
}

.touch-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.touch-feature:hover .touch-feature-image img {
    transform: scale(1.05);
}

.touch-feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    color: #2c3e50;
}

.touch-feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* ===== Comparison Section ===== */
.comparison {
    padding: 8rem 1.5rem;
    background-color: #fafafa;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.comparison-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.comparison-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 24px;
    cursor: ew-resize;
    user-select: none;
    background: #f5f5f5;
}

.comparison-image-before,
.comparison-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-image-before {
    z-index: 1;
}

.comparison-image-after {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.comparison-image-before img,
.comparison-image-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-arrows {
    color: #2c3e50;
    display: block;
}

/* ===== Tablet Styles ===== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-content {
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .stats {
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .touch-experience {
        padding: 4rem 1.5rem;
    }

    .touch-header {
        margin-bottom: 3rem;
    }

    .touch-features {
        gap: 2.5rem;
    }

    .comparison {
        padding: 4rem 1.5rem;
    }

    .comparison-header {
        margin-bottom: 3rem;
    }
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-text {
        text-align: left;
        display: contents;
    }

    .hero-subtitle {
        order: 1;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        order: 2;
    }

    .hero-image {
        order: 3;
    }

    .hero-description {
        order: 4;
    }

    .hero-cta {
        flex-direction: column;
        order: 5;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero .image-placeholder {
        max-width: 100%;
    }

    .about {
        padding: 3rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .image-overlay-text {
        top: 1.5rem;
        left: 1.5rem;
        max-width: 85%;
    }

    .overlay-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
        margin: 3rem -1.5rem 0 -1.5rem;
    }

    .stat-item {
        padding: 1.25rem;
    }

    .touch-experience {
        padding: 3rem 1.5rem;
    }

    .touch-header {
        margin-bottom: 2.5rem;
    }

    .touch-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .comparison {
        padding: 3rem 1.5rem;
    }

    .comparison-header {
        margin-bottom: 2.5rem;
    }

    .comparison-label {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .slider-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

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

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

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .about {
        padding: 2rem 1rem;
    }

    .image-overlay-text {
        top: 1rem;
        left: 1rem;
        max-width: 90%;
    }

    .about-description {
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .stats {
        padding: 2rem 1rem;
        margin: 2rem -1rem 0 -1rem;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .touch-experience {
        padding: 2rem 1rem;
    }

    .touch-header {
        margin-bottom: 2rem;
    }

    .touch-features {
        gap: 2.5rem;
    }

    .touch-feature-title {
        font-size: 1.125rem;
    }

    .touch-feature-description {
        font-size: 0.875rem;
    }

    .comparison {
        padding: 2rem 1rem;
    }

    .comparison-header {
        margin-bottom: 2rem;
    }

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

    .comparison-label {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .slider-button {
        width: 45px;
        height: 45px;
    }

    .slider-arrow {
        font-size: 0.75rem;
    }
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 8rem 1.5rem;
    background-color: #ffffff;
}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.how-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.how-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.how-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.how-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(47, 67, 105, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-icon svg {
    width: 48px;
    height: 48px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.how-step:hover .step-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(47, 67, 105, 0.5);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
}

.step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 300px;
}

/* ===== Blueprint to Reality Section ===== */
.blueprint-reality {
    padding: 8rem 1.5rem;
    background-color: #fafafa;
}

.blueprint-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.blueprint-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.blueprint-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.blueprint-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blueprint-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blueprint-feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
}

.blueprint-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blueprint-feature:hover .blueprint-feature-image img {
    transform: scale(1.05);
}

.blueprint-feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    color: #2c3e50;
}

.blueprint-feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* ===== Pricing & Testimonials Section ===== */
.pricing-testimonials {
    padding: 8rem 1.5rem;
    background-color: #ffffff;
}

.pricing-testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pricing-side {
    max-width: 600px;
}

.pricing-header {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-price-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

.price {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
}

.pricing-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-features {
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

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

.pricing-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-feature-text {
    flex: 1;
}

.pricing-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.pricing-feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
}

.pricing-cta {
    padding: 0 2.5rem 3rem 2.5rem;
    text-align: center;
}

.pricing-cta .btn-primary {
    width: 100%;
    max-width: 400px;
}

/* ===== Testimonials Side ===== */
.testimonials-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 2rem;
}

.testimonials-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    line-height: 1.3;
    color: #2c3e50;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(47, 67, 105, 0.15);
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-3px);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: italic;
}


.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #5a6c7d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #2c3e50;
}

.modal-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    font-size: 1rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(47, 67, 105, 0.1);
}

.modal-form .btn-large {
    width: 100%;
    margin: 0;
    margin-top: 0.5rem;
}

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

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-help {
    font-size: 0.8125rem;
    color: #5a6c7d;
    line-height: 1.5;
    margin: 0;
}

.modal-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.modal-textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(47, 67, 105, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed #e0e0e0;
    border-radius: 16px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--primary-blue);
    background: rgba(47, 67, 105, 0.05);
}

.file-input:focus + .file-label {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(47, 67, 105, 0.1);
}

.file-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.file-text {
    font-size: 0.9375rem;
    color: #5a6c7d;
}

.file-name {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.order-summary {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

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

/* ===== Responsive Styles for New Sections ===== */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 4rem 1.5rem;
    }

    .how-steps {
        gap: 2rem;
    }

    .how-step {
        padding: 2rem 1rem;
    }

    .pricing-testimonials {
        padding: 4rem 1.5rem;
    }

    .pricing-testimonials-container {
        gap: 3rem;
    }

    .pricing-features {
        gap: 2rem;
    }

    .testimonial {
        padding: 1.5rem 0.75rem;
    }

    .final-cta {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 1.5rem;
    }

    .how-header {
        margin-bottom: 3rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-step {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        width: 90px;
        height: 90px;
    }

    .step-icon svg {
        width: 42px;
        height: 42px;
    }

    .blueprint-reality {
        padding: 3rem 1.5rem;
    }

    .blueprint-header {
        margin-bottom: 2.5rem;
    }

    .blueprint-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-testimonials {
        padding: 3rem 1.5rem;
    }

    .pricing-testimonials-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-side {
        max-width: 100%;
    }

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

    .pricing-price-section {
        padding: 3rem 1.5rem;
    }

    .price {
        font-size: 4rem;
    }

    .pricing-features {
        padding: 2rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-cta {
        padding: 0 1.5rem 2rem 1.5rem;
    }

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

    .testimonial {
        padding: 1.5rem 0.5rem;
    }

    .final-cta {
        padding: 3rem 1.5rem;
    }

    .final-cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 2rem 1rem;
    }

    .how-header {
        margin-bottom: 2rem;
    }

    .how-steps {
        gap: 2rem;
    }

    .how-step {
        padding: 1.5rem 1rem;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 36px;
        height: 36px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -6px;
        right: -6px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .blueprint-reality {
        padding: 2rem 1rem;
    }

    .blueprint-header {
        margin-bottom: 2rem;
    }

    .blueprint-features {
        gap: 2.5rem;
    }

    .pricing-testimonials {
        padding: 2rem 1rem;
    }

    .testimonials-list {
        gap: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem 0.5rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
    }

    .testimonial-author {
        font-size: 0.8125rem;
    }

    .final-cta {
        padding: 2rem 1rem;
    }

    .final-cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .final-cta-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

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

    .modal-description {
        font-size: 0.9375rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1.75rem;
    }

    .modal-input,
    .modal-textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .file-label {
        padding: 1.5rem;
    }

    .file-icon {
        width: 28px;
        height: 28px;
    }

    .order-summary {
        padding: 1.25rem;
    }

    .summary-row .price {
        font-size: 1.25rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: #2c3e50;
    padding: 4rem 1.5rem 2rem;
    color: #ffffff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    align-items: start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.btn-footer {
    background: #ffffff;
    color: #2c3e50;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-footer:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

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

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

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

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

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

    .btn-footer {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-logo {
        width: 32px;
        height: 32px;
    }
}
