:root {
    --bg-dark: #050a06;
    --primary-green: #00ff88;
    --text-gray: #a0a0a0;
    --card-bg: #121814;
}

.pump-hero {
    background: radial-gradient(circle at top right, #0d2a1a, #050a06 60%);
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    margin: 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Left Section */
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(120deg, #ffffff 0%, #63ffb7 60%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight { color: var(--primary-green); }
.highlight-alt { color: var(--primary-green); font-weight: 600; }

.hero-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 10px;
    max-width: 400px;
}

.search-container input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
    flex-grow: 1;
    outline: none;
}

.btn-search {
    background: var(--primary-green);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-search:hover { transform: scale(1.05); }

/* Center Rocket */
.hero-rocket {
    position: absolute;
    left: 91%;
    bottom: -94px;
    width: 252px;
    animation: float 4s ease-in-out infinite;
}

.hero-rocket img { width: 100%; transform: rotate(10deg); }

/* Right Section - Floating Cards */
.hero-cards {
    position: relative;
    width: 350px;
    height: 400px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    position: absolute;
    width: 240px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-img {
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 12px;
}

.card-1 {
    top: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 1;
}

.card-2 {
    bottom: 20px;
    left: 0;
    transform: rotate(-5deg);
    z-index: 2;
}

.card-info .m-cap { font-size: 0.8rem; color: var(--primary-green); }
.card-title { font-weight: bold; margin: 8px 0 2px; }
.created-by { font-size: 0.7rem; color: #666; margin-bottom: 10px; }

.btn-explore {
    background: transparent;
    border: 1px solid #444;
    color: white;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-explore-green {
    background: linear-gradient(120deg, #00ff88, #63ffb7);
    border: none;
    color: #042213;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-explore-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0, 255, 136, 0.35);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-rocket { display: none; }
    .search-container { margin: 0 auto; }
    .hero-cards { margin-top: 50px; transform: scale(0.8); }
}

:root {
    --bg-black: #080c09;
    --accent-green: #4caf50;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.process-diagram {
    background-color: var(--bg-black);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.diagram-container {
    position: relative;
    width: 800px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Circles */
.circles-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    z-index: 0;
}
.circles-bg svg { width: 100%; height: 100%; }
.inner-circle { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.outer-circle { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 2; }

/* Center Node */
.center-node {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #1a2e21 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.pill-icon {
    width: 60px;
    height: 60px;
    background: #1e2621;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

/* Glassmorphism Cards */
.card {
    position: absolute;
    width: 190px;
    padding: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    z-index: 5;
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card .time { font-size: 0.65rem; color: #888; }
.dots { color: var(--accent-green); font-style: normal; letter-spacing: 2px; }

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    font-size: 0.75rem;
    color: #bbb;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.card ul li::before {
    content: "•";
    color: #555;
    margin-right: 8px;
}

/* Cardinal Positioning */
.card.top { transform: translateY(-200px); }
.card.bottom { transform: translateY(200px); }
.card.left { transform: translateX(-240px); }
.card.right { transform: translateX(240px); }

/* Floating Icons with Math-based positioning */
.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 1px solid var(--glass-border);
    /* Polar to Cartesian conversion logic */
    left: calc(50% + (var(--dist) * cos(var(--angle))));
    top: calc(50% + (var(--dist) * sin(var(--angle))));
    transform: translate(-50%, -50%);
}

.float-icon.purp { box-shadow: 0 0 20px rgba(156, 39, 176, 0.4); }
.float-icon.green { box-shadow: 0 0 20px rgba(76, 175, 80, 0.4); }
.float-icon.blue { box-shadow: 0 0 20px rgba(33, 150, 243, 0.4); }
.float-icon.yellow { box-shadow: 0 0 20px rgba(255, 235, 59, 0.4); }

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.nav-arrow.n { top: 60px; }
.nav-arrow.s { bottom: 60px; }
.nav-arrow.e { right: 60px; }
.nav-arrow.w { left: 60px; }

:root {
    --dark-bg: #050806;
    --card-bg: #1a1f1c;
    --accent-green: #4ef090;
    --text-dim: #8a8a8a;
}

.footer-cta {
    background-color: var(--dark-bg);
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Inter', sans-serif;
}

.content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Typography */
.text-group h1 {
    font-size: 5rem;
    margin: 0;
    font-weight: 400;
}
.title-green {
    font-size: 5rem;
    color: var(--accent-green);
    margin-top: -10px;
    font-weight: 500;
}

/* Profile Cards Styling */
.profile-card {
    position: absolute;
    background: var(--card-bg);
    padding: 15px;
    width: 200px;
    border-radius: 25px 5px 25px 25px; /* Creates that unique tab shape */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    text-align: left;
    animation: float 4s ease-in-out infinite;
}

.p-header { display: flex; gap: 10px; align-items: center; margin-bottom: 40px; }
.p-header img { width: 35px; height: 35px; border-radius: 50%; }
.p-header h4 { font-size: 14px; margin: 0; }
.p-header p { font-size: 10px; color: var(--accent-green); margin: 0; }

.p-source span { font-size: 10px; color: var(--text-dim); display: block; margin-bottom: 5px; }
.tags { display: flex; gap: 5px; }
.tags i { font-style: normal; font-size: 10px; background: #2a2f2c; padding: 2px 8px; border-radius: 10px; color: #ccc; }

/* Positioning Cards */
.p1 { top: -100px; left: 300px; transform: rotate(-10deg); animation-delay: 0s; }
.p2 { bottom: 150px; left: 150px; transform: rotate(-5deg); animation-delay: 1s; }
.p3 { top: 150px; right: 100px; transform: rotate(8deg); animation-delay: 2s; }

/* Main Green Card */
.action-card {
    background: var(--accent-green);
    color: #000;
    width: 320px;
    padding: 20px;
    border-radius: 30px 10px 30px 30px;
    margin-top: 50px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(78, 240, 144, 0.2);
    z-index: 10;
}

.a-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.a-header .user { display: flex; gap: 10px; align-items: center; }
.a-header .user img { width: 35px; border-radius: 50%; }
.a-header .user strong { font-size: 14px; display: block; }
.a-header .user span { font-size: 11px; opacity: 0.7; }

.a-icons { display: flex; gap: 10px; }
.icon { background: rgba(0,0,0,0.1); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 12px; }

.call-details { display: flex; gap: 15px; background: rgba(0,0,0,0.05); padding: 15px; border-radius: 20px; margin-bottom: 20px; }
.call-details h3 { margin: 0; font-size: 18px; }
.meet-info { display: flex; justify-content: space-between; align-items: center; font-size: 11px; margin-top: 5px; }

.a-footer { display: flex; justify-content: space-between; align-items: center; }
.status { background: rgba(0,0,0,0.05); padding: 8px 12px; border-radius: 15px; font-size: 12px; display: flex; align-items: center; gap: 8px; font-weight: 500;}
.status img { border-radius: 50%; }

.footer-icons { display: flex; gap: 8px; }
.icon-small { width: 35px; height: 35px; background: rgba(0,0,0,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.icon-small.dark { background: #000; color: #fff; }

/* Background Glows */
.glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; opacity: 0.2; }
.g1 { width: 400px; height: 400px; background: var(--accent-green); top: 10%; left: -10%; }
.g2 { width: 300px; height: 300px; background: #333; bottom: 20%; right: 10%; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}
.p1 { --r: -10deg; }
.p2 { --r: -5deg; }
.p3 { --r: 8deg; }

/* Responsive */
@media (max-width: 768px) {
    .text-group h1, .title-green { font-size: 2.5rem; }
    .profile-card { display: none; } /* Hide secondary floating cards on mobile */
    .action-card { width: 90%; }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    color: var(--text-gray);
}
.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.hero-benefits li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    display: inline-block;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-whatsapp {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37,211,102,0.08);
    transform: translateY(-3px);
}

.hero-meta {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.text-intro {
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.intro-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.intro-pill {
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0,255,136,0.12);
    color: var(--primary-green);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    border-color: rgba(0,255,136,0.35);
    transform: translateY(-6px);
}

.value-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
}

.value-card p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.pump-gallery {
    background: #030604;
    padding: 80px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: start;
}

.gallery-copy ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    color: #bfbfbf;
}

.gallery-copy ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.gallery-copy ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    position: absolute;
    left: 0;
    top: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card img {
    width: 100%;
    display: block;
    height: 180px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 18px;
}

.gallery-card h3 {
    margin: 8px 0 6px;
    font-size: 1rem;
}

.gallery-card p {
    margin: 0;
    color: #a7a7a7;
    font-size: 0.9rem;
}

.gallery-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-green);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,255,136,0.4);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.pump-faq {
    background: #020403;
    padding: 90px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

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

.faq-copy h2 {
    font-size: 2.75rem;
    margin-bottom: 10px;
}

.faq-copy p {
    color: #a7a7a7;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.faq-item {
    background: linear-gradient(140deg, rgba(18,24,20,0.85), rgba(5,8,6,0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,255,136,0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item.in-view::before,
.faq-item:hover::before {
    opacity: 1;
}

.faq-item.in-view {
    animation: faq-pop 0.8s ease forwards;
}

@keyframes faq-pop {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.faq-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0,255,136,0.35);
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.faq-badge {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(0,255,136,0.1);
    color: var(--primary-green);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.faq-question {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-body {
    max-height: 500px;
    margin-top: 16px;
}

.faq-body p {
    margin: 0 0 16px;
    color: #d1d1d1;
}

.faq-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: #9ab29f;
    font-size: 0.9rem;
}

.faq-meta li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.faq-meta li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.faq-cta::after {
    content: "↗";
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .value-cards {
        grid-template-columns: 1fr;
    }
    .text-intro {
        text-align: center;
    }
}
