/* Soft Shadow Rounded Card Style & Floating Island Layout */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Nunito:wght@400;600;800&display=swap');

:root {
    --bg-color: #f4f7fb;
    --card-bg: #ffffff;
    --text-main: #2d3748;
    --text-muted: #718096;
    --accent-color: #4299e1;
    --accent-hover: #3182ce;
    --shadow-soft: 0 20px 50px rgba(113, 128, 150, 0.1), 0 5px 15px rgba(113, 128, 150, 0.05);
    --shadow-hover: 0 30px 60px rgba(113, 128, 150, 0.15), 0 10px 20px rgba(113, 128, 150, 0.08);
    --radius-island: 40px;
    --radius-pill: 100px;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 120px; /* Space for bottom dock */
}

/* Background Wavy Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(66, 153, 225, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(66, 153, 225, 0.05) 0%, transparent 40%);
    z-index: -1;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; color: #1a202c; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 20px; }

/* Island Base */
.island {
    background: var(--card-bg);
    border-radius: var(--radius-island);
    box-shadow: var(--shadow-soft);
    padding: 60px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.island:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn-soft {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    background: #edf2f7;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.btn-soft:hover { background: #e2e8f0; box-shadow: 0 6px 15px rgba(0,0,0,0.08); transform: translateY(-2px); }
.btn-soft.primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.3);
}
.btn-soft.primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 15px 25px rgba(66, 153, 225, 0.4);
}

/* Layout Container */
.archipelago {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 1. Bottom Dock Navigation */
.dock-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: var(--radius-pill);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.5);
}
.dock-brand { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--accent-color); }
.dock-links { display: flex; gap: 25px; }
.dock-links a { font-weight: 600; color: var(--text-muted); padding: 8px 15px; border-radius: 20px; }
.dock-links a:hover, .dock-links a.active { color: var(--accent-color); background: rgba(66, 153, 225, 0.1); }
.dock-actions { display: flex; gap: 15px; align-items: center; }

/* 2. Hero Island (Massive Pill) */
.hero-island {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px;
    border-radius: 60px; /* Extra round for hero */
}
.hero-content { flex: 1; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 30px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badges span { background: #f7fafc; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.hero-visual { flex: 1; text-align: center; }
.hero-visual img { border-radius: 40px; box-shadow: var(--shadow-soft); }

/* 3. Metrics (Orbiting Bubbles) */
.metrics-cluster {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -30px; /* Pull up slightly into hero space */
}
.metric-bubble {
    background: var(--card-bg);
    border-radius: 50%;
    width: 200px; height: 200px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: 0.3s;
}
.metric-bubble:hover { transform: scale(1.05); }
.metric-bubble h4 { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 5px; }
.metric-bubble p { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }

/* 4. Features (Tall Vertical Pills) */
.features-archipelago {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-tall {
    border-radius: 60px;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-tall img { width: 100%; max-width: 250px; margin-bottom: 30px; border-radius: 30px; }
.feature-tall h3 { font-size: 1.8rem; margin-bottom: 15px; }
.feature-tall p { color: var(--text-muted); }

/* 5. Nodes (Horizontal Scroll Island) */
.nodes-island {
    padding: 60px;
    text-align: center;
}
.nodes-island h2 { font-size: 2.5rem; margin-bottom: 40px; }
.nodes-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.nodes-track::-webkit-scrollbar { display: none; } /* Chrome */
.node-bubble {
    flex: 0 0 auto;
    width: 150px; height: 150px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    scroll-snap-align: center;
    box-shadow: inset 0 0 0 2px transparent;
    transition: 0.3s;
}
.node-bubble:hover { box-shadow: inset 0 0 0 2px var(--accent-color); background: #fff; }
.node-bubble strong { font-size: 1.1rem; margin-bottom: 5px; }
.node-bubble span { font-size: 0.85rem; color: var(--accent-color); font-weight: 700; }

/* 6. Reviews (Overlapping Deck) */
.reviews-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}
.review-card {
    width: 350px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
}
.review-card:nth-child(1) { transform: rotate(-5deg) translateY(10px); z-index: 1; }
.review-card:nth-child(2) { transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-hover); }
.review-card:nth-child(3) { transform: rotate(5deg) translateY(10px); z-index: 1; }
.rev-stars { color: #ecc94b; margin-bottom: 15px; font-size: 1.2rem; }
.rev-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }
.rev-user { font-weight: 700; color: #1a202c; }

/* 7. Pricing (Elevated Center) */
.pricing-archipelago {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.price-island {
    padding: 50px 40px;
    text-align: center;
    border-radius: 40px;
}
.price-island.recommended {
    padding: 70px 40px;
    border-radius: 50px;
    background: #1a202c;
    color: #fff;
    box-shadow: 0 30px 60px rgba(26, 32, 44, 0.3);
}
.price-island.recommended h2, .price-island.recommended .price-val { color: #fff; }
.price-island.recommended p, .price-island.recommended li { color: #a0aec0; }
.price-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--text-muted); }
.price-val { font-size: 3.5rem; font-weight: 800; margin-bottom: 30px; }
.price-val span { font-size: 1rem; font-weight: 600; }
.price-list { list-style: none; margin-bottom: 40px; text-align: left; }
.price-list li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); font-weight: 600; }
.price-island.recommended .price-list li { border-bottom-color: rgba(255,255,255,0.1); }
.price-list li::before { content: '●'; color: var(--accent-color); margin-right: 12px; font-size: 0.8rem; }

/* 8. FAQ & Footer (Massive Bottom Island) */
.bottom-continent {
    padding: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px; /* Space above dock */
}
.faq-area h2 { font-size: 2.5rem; margin-bottom: 40px; }
.faq-item { margin-bottom: 30px; background: #f7fafc; padding: 25px; border-radius: 20px; }
.faq-q { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.faq-a { color: var(--text-muted); }

.footer-area { display: flex; flex-direction: column; justify-content: space-between; }
.footer-logo { font-size: 2rem; font-weight: 800; color: var(--accent-color); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { font-weight: 600; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-color); padding-left: 10px; }
.footer-copy { margin-top: 40px; color: #a0aec0; font-size: 0.9rem; }

/* Subpages */
.sub-hero-island { text-align: center; padding: 80px; margin-bottom: 40px; }
.sub-hero-island h1 { font-size: 3.5rem; margin-bottom: 20px; }
.sub-hero-island p { font-size: 1.2rem; color: var(--text-muted); }

.dl-archipelago { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.dl-island { display: flex; align-items: center; gap: 30px; padding: 40px; border-radius: 40px; }
.dl-icon { font-size: 4rem; background: #f7fafc; width: 100px; height: 100px; display: flex; justify-content: center; align-items: center; border-radius: 30px; }
.dl-info h3 { font-size: 1.8rem; margin-bottom: 10px; }
.dl-info p { color: var(--text-muted); margin-bottom: 20px; }

.help-archipelago { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.help-nav-island { padding: 40px; }
.help-nav { display: flex; flex-direction: column; gap: 15px; }
.help-nav a { padding: 15px 20px; border-radius: 20px; font-weight: 700; color: var(--text-muted); background: #f7fafc; }
.help-nav a.active, .help-nav a:hover { background: var(--accent-color); color: #fff; }
.help-content-island { padding: 60px; }
.help-sec { margin-bottom: 50px; }
.help-sec h3 { font-size: 2rem; margin-bottom: 20px; color: var(--accent-color); }
.help-sec h4 { font-size: 1.3rem; margin-top: 30px; margin-bottom: 15px; }
.help-sec p, .help-sec li { color: var(--text-muted); margin-bottom: 15px; }
.help-sec ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1200px) {
    .hero-island { flex-direction: column; text-align: center; padding: 60px 40px; }
    .hero-actions, .trust-badges { justify-content: center; }
    .metrics-cluster { flex-wrap: wrap; margin-top: 0; }
    .features-archipelago { grid-template-columns: 1fr; }
    .feature-tall { flex-direction: row; text-align: left; gap: 30px; }
    .feature-tall img { width: 200px; margin-bottom: 0; }
    .reviews-deck { flex-direction: column; }
    .review-card:nth-child(1), .review-card:nth-child(3) { transform: none; }
    .pricing-archipelago { grid-template-columns: 1fr; }
    .bottom-continent { grid-template-columns: 1fr; }
    .dl-archipelago { grid-template-columns: 1fr; }
    .help-archipelago { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .dock-nav { width: 95%; padding: 15px 20px; gap: 15px; justify-content: space-between; }
    .dock-links { display: none; } /* Hide links on mobile dock, keep CTA */
    .hero-content h1 { font-size: 2.8rem; }
    .feature-tall { flex-direction: column; text-align: center; }
    .feature-tall img { width: 100%; margin-bottom: 20px; }
    .dl-island { flex-direction: column; text-align: center; }
}
