body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse at 60% 0%, #232b4d 0%, #181a20 60%, #0a0e1a 100%),
                linear-gradient(135deg, #1a2240 0%, #232b4d 40%, #181a20 100%);
    color: #f1f1f1;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.bg-blob, .bg-blob1, .bg-blob2 { display: none; } /* Hide previous blobs for a cleaner look */

/* --- Navigation Bar (Gradient Top) --- */
.main-header {
    width: 100%;
    background: linear-gradient(90deg, #181a20 0%, #232b4d 60%, #6C63FF 100%);
    padding: 0;
    margin: 0;
    position: static;
    top: unset;
    left: unset;
    z-index: 20;
    border-bottom: 1.5px solid #23242a;
    box-shadow: 0 2px 8px #0005;
}
.split-nav {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    padding: 0 0.5rem 0 0;
}
.brand-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 12px #232b4d44;
}
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-right li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-right li a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    overflow: hidden;
    display: inline-block;
}
.nav-right li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 8px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    opacity: 0;
    transform: scaleX(0.7);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 2;
}
.nav-right li a:hover::after, .nav-right li a:focus::after {
    opacity: 1;
    transform: scaleX(1);
}
.nav-right li a:hover, .nav-right li a:focus {
    background: rgba(127,215,255,0.10);
    color: #7fd7ff;
    box-shadow: 0 2px 12px #7fd7ff44;
}

.hero-ref {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}
.hero-img-ref {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 48px #7fd7ff33, 0 2px 16px #a259ff33;
    margin-bottom: 2rem;
    border: 4px solid #23242a;
    background: #23242a;
}
.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 0.12em;
    margin: 0.2rem 0 0.5rem 0;
}
.site-tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    color: #7fd7ff;
    font-weight: 700;
    margin: 0 0 0.7rem 0;
    letter-spacing: 0.08em;
}
.site-desc {
    color: #b6c9e2;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 0.5rem;
}

.feature-grid-ref {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin: 2.5rem 0 3.5rem 0;
    justify-items: center;
}
.feature-card-ref {
    background: rgba(20,22,32,0.92);
    border-radius: 18px;
    box-shadow: 0 4px 32px #7fd7ff22, 0 1.5px 8px #0002;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #23242a;
    z-index: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s, border 0.2s;
}
.feature-card-ref:hover, .feature-card-ref:focus-within {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 48px #7fd7ff55, 0 2px 16px #a259ff33;
    border-color: #7fd7ff;
}
.feature-card-ref img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    background: #23242a;
}
.feature-card-ref h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #7fd7ff;
    font-size: 1.15rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}
.feature-card-ref p {
    color: #b6c9e2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.highlight-section-ref {
    display: flex;
    justify-content: center;
    margin: 3.5rem 0 2.5rem 0;
}
.highlight-card-ref {
    position: relative;
    width: 100%;
    max-width: 700px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 48px #7fd7ff33, 0 2px 16px #a259ff33;
    background: #181a20;
}
.highlight-card-ref img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(1.2);
}
.highlight-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, #181a20 80%, #181a2000 100%);
    padding: 2.2rem 2rem 1.2rem 2rem;
    color: #fff;
}
.highlight-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7fd7ff;
    margin: 0 0 0.5rem 0;
}
.highlight-overlay p {
    color: #b6c9e2;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
.highlight-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    color: #181a20;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px #7fd7ff44;
    transition: background 0.2s, color 0.2s;
}
.highlight-btn:hover, .highlight-btn:focus {
    background: #fff;
    color: #7fd7ff;
}

.main-footer {
    background: #10121a;
    padding: 2.5rem 0 1.5rem 0;
    margin-top: 3rem;
    border-top: 1.5px solid #23242a;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #7fd7ff;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-nav a {
    color: #b6c9e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #7fd7ff;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
}
.footer-social a {
    color: #7fd7ff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover, .footer-social a:focus {
    color: #fff;
}

.hero-fullscreen {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.hero-fullscreen-bg {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background: radial-gradient(ellipse at 60% 0%, #232b4d 0%, #181a20 60%, #0a0e1a 100%),
                linear-gradient(135deg, #1a2240 0%, #232b4d 40%, #181a20 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.hero-reveal-mask::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(120deg, rgba(24,26,32,0.75) 60%, rgba(35,43,77,0.65) 100%);
    border-radius: inherit;
}
.hero-reveal-mask {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
    background: url('hero.png') 50% 60% / 120% 120% no-repeat;
    clip-path: circle(0% at 90% 10%);
    animation: hero-mask-reveal 1.6s cubic-bezier(.77,0,.18,1) 0.1s forwards, hero-bg-parallax 1.6s cubic-bezier(.77,0,.18,1) 0.1s forwards;
    overflow: hidden;
}
@keyframes hero-mask-reveal {
    0% {
        clip-path: circle(0% at 90% 10%);
    }
    80% {
        clip-path: circle(150% at 50% 50%);
    }
    100% {
        clip-path: circle(150% at 50% 50%);
    }
}
@keyframes hero-bg-parallax {
    0% {
        background-size: 120% 120%;
        background-position: 50% 60%;
    }
    100% {
        background-size: 100% 100%;
        background-position: 50% 50%;
    }
}
.hero-fullscreen-bg .hero-overlay {
    opacity: 0;
    animation: hero-overlay-fade-in 0.7s cubic-bezier(.77,0,.18,1) 1.2s forwards;
}
@keyframes hero-overlay-fade-in {
    to { opacity: 1; }
}
.hero-fullscreen-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #181a20cc 60%, #232b4dcc 100%);
    z-index: 2;
}
.hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}
.super-header {
    font-family: 'Unbounded', 'Montserrat', Arial, sans-serif;
    font-size: 6vw;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
    text-shadow: 0 8px 48px #7fd7ff33, 0 2px 16px #a259ff33, 0 1px 0 #232b4d;
    margin: 0 0 1.2rem 0;
    line-height: 1.05;
}
.site-tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2vw;
    color: #7fd7ff;
    font-weight: 700;
    margin: 0 0 0.7rem 0;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 12px #181a20cc;
}

.glass-content {
    max-width: 900px;
    margin: 4.5rem auto 3rem auto;
    background: rgba(24, 26, 32, 0.38);
    border-radius: 24px;
    box-shadow: 0 8px 48px #7fd7ff22, 0 1.5px 8px #0002, 0 1px 16px 0 rgba(255,255,255,0.08) inset;
    border: 1.5px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .glass-content {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
        margin: 2.5rem auto 1.5rem auto;
    }
}

/* --- Hero Two-Column Layout --- */
.hero-two-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 420px;
    gap: 3.5rem;
}
.hero-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
}
.hero-col-left {
    align-items: flex-start;
    text-align: left;
}
.hero-col-right {
    align-items: flex-start;
    max-width: 420px;
}
.brand-mini {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 1.3rem;
    text-transform: none;
    opacity: 0.85;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.hero-feature-tagline {
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 6.5rem;
    font-weight: 800;
    color: #f1f1f1;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
    margin-top: 0.2rem;
    text-shadow: none;
    position: static;
    opacity: 1;
    background: linear-gradient(90deg, #f1f1f1 0%, #7fd7ff 30%, #a259ff 60%, #f1f1f1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: tagline-shine 2.2s cubic-bezier(.77,0,.18,1) 0.2s 1 forwards;
}
@keyframes tagline-shine {
    0% {
        background-position: 200% 0;
        color: #f1f1f1;
    }
    90% {
        background-position: 0% 0;
        color: #f1f1f1;
    }
    100% {
        background-position: 0% 0;
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        text-fill-color: initial;
        color: #fff;
    }
}
.brand-mini, .hero-desc, .hero-show-more {
    font-family: 'Poppins', Arial, sans-serif;
}
.hero-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #e0e7ff;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 12px #181a20cc;
}
.hero-show-more {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #232b4d;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 2.2rem;
}
.show-more-text {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #bfc4ff;
    transition: color 0.2s, background 0.2s;
}
.hero-show-more:hover .show-more-text {
    background: linear-gradient(90deg, #a259ff 0%, #7fd7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.show-more-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #232b4d;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}
.hero-show-more:hover .show-more-circle {
    border-color: transparent;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    transform: scale(1.08);
}
.hero-show-more:hover .show-more-text {
    color: #232b4d;
}
.hero-show-more:hover svg circle,
.hero-show-more:hover svg polyline {
    stroke: #232b4d;
}
.hero-show-more:hover, .hero-show-more:focus {
    background: #fff;
    color: #6C63FF;
}
@media (max-width: 900px) {
    .hero-two-col {
        flex-direction: column;
        gap: 2rem;
        min-height: 320px;
        padding: 2rem 0;
    }
    .hero-col-right {
        max-width: 100%;
    }
    .hero-feature-tagline {
        font-size: 2.5rem;
    }
    .brand-mini {
        font-size: 1.5rem;
    }
}

@media (max-width: 1000px) {
    .hero-fullscreen {
        min-height: 80vh;
        height: auto;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .feature-grid-ref {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .highlight-card-ref img {
        height: 180px;
    }
    .main-nav ul {
        gap: 1.2rem;
    }
    .hero-img-ref {
        width: 140px;
        height: 140px;
    }
    .site-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 900px) {
    .hero-fullscreen-bg {
        min-height: 400px;
        height: 60vh;
    }
    .super-header {
        font-size: 2.5rem;
    }
    .site-tagline {
        font-size: 1.1rem;
    }
    .split-nav {
        width: 98vw;
        padding: 0.5rem 0.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }
    .nav-left {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    .nav-right {
        gap: 1.1rem;
        justify-content: center;
    }
} 

.tagline-line {
    display: block;
    opacity: 0;
    transform: translateY(-60px);
    animation: tagline-slide-in 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.tagline-line:nth-child(1) { animation-delay: 0.1s; }
.tagline-line:nth-child(3) { animation-delay: 0.3s; }
.tagline-line:nth-child(5) { animation-delay: 0.5s; }
.tagline-line:nth-child(7) { animation-delay: 0.7s; }
@keyframes tagline-slide-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

.about-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 6rem auto 4rem auto;
    padding: 0 2rem;
    gap: 3.5rem;
}
.about-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-col-img {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.about-img-parallax {
    width: 600px;
    height: 600px;
    max-width: 95vw;
    max-height: 95vw;
    overflow: hidden;
    position: relative;
    background: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.about-img-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1.2s cubic-bezier(.77,0,.18,1);
}
.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-parallax img:hover {
    transform: scale(1.035) rotate(-1deg);
    box-shadow: 0 8px 48px #7fd7ff33, 0 2px 16px #a259ff22;
    filter: brightness(1.08) saturate(1.1);
}
.about-section.reveal .about-img-parallax img {
    clip-path: circle(150% at 50% 50%);
}
.about-col-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.about-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.25rem;
    color: #e0e7ff;
    padding: 0;
    margin: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
}
.about-section.reveal .about-text {
    opacity: 1;
}
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    .about-img-parallax {
        width: 100%;
        height: 220px;
        max-width: 100vw;
        max-height: 100vw;
    }
    .about-text {
        font-size: 1.05rem;
    }
}

@keyframes about-img-parallax-zoom {
    0% {
        transform: scale(1.2) translateY(40px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
} 

.about-text-line {
    opacity: 0;
    display: block;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.about-section.reveal .about-text-line:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.about-section.reveal .about-text-line:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}
.about-section.reveal .about-text-line:nth-of-type(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.34s;
}
.about-section.reveal .about-text-line:nth-of-type(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.46s;
}
.about-section.reveal .about-text-line:nth-of-type(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.58s;
}
.about-section.reveal .about-text-line:nth-of-type(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}
.about-section.reveal .about-text-line:nth-of-type(7) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.82s;
}
.about-section.reveal .about-text-line:nth-of-type(8) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.94s;
}
.about-section.reveal .about-text-line:nth-of-type(9) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.06s;
}
.about-section.reveal .about-text-line:nth-of-type(10) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.18s;
} 

.about-text, .about-text-scroll-animate {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
} 

.about-col, .about-col-text, .about-align-top {
    display: block;
    flex-direction: initial;
    align-items: initial !important;
    justify-content: initial !important;
    height: auto;
} 

.about-title {
    font-family: 'Unbounded', 'Montserrat', Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
    text-align: center;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-section-title {
    margin-top: 7rem;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-section {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}
.offer-section {
    margin-top: 7rem;
    margin-bottom: 3.5rem;
}
.why-choose-section {
    margin-top: 7rem;
    margin-bottom: 3.5rem;
}
@media (max-width: 900px) {
    .about-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    .about-section-title {
        margin-top: 2.5rem;
    }
    .about-section {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .offer-section {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .why-choose-section {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.offer-section {
    max-width: 1200px;
    margin: 6rem auto 0 auto;
    padding: 0 2rem 4rem 2rem;
    text-align: center;
}
.offer-title {
    font-family: 'Unbounded', 'Montserrat', Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
}
.offer-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.7rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.offer-category {
    flex: 1 1 0;
    background: none;
    border-radius: 0;
    padding: 1.5rem 0 1.2rem 0;
    box-shadow: none;
    cursor: pointer;
    transition: border-bottom 0.2s;
    border: none;
    min-width: 180px;
    max-width: 320px;
    position: relative;
    border-bottom: 2px solid transparent;
    margin: 0 0.5rem;
}
.offer-category.active, .offer-category:hover {
    background: none;
    border-bottom: 2px solid #7fd7ff;
    box-shadow: none;
    z-index: 2;
}
.offer-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    opacity: 0.92;
    filter: none;
    transition: opacity 0.2s;
}
.offer-category.active .offer-icon-svg, .offer-category:hover .offer-icon-svg {
    opacity: 1;
}
.offer-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #bfc4ff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}
.offer-category.active .offer-name, .offer-category:hover .offer-name {
    color: #7fd7ff;
}
.offer-desc {
    font-size: 1.05rem;
    color: #bfc4ff;
    margin-bottom: 0;
    line-height: 1.6;
}
.offer-category.active .offer-desc, .offer-category:hover .offer-desc {
    color: #fff;
}
.offer-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2.5rem;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove border-radius for square images */
    border-radius: 0;
    box-shadow: 0 8px 48px #6C63FF22, 0 1.5px 8px #0002;
    background: #181a20;
    overflow: hidden;
}
.carousel-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
    transform: scale(1.08) translateX(60px);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0;
}
.carousel-image.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1) translateX(0);
    pointer-events: auto;
}
.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-image img:hover {
    transform: scale(1.025) rotate(0.5deg);
    box-shadow: 0 8px 48px #a259ff33, 0 2px 16px #7fd7ff22;
    filter: brightness(1.07) saturate(1.08);
}
.carousel-image::before {
    display: none;
}
.carousel-desc {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    z-index: 3;
    color: #232b4d;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 1.5rem 2.5rem;
    text-align: center;
    background: rgba(255,255,255,0.85);
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px #6C63FF22;
    backdrop-filter: blur(8px);
    pointer-events: none;
    max-width: 80%;
}
@media (max-width: 900px) {
    .offer-carousel {
        max-width: 98vw;
        min-height: 320px;
    }
    .carousel-desc {
        font-size: 1rem;
        padding: 1rem 0.7rem;
        max-width: 98%;
    }
} 

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.offer-section, .about-section {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
@media (max-width: 900px) {
    .site-container {
        max-width: 100vw;
        padding: 0 0.5rem;
    }
} 

/* --- Why Choose Instantdlx Section --- */
.why-choose-section {
    width: 100%;
    background: linear-gradient(120deg, #232b4d 60%, #7fd7ff22 100%);
    padding: 5rem 0 4rem 0;
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.why-choose-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-choose-title {
    font-family: 'Unbounded', 'Montserrat', Arial, sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
    text-align: center;
}
.why-choose-title span {
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.why-choose-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.7rem;
    width: 100%;
}
.why-choose-feature {
    background: rgba(24, 26, 32, 0.92);
    border-radius: 18px;
    box-shadow: 0 4px 32px #7fd7ff22, 0 1.5px 8px #0002;
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    border: 1.5px solid #23242a;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s, border 0.2s;
    position: relative;
    z-index: 1;
}
.why-choose-feature:hover, .why-choose-feature:focus-within {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 48px #7fd7ff55, 0 2px 16px #a259ff33;
    border-color: #7fd7ff;
}
.why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    display: block;
    color: #7fd7ff;
    filter: drop-shadow(0 2px 8px #7fd7ff44);
}
.why-choose-feature-title {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #7fd7ff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.why-choose-feature-desc {
    color: #b6c9e2;
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.6;
}
.why-choose-bottom-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.25rem;
    color: #e0e7ff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    border-radius: 0;
    line-height: 1.7;
}
.why-choose-bottom-text span {
    color: #7fd7ff;
    font-weight: 700;
}
@media (max-width: 900px) {
    .why-choose-section {
        padding: 2.5rem 0 2rem 0;
    }
    .why-choose-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .why-choose-feature {
        max-width: 98vw;
        min-width: 0;
        padding: 1.2rem 0.7rem 1.1rem 0.7rem;
    }
    .why-choose-title {
        font-size: 2rem;
    }
    .why-choose-bottom-text {
        font-size: 1.05rem;
    }
} 

.offer-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #232b4d;
    background: #fff;
    margin: 0 auto 1.1rem auto;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #232b4d0a;
}
.offer-category:hover .offer-icon-circle,
.offer-category:focus-within .offer-icon-circle {
    border-color: transparent;
    background: linear-gradient(90deg, #7fd7ff 0%, #a259ff 100%);
    box-shadow: 0 4px 16px #7fd7ff33;
}
.offer-icon-emoji {
    display: none;
}
.offer-category:hover .offer-icon-emoji,
.offer-category:focus-within .offer-icon-emoji {
    color: #fff;
} 

/* SVG blob for clip-path */
body::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
body::after {
    /* Inline SVG for blob shape */
    /* This is a hack to make the SVG available for clip-path reference */
    content: '<svg width="0" height="0" xmlns="http://www.w3.org/2000/svg"><clipPath id="animated-blob" clipPathUnits="objectBoundingBox"><path d="M0.8,0.1 C0.9,0.2,1,0.4,0.9,0.6 C0.8,0.8,0.6,1,0.4,0.9 C0.2,0.8,0,0.6,0.1,0.4 C0.2,0.2,0.6,0,0.8,0.1 Z"></path></clipPath></svg>';
}
@media (max-width: 900px) {
    .about-img-parallax img, .carousel-image img {
        clip-path: url(#animated-blob);
    }
} 

.legal-container {
    max-width: 1200px;
    margin: 4rem auto 4rem auto;
    padding: 0 2rem;
    text-align: left;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}
@media (max-width: 900px) {
    .legal-container {
        max-width: 100vw;
        padding: 0 0.5rem;
        margin: 2rem auto 2rem auto;
    }
} 

/* --- Responsive Mobile Styles --- */
@media (max-width: 600px) {
  body {
    font-size: 15px;
    padding: 0;
  }
  .main-header {
    padding: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .split-nav {
    flex-direction: row;
    padding: 0.5rem 1rem;
    gap: 0;
    position: relative;
  }
  .nav-left {
    flex: 1 1 0;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .logo-mark {
    font-size: 1.7rem;
    padding: 0 0.2rem 0 0;
  }
  .nav-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    background: #181a20ee;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 0 0 0;
    margin: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.77,0,.18,1);
    box-shadow: -2px 0 16px #232b4d33;
    border-left: 1.5px solid #23242a;
  }
  .nav-right.open {
    transform: translateX(0);
  }
  .nav-right li {
    width: 100%;
    display: block;
    border-bottom: 1px solid #232b4d33;
  }
  .nav-right li a {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.15rem;
    text-align: left;
    border-radius: 0;
    background: none;
    color: #e0e7ff;
  }
  .nav-right li a:hover, .nav-right li a:focus {
    background: #232b4d22;
    color: #7fd7ff;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 200;
    background: none;
    border: none;
    position: absolute;
    top: 6px;
    right: 10px;
  }
  .hamburger-bar {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
  }
  .hamburger.open .bar1 {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.open .bar2 {
    opacity: 0;
  }
  .hamburger.open .bar3 {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .site-container, .offer-section, .about-section, .why-choose-section {
    padding: 0 0.2rem;
    margin: 0 auto;
    max-width: 100vw;
  }
  .hero-two-col {
    flex-direction: column;
    gap: 1.2rem;
    min-height: 220px;
    padding: 1.2rem 0;
    align-items: center;
    text-align: center;
  }
  .hero-col, .hero-col-left, .hero-col-right {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    min-width: 0;
  }
  .brand-mini {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .hero-feature-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .hero-show-more {
    margin-top: 1.2rem;
    font-size: 1rem;
  }
  .show-more-text {
    font-size: 1.1rem;
  }
  .show-more-circle {
    width: 36px;
    height: 36px;
  }
  .about-section {
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.2rem 0;
    padding: 0;
  }
  .about-img-parallax {
    width: 100vw;
    height: 160px;
    max-width: 100vw;
    max-height: 160px;
  }
  .about-img-parallax img {
    height: 100%;
  }
  .about-text {
    font-size: 1rem;
    text-align: center;
    padding: 0 0.2rem;
  }
  .offer-section {
    margin: 1.2rem 0;
    padding: 0;
  }
  .offer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .offer-categories {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .offer-category {
    min-width: 0;
    max-width: 100vw;
    padding: 1rem 0;
    margin: 0;
  }
  .offer-carousel {
    min-height: 180px;
    max-width: 100vw;
    margin-top: 1.2rem;
  }
  .carousel-desc {
    font-size: 0.95rem;
    padding: 0.7rem 0.2rem;
    max-width: 98vw;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
  }
  .why-choose-section {
    padding: 1.2rem 0 1.2rem 0;
    margin: 0;
  }
  .why-choose-title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .why-choose-features {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .why-choose-feature {
    max-width: 100vw;
    min-width: 0;
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  .why-choose-bottom-text {
    font-size: 0.95rem;
    padding: 0 0.2rem;
  }
  .main-footer {
    padding: 1.2rem 0 1rem 0;
    margin-top: 1.2rem;
  }
  .footer-content {
    gap: 0.7rem;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-nav {
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav a {
    font-size: 0.95rem;
  }
} 