:root {
    --bg-dark: #070707;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --skyblue: #1e90ff;
    --text-main: #FFFFFF;
    --text-dim: rgba(255,255,255,0.5);
    --text-gray: #a0a0a0;
    --accent-pink: #ffffff;
    --accent-purple: transparent;
    --purple: #7a00e0;
    --purple-soft: rgba(122,0,224,0.15);
    --purple-border: rgba(122,0,224,0.4);
    /* Fluid spacing */
    --padding-base: clamp(20px, 5vw, 80px);
    --gap-base: clamp(30px, 5vw, 80px);
    --title-size: clamp(1.8rem, 4vw, 3rem);
    --desc-size: clamp(0.85rem, 1.5vw, 0.95rem);
    --card-gap: clamp(15px, 3vw, 25px);
    --section-pad: clamp(40px, 8vw, 120px);
    --title1-size: clamp(3rem, 7vw, 4rem) !important;
    --h2-size: clamp(2.5rem, 7vw, 5rem);
    --wrapper-width: clamp(320px, 95vw, 1200px);
    --content-gap: clamp(30px, 6vw, 100px);
    --row-padding: clamp(30px, 5vw, 60px);
    --footer-pad: clamp(40px, 8vw, 100px);
    --accent-orange: #ffffff;
}

a {
    color: var(--text-main);
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}

img, picture, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

body, p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-break: break-word;
}

body {
    background-color: #070707;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    font-size: clamp(14px, 1.2vw, 18px);
}


/* ===== GLOBAL SYNE DISPLAY FONT =====
   All major headings use Syne 800 — matches about & contact pages */

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

/* Fine-tune letter spacing per heading context */
.hero-text h1,
.hero-title {
    letter-spacing: -2px;
}

.services-main-title {
    font-family: 'Syne', sans-serif;
    letter-spacing: -3px;
}

.packages-section-header h2 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -2px;
}

.connect-title,
.testimonials-containerText h1 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -2px;
}

.connect-subtitle {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.5px;
}

.video-container-text h2 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -1px;
}

.about-title {
    font-family: 'Syne', sans-serif;
    letter-spacing: -1.5px;
}

.design-section-heading h3,
.design-pkg-title,
.review-title,
.pkg-title {
    font-family: 'Syne', sans-serif;
}

/* swipe button uses Syne to feel like a display element */
.swipe-btn {
    font-family: 'Syne', sans-serif;
}

/* Body copy, labels, eyebrows stay Inter */
.sub-hero-text,
.badge,
.eyebrow,
.service-card-number,
.service-card-tags span,
.service-card p,
.service-card-link,
.service-desc,
.review-body,
.pkg-items li,
.design-pkg-desc,
.design-pkg-detail,
.packages-cta-row p,
.connect-text,
.brand-bio,
.about-description p,
.label,
.info,
nav a,
footer,
p {
    font-family: 'Inter', sans-serif;
}


/* ===== PAGE LOADER — SVG Orbit C ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: #070707;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-c-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: loaderSpin 2.4s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* Arc draws itself in */
.loader-arc {
    animation: loaderArcFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderArcFill {
    0%   { stroke-dashoffset: 326; opacity: 0.3; }
    60%  { opacity: 1; }
    100% { stroke-dashoffset: 0; }
}

/* Dot orbits the ring */
.loader-dot {
    transform-origin: 60px 60px;
    animation: loaderDotOrbit 2.4s linear infinite;
}

@keyframes loaderDotOrbit {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* The logo image in the centre */
.loader-c-img {
    width: 52px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    filter: brightness(0) invert(1);
    animation: loaderCPulse 2s ease-in-out infinite;
}

@keyframes loaderCPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.92); }
}


/* --- NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
}

nav ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--text-dim);
    border-radius: 50%;
}

nav a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 28px);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: clamp(12px, 1.5vw, 16px);
}

nav button {
    background: var(--purple) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

.mobile-only {
    display: none;
}


/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    top: 0 !important;
    padding: 0;
    background: #070707;
    color: #ffffff;
    width: 100% !important;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -120px;
    left: -180px;
    background: radial-gradient(circle, rgba(122,0,224,0.22) 0%, transparent 70%);
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -60px;
    right: -100px;
    background: radial-gradient(circle, rgba(0,145,255,0.14) 0%, transparent 70%);
}

/* Subtle dot grid */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.heroContenGlassEffect {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    height: auto;
    width: 100%;
    background-color: rgba(7,7,7,0.4);
    backdrop-filter: blur(2px);
    padding: 140px clamp(20px, 5vw, 80px) 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Welcome pill */
.hero-welcome-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    padding: 9px 20px;
    border-radius: 99px;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.hero-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7a00e0;
    animation: pillDotBlink 2s ease-in-out infinite;
}

@keyframes pillDotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Headline — stacked editorial lines */
.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 44px;
}

.hero-line {
    display: flex;
    align-items: baseline;
    gap: clamp(12px, 2vw, 24px);
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.0;
}

.hero-word {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: -2px;
    display: inline-block;
}

/* Outlined word */
.hero-word-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.7);
}

/* Purple filled word */
.hero-word-purple {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    color: #7a00e0;
    line-height: 0.95;
    letter-spacing: -2px;
    display: inline-block;
}

/* Small inline word */
.hero-word-small {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
    padding-bottom: 8px;
}

/* Sub row — description left, divider, buttons right — all centred */
.hero-sub-row {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    width: 100%;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.sub-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 340px;
    text-align: left;
}

.hero-sub-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Buttons sit in the sub-row, aligned right */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.swipe-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 4px 8px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #070707;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: rotate(16deg);
    box-shadow: 0 12px 30px rgba(255,255,255,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swipe-btn .arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #070707;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.swipe-btn:hover {
    transform: rotate(-8deg) translateY(-4px);
    box-shadow: 0 18px 40px rgba(255,255,255,0.2);
}

/* Solutions button */
.solutions-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px 4px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.solutions-btn .sol-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.solutions-btn:hover {
    background: rgba(122, 0, 224, 0.2);
    border-color: rgba(122, 0, 224, 0.6);
    transform: translateY(-3px);
}

.solutions-btn:hover .sol-icon {
    transform: rotate(30deg);
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .heroContenGlassEffect {
        padding: 120px 20px 80px;
        text-align: center;
    }

    .hero-word,
    .hero-word-purple {
        font-size: clamp(1.9rem, 11vw, 3.4rem);
        letter-spacing: -1.5px;
    }

    .hero-word-outline {
        -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
    }

    .hero-sub-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .sub-hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-sub-divider { display: none; }

    .hero-btn-group {
        justify-content: center;
        flex-direction:row;
    }

    .hero-orb-1 { width: 300px; height: 300px; top: -60px; left: -80px; }
    .hero-orb-2 { width: 260px; height: 260px; bottom: -40px; right: -60px; }
}

/* INFO CARDS */
.info-section {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
}

.card {
    flex: 1;
    width: 100%;
    max-width: 380px;
    height: auto;
    padding: 30px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mint {
    background-color: #d7f1f514;
    backdrop-filter: blur(30px);
}

.peach {
    background-color: #d7f1f514;
    backdrop-filter: blur(30px);
    color: white !important;
}

.peach h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #7a00e0;
}

.peach p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .info-section { flex-direction: column; }
}


/* PARTNERS */
.partners-section {
    background-color: #00000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.partners-title {
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 250px;
    line-height: 1.3;
}

.logo-grid {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
    flex-wrap: wrap;
    flex: 1;
}

.partner-logo {
    height: 35px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partner-logo:hover { opacity: 1; }


/* BRAND + SECTION WRAPPERS */
.BrandContainerGlassEffect {
    width: 100%;
    height: auto;
    background-color: #ffffff06;
    backdrop-filter: blur(30px);
}

/* Removed gradients — plain dark background */
.branding-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: auto;
}

.branding-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-base);
    justify-content: center;
}

.branding-card {
    flex: 1 1 clamp(300px, 30%, 400px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.branding-card:hover { transform: translateY(-5px); }

.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-info { padding-top: 20px; }

.card-info h3 {
    font-size: var(--title-size);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-info p {
    font-size: var(--desc-size);
    color: var(--text-gray);
    line-height: 1.4;
}

@media (min-width: 1800px) {
    .branding-container {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* ===== SERVICES — CARD GRID STYLE ===== */
.services-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin: 0;
    //padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
    padding:10px;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 50px;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 10px;
}

.services-main-title {
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
}

/* Card grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at top left, rgba(122,0,224,0.12), transparent 70%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple-border);
    background: #161616;
}

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

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-soft);
    border: 1px solid var(--purple-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(122,0,224,0.28);
    transform: scale(1.08);
}

.service-card-icon i {
    font-size: 20px;
    color: #7a00e0;
}

/* Tag strip with secondary icons */
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2px;
}

.service-card-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: 99px;
}

.service-card-tags span i {
    font-size: 0.65rem;
    color: #7a00e0;
}

.service-card-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    display: block;
}

.service-card h3 {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    flex: 1;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.service-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.service-card-list li i {
    font-size: 0.45rem;
    color: #7a00e0;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-card:hover .service-card-link {
    color: #ffffff;
    gap: 12px;
}

.service-card-link i { font-size: 0.75rem; }/* ===== PACKAGES SECTION ===== */


/* ===== PACKAGES SECTION ===== */
.packages-section {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding: clamp(60px, 10vw, 120px) 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.packages-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-section-header .eyebrow {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.packages-section-header h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.pkg-card {
    background: #ffffff08;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 30px;
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122,0,224,0.5);
}

.pkg-card.featured {
    border-color: #7a00e0;
    border-width: 2px;
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #7a00e0;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.pkg-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #fff;
}

.pkg-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.pkg-price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.pkg-items {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pkg-items li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pkg-items li:last-child { border-bottom: none; }

.pkg-items li::before {
    content: '✓';
    color: #7a00e0;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pkg-items li.sub-item {
    padding-left: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.pkg-items li.sub-item::before { content: '–'; color: rgba(255,255,255,0.3); }

.pkg-cta {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pkg-cta:hover { background: #7a00e0; border-color: #7a00e0; }

.pkg-card.featured .pkg-cta {
    background: #7a00e0;
    border-color: #7a00e0;
}

.pkg-card.featured .pkg-cta:hover { filter: brightness(1.15); }

.design-packages-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 60px;
}

.design-pkg-card {
    background: #ffffff08;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 30px;
    flex: 1 1 280px;
    max-width: 340px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.design-pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122,0,224,0.5);
}

.design-pkg-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #7a00e0;
    font-weight: 700;
    margin-bottom: 10px;
}

.design-pkg-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.design-pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.design-pkg-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.design-pkg-detail {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.packages-cta-row {
    margin-top: 50px;
    text-align: center;
}

.packages-cta-row p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 16px;
}

.packages-section-divider {
    width: 100%;
    max-width: 1200px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 60px 0 0 0;
}

.design-section-heading {
    width: 100%;
    max-width: 1200px;
    margin: 0 0 8px 0;
}

.design-section-heading h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.design-section-heading p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 6px;
}


/* NEW SECTION — no gradient, plain dark */
.newsection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}

.newsectionGlassEffect {
    width: 100%;
    height: auto;
    background-color: #ffffff06;
    backdrop-filter: blur(30px);
    padding: 50px 0px;
}

.video-container-video {
    width: 70%;
    height: 70vh;
    background-color: skyblue;
    border-radius: 10px;
}

.video-container-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-comecode {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 80px 0px;
}

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

.video-container-text h2 {
    font-size: 36px;
}


/* ABOUT */
.about-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    width: 100vw;
    margin:0;
    padding:20px;
}

.about-container {
    width: 100vw;
    margin:0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--content-gap);
}

.about-image { flex: 1 1 450px; }

.about-image img {
    width: 100%;
    max-width: 520px;
    max-height: 460px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-content { flex: 1 1 500px; }

.about-title {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-description p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--purple);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}


/* CONNECT */
.connect-section {
    color: var(--text-main);
    padding: 80px 0px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.connect-container {
    width: clamp(320px, 95vw, 1200px);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 100px);
    align-items: center;
    padding: 40px 0px;
}

.connect-content { flex: 1 1 450px; }

.connect-title {
    font-size: var(--title1-size);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
}

.connect-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 25px;
    font-weight: 700;
}

.connect-text {
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 420px;
    font-size: 1.1rem;
}

.connect-actions {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
}

.action-card {
    background-color: #ffffff06;
    backdrop-filter: blur(30px);
    padding: clamp(20px, 4vw, 40px);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.action-card:hover { transform: translateY(-5px); }

.label {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.info {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
}

button {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--purple);
    transition: 1ms;
}

.btn-purple {
    background-color: var(--purple);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(122, 0, 224, 0.2);
}

.btn-purple:hover { filter: brightness(1.1); }


/* TESTIMONIALS */
.testimonials-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.testimonials-container { width: var(--wrapper-width); }

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonial-main-title {
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.nav-controls { display: flex; gap: 15px; }

.nav-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.nav-circle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-base);
}

.testimonial-card {
    flex: 1 1 450px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #7a00e0;
    font-family: serif;
    margin-bottom: 10px;
    line-height: 1;
}

.review-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.review-body {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.blue-glow {
    background: radial-gradient(circle, #00d2ff 0%, #3a7bd5 100%);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.green-glow {
    background: radial-gradient(circle, #56ab2f 0%, #a8e063 100%);
    box-shadow: 0 0 20px rgba(86, 171, 47, 0.4);
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.client-meta {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.testimonials-containerText h1 {
    font-size: var(--title1-size);
}


/* FOOTER */
.edens-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: var(--footer-pad) 20px 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col { flex: 1 1 220px; }

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-logo { max-width: 150px; margin-bottom: 20px; }

.brand-bio {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-icons { display: flex; gap: 12px; }

.icon {
    width: 35px;
    height: 35px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }

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

.footer-links a:hover { color: var(--accent-orange); }

address,
.footer-col p {
    color: var(--text-dim);
    font-style: normal;
    line-height: 1.8;
}

.contact-highlight {
    color: var(--text-light);
    font-weight: 700;
    margin: 10px 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}


/* FLOATING MESSAGE BUTTON */
.message-button {
    width: 60px;
    height: 60px;
    background-color: var(--purple);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-messageButton {
    width: 60px;
    height: 60px;
    background-color: var(--purple);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-message-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px 20px;
}

.message-button i,
.email-messageButton i {
    color: #fff;
    font-size: 22px;
}

.message-icon,
.close-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.action-btn {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.email-message-container.active .action-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.email-message-container.active .message-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.email-message-container.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}

/* Accessibility: focus states for keyboard users */
.action-btn:focus {
    outline: 3px solid rgba(122,0,224,0.25);
    transform: translateY(-3px) scale(1.04) !important;
}

.message-button:focus {
    outline: 3px solid rgba(122,0,224,0.32);
    box-shadow: 0 6px 18px rgba(122,0,224,0.14);
}

.whatsapp { background-color: #25d366; }
.call     { background-color: #0a66ff; }
.email    { background-color: var(--purple); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    header { padding: 30px 40px; }
    nav ul { gap: 20px; padding: 12px 24px; }
    nav ul li a { font-size: 0.8rem; }
}

@media (max-width: 900px) {
    header { padding: 20px 40px; }

    .desktop-only { display: none; }
    .mobile-only  { display: block; margin-top: 20px; }

    .menu-toggle { display: flex; z-index: 99999 !important; }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.9);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        border-radius: 0;
        border: none;
        z-index: 1000;
    }

    nav.active ul { right: 0; }

    nav ul li { font-size: 1.5rem; margin: 15px 0; }
    nav ul li a { font-size: 1.2rem; }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; z-index: 99999 !important; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); z-index: 99999 !important; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); z-index: 99999 !important; }
}

@media (max-width: 768px) and (min-width:100px) {
    header { padding: 15px 20px; }

    .hero {
        position: relative;
        min-height: 68vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        overflow: hidden;
        top: 0 !important;
        background:
            radial-gradient(circle at left, #0091ff63, transparent 33%),
            radial-gradient(circle at bottom right, #213e8a, #6833c345, transparent 30%) !important;
        color: #ffffff;
        width: 100% !important;
        padding: 0px 0px;
    }

    .BrandContainerGlassEffect {
        width: 100%;
        height: auto;
        background-color: #ffffff06;
        backdrop-filter: blur(30px);
        padding: 0px 15px 50px 15px;
    }

    .hero-title     { font-size: clamp(2rem, 10vw, 4rem); }
    .sub-hero-text  { font-size: clamp(12px, 3vw, 16px); }

    .badge {
        font-size: clamp(10px, 2.5vw, 14px);
        padding: 6px 12px;
    }

    .swipe-btn { font-size: 16px; padding: 3px 6px; }
    .swipe-btn .arrow { width: 28px; height: 28px; font-size: 18px; }

    .solutions-btn { font-size: 15px; }
    .solutions-btn .sol-icon { width: 30px; height: 30px; font-size: 14px; }

    .hero-btn-group { gap: 12px; }

    .action-card { align-items: flex-start; gap: 20px; }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .video-container-video {
        width: 95% !important;
        height: 70vh;
        border-radius: 10px;
    }

    .video-comecode { padding: 0px 0px; }
    .connect-section { padding: 0px 0px; }
    .video-container-text { text-align: left; padding: 0px 20px; }

    .about-image  { flex: 1 1 253px !important; }
    .about-content { flex: 1 1 340px !important; }
    .about-description p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .about-container { flex-direction: column; text-align: left !important; }

    .footer-grid { text-align: left; justify-content: center; }
    .social-icons { justify-content: left; }

    .partners-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 40px;
    }

    .logo-grid { align-items: center; justify-content: center; }
}

@media (max-width:900px) and (min-width:769px) {
    .about-content { flex: 1 1 250px; }

    .connect-container {
        width: clamp(320px, 95vw, 1200px);
        display: flex;
        flex-wrap: nowrap;
    }

    .about-container {
        flex-direction: column;
        text-align: left;
    }

    .about-description p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .video-container-video { width: 95%; }

    .footer-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
        justify-content: space-between;
    }

    .partners-container { flex-direction: column; text-align: center; }
    .partners-title { max-width: 100%; }
    .logo-grid { justify-content: center; gap: 30px; }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:1069px) and (min-width:901px) {
    .logo-grid { flex-wrap: nowrap; }
    .BrandContainerGlassEffect { padding: 0px 0px 50px 0px; }

    .about-container {
        width: clamp(320px, 95vw, 1200px);
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 40px;
    }

    .about-container { text-align: left !important; }

    .video-container-video { width: 85%; }
    .connect-container { flex-wrap: nowrap; }

    .testimonial-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: var(--gap-base);
    }

    .footer-grid { flex-wrap: nowrap; }
}
