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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --ocean-blue: #2D6AA0;
    --soft-grey: #F3F2F1;
    --antique-gold: #C2A76E;
    --charcoal: #2A2A2A;
    --white: #FFFFFF;
    --soft-red: #D9534F;
    --sage-green: #84A98C;
    --text-dark: var(--charcoal);
    --text-gray: #5A5A5A;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3 {
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
    height: auto;
}

/* Navigation */
.navbar {
    background: var(--ocean-blue);
    padding: 12px 30px;
    position: fixed;
    top: 10px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: invert(1) brightness(2);
    opacity: 0.95;
}

.logo-text-fallback {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    transition: opacity 0.3s;
    padding: 8px 0;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-cta {
    background: var(--white);
    color: var(--ocean-blue);
    border: none;
    padding: 12px 36px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--antique-gold);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(194, 167, 110, 0.3);
}

.btn-primary:hover {
    background: #B09560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 167, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--antique-gold);
    padding: 12px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(194, 167, 110, 0.1);
    transform: translateY(-2px);
}

/* Hero Section - FIXED: Removed fixed heights, using auto */
.hero {
    background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.2) 100%),
                url('hero-image.jpg') center/cover;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    margin-top: 0;
    background-position: center center;
    overflow: visible;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: auto;
    overflow: visible;
}

.hero-text {
    max-width: 550px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    height: auto;
    overflow: visible;
}

/* Mobile override for hero-text */
@media (max-width: 768px) {
    .hero-text {
        max-width: 100% !important;
    }
}

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

.screenshot-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-link:hover {
    transform: scale(1.02);
}

.screenshot-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    border: 3px solid var(--ocean-blue);
    box-shadow: 0 10px 40px rgba(45, 106, 160, 0.25);
    animation: screenshotBounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.screenshot-image:hover {
    box-shadow: 0 15px 50px rgba(45, 106, 160, 0.35);
}

/* Screenshot Bounce Animation */
@keyframes screenshotBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero h1 {
    font-size: 56px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: fit-content;
}

.trustpilot-container {
    display: block;
    text-align: left;
    margin: 0;
    padding: 0;
    position: relative;
}

.trustpilot-widget {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    position: relative !important;
    left: 0 !important;
    transform: translateX(-112px) !important;
}

.trustpilot-widget * {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.trustpilot-widget iframe {
    display: block !important;
    margin: 0 !important;
}

.trustpilot-widget a {
    display: inline-block;
    color: var(--ocean-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    margin: 0;
}

/* Feature Badges */
.feature-badges {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: visible;
    height: auto;
}

.feature-badges .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    overflow: visible;
    height: auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background-image: url('check.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: hue-rotate(90deg) saturate(0.9);
}

.badge span {
    color: var(--ocean-blue);
    font-size: 18px;
    font-weight: 500;
}

/* Problem Statement */
.problem-statement {
    background: #D4C4A8;
    padding: 50px 20px;
    overflow: visible;
    height: auto;
}

.problem-statement h2 {
    text-align: center;
    font-size: 34px;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Comparison Section - FIXED: Removed fixed heights */
.comparison {
    padding: 100px 20px;
    background: var(--soft-grey);
    overflow: visible;
    height: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
    overflow: visible;
    height: auto;
}

.comparison-column {
    position: relative;
    overflow: visible;
    height: auto;
}

.comparison-left {
    background: transparent;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    overflow: visible;
}

.comparison-left h3 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
}

.comparison-right {
    background: var(--white);
    padding: 50px 45px;
    border: 4px solid var(--antique-gold);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(194, 167, 110, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: auto;
    overflow: visible;
}

.comparison-right::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--antique-gold), #D4AF6E);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.15;
}

.comparison-right h3 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
}

.comparison-left .comparison-list,
.comparison-right .comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-left .comparison-list li,
.comparison-right .comparison-list li {
    font-size: 22px;
    color: var(--text-dark);
    padding: 20px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.5;
}

.comparison-left .comparison-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--soft-red);
    font-size: 32px;
    font-weight: bold;
    top: 18px;
}

.comparison-right .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-size: 28px;
    font-weight: bold;
    top: 20px;
}

.comparison-logo {
    height: 42px;
    width: auto;
    margin-bottom: 15px;
}

/* Features Section - FIXED */
.features {
    padding: 100px 20px;
    background: var(--white);
    overflow: visible;
    height: auto;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Carousel - FIXED */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    height: auto;
}

.carousel-slides {
    position: relative;
    width: 100%;
    overflow: visible;
    height: auto;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: auto;
    overflow: visible;
}

.carousel-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: var(--soft-grey);
    border-radius: 20px;
    height: auto;
    overflow: visible;
}

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

.slide-text {
    padding: 20px;
}

.slide-text h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.slide-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.carousel-arrow {
    pointer-events: all;
    background: var(--white);
    border: 2px solid var(--antique-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    color: var(--antique-gold);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--antique-gold);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-prev {
    margin-left: -25px;
}

.carousel-next {
    margin-right: -25px;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D1D1;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--antique-gold);
    transform: scale(1.2);
}

/* Reviews Section - FIXED */
.reviews {
    padding: 100px 20px;
    background: var(--soft-grey);
    overflow: visible;
    height: auto;
}

.reviews-title {
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    height: auto;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: auto;
    overflow: visible;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-stars {
    color: var(--antique-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}

/* CTA Section - FIXED */
.cta {
    padding: 100px 20px;
    background: var(--ocean-blue);
    text-align: center;
    overflow: visible;
    height: auto;
}

.cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.cta p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* Legal Pages */
.legal-page {
    padding-top: 100px;
}

.legal-header {
    background: var(--ocean-blue);
    padding: 80px 20px;
    text-align: center;
}

.legal-header h1 {
    font-size: 48px;
    color: var(--white);
    font-weight: 400;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content a {
    color: var(--ocean-blue);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-footer-cta {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--soft-grey);
}

/* Floating Guide Box */
.floating-guide-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, #D4B87A 100%);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(194, 167, 110, 0.4);
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 360px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
    animation: gentleGlow 3s ease-in-out infinite, gentleBounce 2s ease-in-out infinite;
}

.floating-guide-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(194, 167, 110, 0.6);
}

.floating-guide-icon {
    font-size: 42px;
    line-height: 1;
    animation: gentleRotate 4s ease-in-out infinite;
}

.floating-guide-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floating-guide-text strong {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--white);
}

.floating-guide-text span {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Manrope', sans-serif;
}

/* Glow Animation */
@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(194, 167, 110, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(194, 167, 110, 0.7), 0 0 30px rgba(194, 167, 110, 0.5);
    }
}

/* Gentle Bounce Animation */
@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Icon Rotate Animation */
@keyframes gentleRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* Footer - FIXED */
.footer {
    background: #D4C4A8;
    padding: 30px 20px;
    overflow: visible;
    height: auto;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        left: 10px;
        right: 10px;
        border-radius: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 20px 60px;
        background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0.3) 100%),
                    url('hero-image.jpg') center/cover;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .comparison {
        padding: 80px 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .comparison-left,
    .comparison-right {
        padding: 40px 30px;
    }
    
    .comparison-left h3,
    .comparison-right h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .comparison-logo {
        height: 36px;
    }
    
    .comparison-left .comparison-list li,
    .comparison-right .comparison-list li {
        font-size: 20px;
        padding: 18px 0;
        padding-left: 35px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .carousel-prev {
        margin-left: -22px;
    }
    
    .carousel-next {
        margin-right: -22px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reviews-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 15px;
        border-radius: 16px;
        left: 10px;
        right: 10px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .nav-cta {
        padding: 10px 24px;
        font-size: 16px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
        height: auto;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-screenshot {
        display: none;
    }
    
    .hero h1 {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .feature-badges .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .problem-statement {
        padding: 40px 20px;
    }
    
    .problem-statement h2 {
        font-size: 26px;
    }
    
    .comparison {
        padding: 60px 20px;
    }
    
    .comparison-grid {
        gap: 40px;
    }
    
    .comparison-left,
    .comparison-right {
        padding: 30px 25px;
    }
    
    .comparison-left h3,
    .comparison-right h3 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
    .comparison-logo {
        height: 30px;
    }
    
    .comparison-left .comparison-list li,
    .comparison-right .comparison-list li {
        font-size: 18px;
        padding: 16px 0;
        padding-left: 32px;
    }
    
    .comparison-left .comparison-list li::before {
        font-size: 28px;
        top: 15px;
    }
    
    .comparison-right .comparison-list li::before {
        font-size: 24px;
        top: 17px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .slide-text h3 {
        font-size: 26px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .legal-header h1 {
        font-size: 36px;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-footer-cta {
        flex-direction: column;
    }
    
    .floating-guide-box {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 18px 22px;
    }
    
    .floating-guide-icon {
        font-size: 32px;
    }
    
    .floating-guide-text strong {
        font-size: 16px;
    }
    
    .floating-guide-text span {
        font-size: 13px;
    }
}
