/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/loginimg.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding-top: 16px;
    padding-bottom: 16px;
}

.navbar-scrolled .logo-text {
    color: #0a0a0a;
}

.navbar-scrolled .nav-links a {
    color: #0a0a0a;
}

.navbar-scrolled .nav-links a::after {
    background: #0a0a0a;
}

.navbar-scrolled .nav-cta {
    color: #ffffff;
    border-color: #1a4a35;
    background: #1a4a35;
}

.navbar-scrolled .nav-cta:hover {
    background: transparent;
    color: #1a4a35;
}

.navbar-scrolled .mobile-menu-btn span {
    background: #0a0a0a;
}

.nav-logo {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border: 2px solid #4CAF50;
    color: #ffffff;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #4CAF50;
    color: #0a0a0a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 20;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ===== Hero Content ===== */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 48px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    background: #2D6A4F;
    border: 2px solid #2D6A4F;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #1a4a35;
    border-color: #1a4a35;
    color: #ffffff;
}

/* ===== Hero Bottom Cards ===== */
.hero-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(193, 249, 10, 0.15);
    color: #C1F90A;
    border-color: rgba(193, 249, 10, 0.2);
}

/* ===== Our Values Section ===== */
.values-section {
    background: #2e6a4f;
    padding: 80px 48px;
    overflow: hidden;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.values-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 400;
    line-height: 1;
    color: #F5F0E0;
    text-transform: uppercase;
    max-width: 700px;
    flex-shrink: 0;
}

.values-highlight {
    color: #C1F90A;
    position: relative;
}

.values-highlight::before {
    content: '';
    position: absolute;
    inset: -4px -10px;
    background: rgba(193, 249, 10, 0.15);
    border-radius: 6px;
    z-index: -1;
}

.values-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 240, 224, 0.75);
    max-width: 340px;
    padding-top: 16px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 48px;
}

.values-card {
    position: relative;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.values-card:hover {
    transform: translateY(-2px);
}

.values-card--tall {
    min-height: 260px;
}

.values-card--short {
    min-height: 140px;
    flex-direction: column;
}

.values-card--short .values-card__number {
    align-self: flex-end;
    margin-bottom: auto;
}

.values-card--short .values-card__title {
    margin-top: auto;
}

/* Card color variants */
.values-card--light {
    background: #4caf51;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.values-card--dark {
    background: #2D3B1A;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.values-card--accent {
    background: #7A8C3C;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.values-card__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;
    color: #F5F0E0;
    line-height: 1.3;
}

.values-card__number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #C1F90A;
}

.values-card--tall .values-card__title {
    margin-bottom: auto;
}

.values-card--tall .values-card__number {
    margin-top: auto;
    align-self: flex-start;
}

/* Footer */
.values-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
}

.values-avatars {
    display: flex;
    align-items: center;
}

.values-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #5C6B2F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    overflow: hidden;
}

.values-avatar:first-child {
    margin-left: 0;
}

.values-avatar--plus {
    background: #C1F90A;
    color: #2D3B1A;
    font-weight: 700;
    font-size: 18px;
}

.values-stat-number {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 400;
    color: #F5F0E0;
    line-height: 1;
}

.values-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(245, 240, 224, 0.7);
}

/* ===== What We Do Section ===== */
.what-we-do {
    position: relative;
    background: #FCFCF8;
    padding: 80px 48px;
    overflow: hidden;
}

#ripple-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#ripple-grid-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.section-headline {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Featured Card */
.service-card.featured {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 420px;
    padding: 0;
}

.service-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-radius: 16px;
    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-icon {
    margin-bottom: auto;
}

.featured-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.featured-content .hero-cta {
    white-space: nowrap;
    align-self: flex-start;
}

/* Service Cards — Spotlight Effect */
.service-card {
    position: relative;
    background: rgb(46 106 79);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(34, 34, 34, 0.8);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(193, 249, 10, 0.15);
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    transform: perspective(800px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* SF-Style Icons */
.sf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.sf-icon-green {
    background: #102E19;
    color: #C1F90A;
}

.sf-icon-green-solid {
    background: #C1F90A;
    color: #102E19;
}

.sf-icon-purple {
    background: #102E19;
    color: #C1F90A;
}

.sf-icon-blue {
    background: #102E19;
    color: #C1F90A;
}

.service-icon {
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    font-weight: 400;
    color: #d5d5d5;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 24px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: #C1F90A;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d4ff4d;
}

/* ===== Product Showcase: Whamp ===== */
.product-showcase {
    background: #ffffff;
    padding: 80px 48px;
}

.product-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-badge {
    display: inline-flex;
    margin-right: auto;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e2e2;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 28px;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.product-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.product-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.product-cta-primary {
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    background: #4CAF50;
    color: #0a0a0a;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.product-cta-primary:hover {
    background: #43A047;
}

.product-cta-secondary {
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    background: transparent;
    color: #0a0a0a;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-cta-secondary:hover {
    border-color: #0a0a0a;
}

.product-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.proof-avatars {
    display: flex;
    gap: -4px;
}

.proof-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -6px;
}

.proof-text {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.proof-stars {
    font-size: 14px;
    color: #FFD54F;
    letter-spacing: 1px;
}

/* Product Mockup */
.product-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-mockup {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.mockup-browser {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 56px;
    background: #141424;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-nav-item {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #2a2a4a;
}

.mockup-nav-item.active {
    background: #4CAF50;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-header-bar {
    height: 12px;
    width: 60%;
    background: #2a2a4a;
    border-radius: 6px;
}

.mockup-cards {
    display: flex;
    gap: 10px;
}

.mockup-card-sm {
    flex: 1;
    height: 60px;
    background: #2a2a4a;
    border-radius: 8px;
}

.mockup-card-sm:nth-child(1) { background: linear-gradient(135deg, #2d4a3d, #1a3a2a); }
.mockup-card-sm:nth-child(2) { background: linear-gradient(135deg, #3a2d4a, #2a1a3a); }
.mockup-card-sm:nth-child(3) { background: linear-gradient(135deg, #2d3a4a, #1a2a3a); }

.mockup-chart {
    flex: 1;
    background: #2a2a4a;
    border-radius: 8px;
    min-height: 120px;
}

.mockup-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mockup-play:hover {
    background: rgba(0, 0, 0, 0.8);
}

.mockup-play svg {
    margin-left: 3px;
}

/* ===== How It Works Section ===== */
.how-it-works {
    position: relative;
    padding: 80px 48px;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('/img/abstract.webp') center / cover no-repeat;
    filter: blur(5px);
    z-index: 0;
}

.how-it-works::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.5)), url('/img/abstract.webp') center / cover no-repeat;
    z-index: 0;
}

.how-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.how-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 28px;
}

.how-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.how-desc {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.how-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.how-cta:hover {
    background: #e0e0e0;
}

.how-visual {
    position: relative;
    height: 500px;
}

/* CardSwap */
.card-swap-container {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(5%, 20%);
    transform-origin: bottom right;
    perspective: 900px;
    overflow: visible;
    width: 500px;
    height: 400px;
}

.swap-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 400px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111111;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.swap-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    opacity: 0.8;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, transparent 100%);
}

.swap-card-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(193, 249, 10, 1);
    margin-bottom: auto;
}

.swap-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.swap-card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* ===== WhatsApp Section ===== */
.whatsapp-section {
    background: #f5f5f0;
    padding: 60px 48px 0;
}

.whatsapp-container {
    max-width: 1280px;
    margin: 0 auto;
}

.whatsapp-hero {
    position: relative;
    min-height: 680px;
}

/* Two merged green rectangles */
.wa-shape-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 520px;
    background: #2D6A4F;
    border-radius: 24px;
    z-index: 0;
    overflow: hidden;
}

.wa-shape-extend {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    bottom: 0;
    background: #2D6A4F;
    border-radius: 24px 24px 24px 24px !important;
    z-index: 0;
}

/* Concave inner corner where the two shapes meet */
.whatsapp-hero::after {
    content: '';
    position: absolute;
    left: 45%;
    top: 440px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 0% 100%, #f5f5f0 79.5px, transparent 80px);
    z-index: 1;
    pointer-events: none;
}

/* Decorative curves (clipped inside wa-shape-main) */
.wa-curve {
    position: absolute;
    width: 120%;
    left: -10%;
    pointer-events: none;
    z-index: 1;
}

.wa-curve-1 {
    bottom: 15%;
    height: 200px;
}

.wa-curve-2 {
    bottom: 5%;
    height: 200px;
}

.wa-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 60px 56px;
    min-height: 520px;
}

.wa-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wa-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.wa-highlight {
    color: #5AE07A;
}

.wa-desc {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 480px;
}

.wa-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.wa-cta-primary {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.wa-cta-primary:hover {
    background: transparent;
    color: #ffffff;
}

.wa-cta-secondary {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.wa-cta-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

/* Mini Cards */
.wa-mini-cards {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.wa-mini-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 16px;
    backdrop-filter: blur(4px);
}

.wa-mini-card svg {
    stroke: #C1F90A;
    flex-shrink: 0;
}

.wa-mini-card span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

/* Dashboard + Phone Visual */
.wa-visual {
    position: relative;
    padding-top: 20px;
}

/* Dashboard */
.wa-dashboard {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    min-height: 360px;
}

.wa-dash-sidebar {
    width: 120px;
    background: #fafafa;
    border-right: 1px solid #eee;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.wa-dash-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.wa-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    color: #888;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: default;
}

.wa-dash-nav-item.active {
    background: #e8f5e9;
    color: #2D6A4F;
    font-weight: 700;
}

.wa-dash-main {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.wa-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-dash-header-title {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
}

.wa-dash-header-date {
    font-size: 9px;
    font-weight: 500;
    color: #888;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 10px;
}

.wa-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.wa-dash-stat {
    background: #f9faf9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-dash-stat-label {
    font-size: 8px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wa-dash-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.wa-dash-stat-change {
    font-size: 9px;
    font-weight: 700;
}

.wa-dash-stat-change.positive {
    color: #25D366;
}

.wa-dash-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.wa-dash-chart-card {
    background: #f9faf9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-dash-chart-title {
    font-size: 9px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wa-dash-stat-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

/* Secondary Stats Row */
.wa-dash-stats-secondary {
    gap: 6px;
}

.wa-dash-stat-mini {
    background: #f9faf9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wa-dash-stat-val-sm {
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
}

/* Donut Chart */
.wa-dash-donut-chart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-dash-donut-chart svg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.wa-dash-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 7px;
    font-weight: 500;
    color: #555;
}

.wa-dash-donut-legend div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wa-dash-donut-legend span {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Bar Chart with labels */
.wa-dash-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 52px;
}

.wa-dash-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    height: 100%;
    justify-content: flex-end;
}

.wa-dash-bar-col span {
    font-size: 6px;
    color: #999;
    font-weight: 500;
}

.wa-dash-bar {
    width: 100%;
    background: #c8e6c9;
    border-radius: 2px 2px 0 0;
    min-width: 0;
}

.wa-dash-bar.active {
    background: #25D366;
}

/* Top Customers Table */
.wa-dash-table-card {
    background: #f9faf9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-dash-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wa-dash-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    font-size: 6px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 0;
    border-bottom: 1px solid #eee;
}

.wa-dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    align-items: center;
    padding: 3px 0;
    font-size: 7px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.wa-dash-table-customer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-dash-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 7px;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-dash-badge {
    font-size: 6px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
    text-align: center;
}

.wa-dash-badge-green {
    background: #e8f5e9;
    color: #2D6A4F;
}

.wa-dash-badge-blue {
    background: #e3f2fd;
    color: #1565c0;
}

/* Phone Mockup - overlays dashboard */
.wa-phone {
    position: absolute;
    bottom: -175px;
    right: -20px;
    width: 220px;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 6px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    z-index: 5;
}

.wa-phone-notch {
    display: none;
}

.wa-phone-screen {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    position: relative;
}

/* Phone Screens */
.wa-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wa-screen.active {
    opacity: 1;
    pointer-events: auto;
}

/* QR Scanner Screen */
.wa-screen-qr {
    background: #111;
}

.wa-qr-bg {
    position: absolute;
    inset: 0;
    background: url('img/coffee-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.wa-qr-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.wa-qr-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.wa-qr-viewfinder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    z-index: 2;
}

.wa-qr-frame {
    width: 130px;
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-qr-frame > span {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: #fff;
    border-style: solid;
    border-width: 0;
}

.wa-qr-frame > span:nth-child(1) { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 6px 0 0 0; }
.wa-qr-frame > span:nth-child(2) { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 6px 0 0; }
.wa-qr-frame > span:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 6px; }
.wa-qr-frame > span:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 6px 0; }

.wa-qr-code {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
}

.wa-qr-scanline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.8);
    animation: scanline 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes scanline {
    0%, 100% { top: calc(50% - 65px); }
    50% { top: calc(50% + 55px); }
}

.wa-qr-hint {
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px;
    position: relative;
    z-index: 2;
}

/* WhatsApp Chat Screen */
.wa-screen-chat {
    background: #f0ebe3;
}

.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.wa-chat-avatar-sm {
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-chat-contact-info {
    display: flex;
    flex-direction: column;
}

.wa-chat-name {
    font-size: 9px;
    font-weight: 700;
    color: #1a1a1a;
}

.wa-chat-status {
    font-size: 7px;
    color: #25D366;
}

.wa-chat-body {
    flex: 1;
    position: relative;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.wa-chat-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wa-msg {
    position: relative;
    max-width: 90%;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 9px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
}

.wa-msg-sent {
    align-self: flex-end;
    background: #d9fdd3;
    color: #1a1a1a;
    border-bottom-right-radius: 2px;
}

.wa-msg-received {
    align-self: flex-start;
    background: #ffffff;
    color: #1a1a1a;
    border-bottom-left-radius: 2px;
}

.wa-msg-time {
    display: block;
    font-size: 7px;
    color: #888;
    text-align: right;
    margin-top: 1px;
}

.wa-msg-caption {
    font-size: 8px;
    color: #333;
    margin-top: 4px;
    line-height: 1.3;
}

/* Stamp Card inside chat — horizontal landscape */
.wa-stamp-card {
    background: #3D7A5F;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    aspect-ratio: 1.7 / 1;
    justify-content: space-between;
}

.wa-stamp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wa-stamp-brand {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.wa-stamp-subtitle {
    font-size: 6px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1px;
}

.wa-stamp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 0 2px;
}

.wa-stamp {
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-stamp.filled {
    background: #5AE07A;
}

.wa-stamp svg {
    width: 50%;
    height: 50%;
}

.wa-stamp-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-stamp-customer {
    font-size: 7px;
    font-weight: 700;
    color: #ffffff;
}

.wa-stamp-offer {
    font-size: 6px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.wa-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    font-size: 8px;
    color: #aaa;
}

/* Agent Cards */
.wa-agents {
    display: flex;
    gap: 20px;
    padding: 0 0 60px;
    position: relative;
    z-index: 3;
    margin-top: -150px;
    max-width: 55%;
}

.wa-agent-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wa-agent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wa-agent-card-active {
    background: #e8f5e9;
    border-color: rgba(45, 106, 79, 0.15);
}

.wa-agent-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-agent-icon-gamify {
    background: #fff3e0;
    color: #e65100;
}

.wa-agent-icon-churn {
    background: #e0f2e9;
    color: #2D6A4F;
}

.wa-agent-icon-setup {
    background: #e3f2fd;
    color: #1565c0;
}

.wa-agent-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* ===== Services Bento Section ===== */
.bento-section {
    position: relative;
    background: #FCFCF8;
    padding: 80px 48px;
    overflow: hidden;
    user-select: none;
}

.bento-container {
    max-width: 1280px;
    margin: 0 auto;
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 48px;
}

.bento-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.15;
    flex: 1;
    text-align: left;
}

.bento-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    flex: 1;
    text-align: right;
    max-width: 480px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/* Bento Card */
.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(34, 34, 34, 0.8);
    background: rgb(46, 106, 79);
    overflow: hidden;
    transition: all 0.3s ease;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-intensity: 0;
    --glow-radius: 400px;
    --glow-color: 193, 249, 10;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(193, 249, 10, 0.15);
}

/* Spotlight effect on card */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 0.6;
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Border glow effect */
.bento-card--glow::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 6px;
    background: radial-gradient(
        var(--glow-radius) circle at var(--glow-x) var(--glow-y),
        rgba(var(--glow-color), calc(var(--glow-intensity) * 0.8)) 0%,
        rgba(var(--glow-color), calc(var(--glow-intensity) * 0.4)) 30%,
        transparent 60%
    );
    border-radius: inherit;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.bento-card--glow:hover {
    box-shadow:
        0 4px 20px rgba(46, 106, 79, 0.4),
        0 0 30px rgba(193, 249, 10, 0.1);
}

/* Card inner elements */
.bento-card__header {
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #fff;
    z-index: 2;
}

.bento-card__label {
    font-size: 13px;
    font-weight: 600;
    color: #C1F90A;
}

.bento-card__content {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    z-index: 2;
}

.bento-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-card__desc {
    font-size: 12px;
    font-weight: 400;
    color: #d5d5d5;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bento card with background image — light style */
.bento-card--has-img {
    background: #f5f5f0;
    border-color: rgba(0, 0, 0, 0.08);
    --spotlight-color: rgba(193, 249, 10, 0.08);
}

.bento-card--has-img .bento-card__label {
    color: #2D6A4F;
}

.bento-card--has-img .bento-card__title {
    color: #0a0a0a;
}

.bento-card--has-img .bento-card__desc {
    color: #666;
}

.bento-card__img {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-height: 75%;
    object-fit: contain;
    object-position: center top;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0.6) 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

/* Subtle warm glow behind image */
.bento-card--has-img::before {
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(193, 249, 10, 0.08) 0%, transparent 70%),
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 1;
}

/* Bento grid layout — featured cards */
.bento-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.bento-card:nth-child(7) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.bento-card:nth-child(1) .bento-card__title,
.bento-card:nth-child(7) .bento-card__title {
    font-size: 22px;
    font-weight: 700;
}

.bento-card:nth-child(1) .bento-card__desc,
.bento-card:nth-child(7) .bento-card__desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* Global spotlight overlay */
.bento-spotlight {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle,
        rgba(193, 249, 10, 0.12) 0%,
        rgba(193, 249, 10, 0.06) 15%,
        rgba(193, 249, 10, 0.03) 25%,
        rgba(193, 249, 10, 0.015) 40%,
        rgba(193, 249, 10, 0.005) 65%,
        transparent 70%
    );
    z-index: 200;
    opacity: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

/* ===== Strategic Advisory Section ===== */
.advisory-section {
    background: #FCFCF8;
    padding: 80px 48px;
}

.advisory-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.advisory-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 56px;
}

.advisory-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: #0a0a0a;
    max-width: 550px;
}

.advisory-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 360px;
    padding-top: 12px;
}

/* Feature Cards */
.advisory-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.advisory-feature {
    display: flex;
    flex-direction: column;
}

.advisory-feature__img {
    background: #e8f5e9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16 / 10;
}

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

.advisory-feature__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.advisory-feature__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    flex: 1;
}

.advisory-feature__cta {
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border: 2px solid #0a0a0a;
    color: #0a0a0a;
    transition: all 0.3s ease;
}

.advisory-feature__cta:hover {
    background: #0a0a0a;
    color: #ffffff;
}

/* Bottom CTA */
.advisory-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.advisory-cta-card {
    background: #e8f5e9;
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.advisory-cta-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
}

.advisory-cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: #0a0a0a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.advisory-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.advisory-cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.advisory-cta-buttons .hero-cta {
    border-color: #0a0a0a;
    color: #0a0a0a;
    font-size: 13px;
    padding: 12px 24px;
}

.advisory-cta-buttons .hero-cta:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.advisory-cta-photo {
    border-radius: 20px;
    overflow: hidden;
}

.advisory-cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Contact Form Section ===== */
.contact-section {
    background: #FCFCF8;
    padding: 80px 48px;
    text-align: center;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4CAF50;
    margin-bottom: 16px;
    display: block;
}

.contact-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: #0a0a0a;
    line-height: 1.1;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form__input::placeholder {
    color: #aaa;
}

.contact-form__input:focus {
    border-color: #4CAF50;
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    background: #2D6A4F !important;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
}

/* ===== Footer ===== */
.site-footer {
    background: #1a2a1a;
    padding: 48px 48px 0;
    overflow: hidden;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-cta-block {
    position: relative;
    background: #243824;
    border-radius: 20px;
    padding: 48px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.footer-cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    max-width: 420px;
    margin-bottom: 24px;
}

.footer-cta-btn {
    z-index: 2;
    position: relative;
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.footer-cta-btn:hover {
    background: transparent;
    color: #ffffff;
}

.footer-cta-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 70%;
    overflow: hidden;
    border-radius: 16px 0 0 0;
}

.footer-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-nav-block {
    background: #243824;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #C1F90A;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C1F90A;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-watermark {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 10vw, 140px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.04);
    text-align: center;
    line-height: 1;
    padding: 24px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    padding: 0;
    background-color: #1a4a35;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s ease-out;
    visibility: hidden;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: #145a3a;
    transform: scale(1.1);
}

.scroll-to-top-btn:focus {
    outline: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 32px;
    }

    .hero-content {
        padding: 0 32px 40px;
    }

    .nav-links {
        gap: 24px;
    }

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

    .what-we-do {
        padding: 60px 32px;
    }

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

    .service-card.featured {
        grid-column: span 2;
    }

    .product-showcase {
        padding: 60px 32px;
    }

    .product-container {
        gap: 40px;
    }

    .how-it-works {
        padding: 60px 32px;
    }

    .how-container {
        gap: 40px;
    }

    .whatsapp-section {
        padding: 48px 32px 0;
    }

    .wa-content {
        padding: 48px 40px;
    }

    .wa-phone {
        width: 190px;
        bottom: -140px;
        right: -10px;
    }

    .wa-phone-screen {
        height: 360px;
    }

    .wa-dash-sidebar {
        width: 100px;
    }

    .wa-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-dash-stats-secondary {
        display: none;
    }

    .wa-dash-stat-value {
        font-size: 13px;
    }

    .wa-shape-main {
        height: 480px;
    }

    .whatsapp-hero::after {
        top: 400px;
    }

    .wa-agents {
        max-width: 60%;
    }

    .values-section {
        padding: 60px 32px;
    }

    .values-header {
        gap: 40px;
    }

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

    .values-card--tall:nth-child(3) {
        grid-column: span 2;
    }

    .bento-section {
        padding: 60px 32px;
    }

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

    .bento-card:nth-child(1),
    .bento-card:nth-child(7) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .advisory-section {
        padding: 60px 32px;
    }

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

    .advisory-features .advisory-feature:nth-child(3) {
        grid-column: span 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: none;
    }

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

    .hero-card {
        padding: 18px 12px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-content {
        padding: 0 20px 32px;
    }

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

    .hero-title {
        font-size: clamp(40px, 12vw, 80px);
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 13px;
    }

    .what-we-do {
        padding: 48px 20px;
    }

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

    .service-card.featured {
        grid-column: span 1;
    }

    .product-showcase {
        padding: 48px 20px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-title {
        font-size: 36px;
    }

    .how-it-works {
        padding: 48px 20px;
    }

    .how-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-visual {
        height: 400px;
    }

    .card-swap-container {
        transform: scale(0.75) translate(25%, 25%);
    }

    .swap-card {
        width: 400px;
        height: 320px;
        padding: 32px;
    }

    .swap-card-number {
        font-size: 48px;
    }

    .swap-card-title {
        font-size: 20px;
    }

    .whatsapp-section {
        padding: 40px 20px 0;
    }

    .whatsapp-hero {
        min-height: auto;
        background: #2D6A4F;
        border-radius: 24px;
        overflow: hidden;
    }

    .wa-shape-main {
        display: none;
    }

    .wa-shape-extend {
        display: none;
    }

    .wa-content {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        min-height: auto;
        gap: 32px;
    }

    .wa-title {
        font-size: 32px;
    }

    .whatsapp-hero::after {
        display: none;
    }

    .wa-mini-cards {
        display: none;
    }

    .wa-visual {
        justify-content: center;
    }

    .wa-dashboard {
        min-height: 280px;
    }

    .wa-dash-sidebar {
        display: none;
    }

    .wa-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-dash-stats-secondary {
        display: none;
    }

    .wa-dash-charts {
        grid-template-columns: 1fr;
    }

    .wa-dash-table-card {
        display: none;
    }

    .wa-dash-stat-value {
        font-size: 12px;
    }

    .wa-phone {
        width: 170px;
        bottom: -120px;
        right: -10px;
    }

    .wa-phone-screen {
        height: 300px;
    }

    .wa-agents {
        flex-wrap: wrap;
        gap: 12px;
        padding: 32px 0 48px;
        max-width: 100%;
        margin-top: 0;
    }

    .wa-agent-card {
        min-width: 140px;
        flex: 1;
        padding: 20px;
    }

    .wa-ctas {
        flex-direction: column;
    }

    .wa-cta-primary,
    .wa-cta-secondary {
        text-align: center;
    }

    .values-section {
        padding: 48px 20px;
    }

    .values-header {
        flex-direction: column;
        gap: 20px;
    }

    .values-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-card--tall:nth-child(3) {
        grid-column: span 1;
    }

    .values-card--tall {
        min-height: 180px;
    }

    .values-card--short {
        min-height: 120px;
    }

    .values-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bento-section {
        padding: 48px 20px;
    }

    .bento-header {
        flex-direction: column;
        gap: 16px;
    }

    .bento-desc {
        text-align: left;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card:nth-child(1),
    .bento-card:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card {
        aspect-ratio: auto;
        min-height: 180px;
    }

    .advisory-section {
        padding: 48px 20px;
    }

    .advisory-header {
        flex-direction: column;
        gap: 16px;
    }

    .advisory-features {
        grid-template-columns: 1fr;
    }

    .advisory-features .advisory-feature:nth-child(3) {
        grid-column: span 1;
    }

    .advisory-bottom {
        grid-template-columns: 1fr;
    }

    .advisory-cta-card {
        padding: 32px;
    }

    .advisory-cta-photo {
        min-height: 260px;
    }

    .advisory-cta-buttons {
        flex-direction: column;
    }

    .contact-section {
        padding: 48px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 40px 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-cta-block {
        min-height: 320px;
        padding: 32px;
    }

    .footer-cta-img {
        width: 55%;
        height: 55%;
    }

    .footer-nav-block {
        padding: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-watermark {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        padding: 16px 20px;
    }
}
