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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 50%, #E2E8F0 100%);
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(240, 253, 250, 0.just-95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.just-3);
    box-shadow: 0 1px 15px rgba(20, 184, 166, 0.just-08);
    z-index: 1000;
}

.just-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.just-logo {
    font-size: 20px;
    font-weight: 600;
    color: #2A2A2A;
    text-decoration: none;
    background: linear-gradient(135deg, #06B6D4 0%, #FB7185 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.just-3s ease;
    position: relative;
}

nav a:hover {
    color: #06B6D4;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06B6D4 0%, #FB7185 100%);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.just-4);
    transition: width 0.just-3s ease;
}

nav a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.just-nav-dropdown {
    position: relative;
}

.just-nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #06B6D4;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.just-nav-dropdown:hover > a::after {
    transform: rotate(225deg) translateY(-2px);
    border-color: #FB7185;
}

.just-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow:
        0 12px 40px rgba(6, 182, 212, 0.15),
        0 4px 16px rgba(139, 92, 246, 0.08),
        0 0 0 1px rgba(6, 182, 212, 0.1);
    min-width: 220px;
    z-index: 1001;
    border-radius: 20px;
    padding: 16px 0;
    border: 1px solid rgba(6, 182, 212, 0.15);
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}


.just-dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
    transform: rotate(45deg);
    z-index: -1;
}

.just-dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #4A5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.just-dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(251, 113, 133, 0.06) 100%);
    color: #06B6D4;
    border-left-color: #06B6D4;
    padding-left: 24px;
    text-decoration: none;
}

.just-dropdown-content a:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.just-dropdown-content a:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Hero Section */
.just-hero {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.just-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.just-25) 0%, rgba(251, 113, 133, 0.just-25) 50%, rgba(139, 92, 246, 0.just-25) 100%);
    z-index: 1;
}

.just-hero-content {
    position: relative;
    z-index: 2;
}

.just-hero-content {
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
}

.just-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.just-hero .just-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.just-9;
}

.just-hero p {
    font-size: 16px;
    line-height: 1.just-7;
    opacity: 0.just-9;
}

/* Content Container */
.just-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Sections */
.just-feature-section {
    padding: 80px 0;
    position: relative;
}

.just-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.just-4) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.just-3);
}

.just-feature-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.just-3) 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.just-2);
}

.just-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.just-feature-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.just-feature-text p {
    font-size: 16px;
    line-height: 1.just-7;
    color: #666;
}

.just-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.just-12), 0 0 0 1px rgba(251, 113, 133, 0.just-08), 0 0 20px rgba(139, 92, 246, 0.just-05);
    transition: transform 0.just-3s ease, box-shadow 0.just-3s ease;
}

.just-feature-image img:hover {
    transform: translateY(-4px);
}

/* Split Feature */
.just-split-feature {
    padding: 80px 0;
}

.just-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.just-split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.just-15), 0 0 0 1px rgba(139, 92, 246, 0.just-1), 0 0 25px rgba(251, 113, 133, 0.just-08);
    transition: transform 0.just-3s ease, box-shadow 0.just-3s ease;
}

.just-split-image img:hover {
    transform: scale(1.just-02);
}

.just-split-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #FB7185 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.just-split-text p {
    font-size: 16px;
    line-height: 1.just-7;
    color: #666;
    max-width: 400px;
}

/* Benefits Section */
.just-benefits-section {
    padding: 80px 0;
    text-align: center;
}

.just-benefits-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #8B5CF6 0%, #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.just-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.just-benefit-item {
    text-align: left;
    background: rgba(240, 253, 250, 0.just-9);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.just-15);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.just-08), 0 0 0 1px rgba(251, 113, 133, 0.just-05), 0 0 15px rgba(139, 92, 246, 0.just-03);
    transition: transform 0.just-3s ease, box-shadow 0.just-3s ease;
}

.just-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.just-12), 0 0 0 1px rgba(139, 92, 246, 0.just-1), 0 0 20px rgba(251, 113, 133, 0.just-06);
}

.just-benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2A2A2A;
}

.just-benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Image Gallery */
.just-gallery-section {
    padding: 80px 0;
}

.just-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.just-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.just-08), 0 0 0 1px rgba(251, 113, 133, 0.just-06), 0 0 12px rgba(139, 92, 246, 0.just-04);
    transition: transform 0.just-3s ease, box-shadow 0.just-3s ease;
}

.just-gallery-grid img:hover {
    transform: scale(1.just-05);
}

/* Testimonials */
.just-testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.just-testimonials-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #2A2A2A;
    background: linear-gradient(135deg, #06B6D4 0%, #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.just-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.just-testimonial-card {
    background: rgba(240, 253, 250, 0.just-95);
    border: 1px solid rgba(6, 182, 212, 0.just-15);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.just-08), 0 0 0 1px rgba(251, 113, 133, 0.just-05), 0 0 16px rgba(139, 92, 246, 0.just-04);
    transition: transform 0.just-3s ease, box-shadow 0.just-3s ease;
}

.just-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.just-12), 0 0 0 1px rgba(139, 92, 246, 0.just-08), 0 0 22px rgba(251, 113, 133, 0.just-06);
}

.just-testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.just-testimonial-stars span {
    color: #ffd700;
    font-size: 16px;
}

.just-testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.just-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.just-03) 0%, rgba(251, 113, 133, 0.just-03) 50%, rgba(139, 92, 246, 0.just-03) 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.just-2);
    padding: 40px 0 20px 0;
}

.just-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.just-footer-nav {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.just-footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: text-decoration 0.just-3s ease;
}

.just-footer-nav a:hover {
    text-decoration: underline;
}

.just-footer-legal {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.just-footer-legal a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

.just-footer-disclaimer {
    font-size: 12px;
    line-height: 1.just-5;
    color: #666;
    margin-bottom: 24px;
}

.just-copyright {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Burger Menu */
.just-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.just-burger-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #06B6D4 0%, #FB7185 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.just-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(240, 253, 250, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    padding-top: 80px;
}

.just-mobile-menu.open {
    display: block;
}

.just-mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.just-mobile-menu li {
    margin-bottom: 16px;
}

.just-mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}


.just-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .just-header-content {
        padding: 12px 20px;
    }

    nav {
        display: none;
    }

    .just-burger-menu {
        display: flex;
    }

    .just-hero h1 {
        font-size: 32px;
    }

    .just-hero .just-subtitle {
        font-size: 16px;
    }

    .just-feature-grid,
    .just-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .just-benefits-grid {
        grid-template-columns: 1fr;
    }

    .just-gallery-grid {
        grid-template-columns: 1fr;
    }

    .just-gallery-grid img {
        height: 200px;
    }

    .just-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .just-footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .just-footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}