:root {
    --primary-color: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --accent-color: #ffd700;
    --accent-hover: #ffea00;
    --text-main: #212121;
    --text-light: #757575;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --success-color: #2e7d32;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.text-white {
    color: white;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--success-color);
    color: white;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.4);
}

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

.hero {
    background: linear-gradient(to bottom, #2F3A45 0%, #35434F 100%);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 500px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.proof-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.comparison-container {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease;
}

.comparison-card.highlight {
    border: 3px solid var(--success-color);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.15);
    transform: scale(1.03);
    z-index: 2;
    background: linear-gradient(to bottom, #f1f8e9, #fff);
}

.comparison-card.highlight:hover {
    transform: scale(1.05);
}

.comparison-card img {
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
}

.comparison-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.label-old {
    background: #ffebee;
    color: #c62828;
}

.label-new {
    background: #e8f5e9;
    color: #2e7d32;
}

.highlight-transform {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.highlight-transform::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -5px;
    right: -5px;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.4;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-card.old-version {
    filter: grayscale(0.1);
    opacity: 0.9;
    transform: scale(0.98);
}

.comparison-card.new-version {
    border: 4px solid var(--success-color);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
}

.comparison-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.connector-arrow {
    font-size: 3rem;
    color: var(--primary-light);
    font-weight: bold;
    animation: pulse-arrow 2s infinite;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes pulse-arrow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .connector-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    @keyframes pulse-arrow {
        0% {
            transform: scale(1) rotate(90deg);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.1) rotate(90deg);
            opacity: 1;
        }

        100% {
            transform: scale(1) rotate(90deg);
            opacity: 0.8;
        }
    }
}

.benefits-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.segmentation-section {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.profile-card {
    text-align: center;
    padding: var(--spacing-md);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2.5rem;
    box-shadow: 0 8px 16px rgba(26, 35, 126, 0.2);
    transition: transform 0.3s;
}

.profile-card:hover .profile-icon {
    transform: scale(1.1) rotate(5deg);
}

.profile-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.profile-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.deliverable-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to right, #f8f9fa, #e8eaf6);
}

.deliverable-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.deliverable-image img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.deliverable-list li {
    background: #fcfcfc;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--success-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.deliverable-list li:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.deliverable-list .check-icon {
    background: var(--success-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 1rem;
}

.urgency-section {
    padding: var(--spacing-lg) 0;
    background: #2F3A45;
    color: white;
    text-align: center;
}

.urgency-section h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.pricing-section {
    padding: var(--spacing-lg) 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border: 1px solid #ddd;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border: 4px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    z-index: 2;
    order: 1;
}

.pricing-card.premium:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .pricing-card.premium {
        order: -1;
        transform: scale(1.02);
    }
}

.pricing-card.standard {
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    z-index: 1;
    opacity: 0.95;
}

.pricing-card.standard .pricing-header {
    background: transparent;
    border-bottom: 1px solid #eee;
}

.pricing-card.premium .pricing-header {
    background: linear-gradient(to bottom, #fff9c4, #fff);
    padding-bottom: var(--spacing-md);
}

.popular-badge {
    background: var(--accent-color);
    color: var(--primary-dark);
    text-align: center;
    padding: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-header {
    padding: var(--spacing-md);
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid #eee;
    position: relative;
}

.price-container {
    margin: var(--spacing-sm) 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.standard .new-price {
    color: var(--text-main);
}

.premium .new-price {
    color: var(--success-color);
}

.pricing-body {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.check-icon {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-weight: bold;
}

.faq-section {
    padding: var(--spacing-lg) 0;
    max-width: 800px;
    margin: 0 auto;
    content-visibility: auto;
}

details {
    background: white;
    margin-bottom: var(--spacing-xs);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: height 0.3s ease-out;
}

summary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-light);
    border-top: 1px solid #f0f0f0;
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    overflow: hidden;
    content-visibility: auto;
}

.gallery-container {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: var(--spacing-md) 5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 80%;
    max-width: 600px;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .gallery-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    /* LCP Optimization: Remove expensive effects on mobile */
    .hero-image img {
        filter: none;
        animation: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.gallery-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 2.2rem;
    }
}

.gallery-header .text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.gallery-header .text-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.swipe-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-light);
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.hand-icon {
    font-size: 1.8rem;
    animation: swipe-anim 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes swipe-anim {

    0%,
    100% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }
}

.quality-tag {
    color: var(--primary-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}





/* Feedback Section */
.feedback-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.feedback-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--spacing-md) 0;
    /* Mask to fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.feedback-track {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    animation: scroll 30s linear infinite;
}

.feedback-item {
    width: 300px;
    /* Fixed width for consistency */
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feedback-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover to pause (optional, good UX) */
.feedback-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--spacing-md) / 2)));
    }
}

@media (max-width: 768px) {
    .feedback-item {
        width: 250px;
    }

    .feedback-track {
        gap: var(--spacing-sm);
    }
}