/* Bento Grid Hero Design */
.hero-bento {
    position: relative;
    width: 100%;
    background-color: #0c0c0e;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(242, 140, 40, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f28c28 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.hero-bento-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Content */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot-orange {
    width: 8px;
    height: 8px;
    background: #f28c28;
    border-radius: 50%;
}

.badge-text-left {
    color: #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title-left {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
    min-height: 120px;
}

.text-gradient-orange {
    background: linear-gradient(to right, #f28c28, #ffb255);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-left {
    font-size: 18px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
}

.cta-group-left {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-bento {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary-orange {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    color: #fff;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-badges-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-blue-glow {
    color: #3498db;
}

.text-orange-glow {
    color: #f28c28;
}

/* Dashboard Mockup */
.hero-dashboard-wrapper {
    perspective: 1500px;
    width: 100%;
    position: relative;
    padding-left: 20px;
}

.bento-dashboard-mockup {
    width: 100%;
    margin-left: -20px;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    transform: rotateY(-15deg) rotateX(8deg) translateZ(0);
    box-shadow:
        -20px 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.bento-dashboard-mockup:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.bento-sidebar {
    width: 70px;
    background: #0f0f11;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 24px;
}

.sidebar-logo {
    font-size: 24px;
    margin-bottom: 20px;
}

.sidebar-nav {
    color: #555;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar-nav.active {
    color: #f28c28;
    background: rgba(242, 140, 40, 0.1);
    padding: 10px;
    border-radius: 8px;
}

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

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

.dash-greeting {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.dash-date-sub {
    color: #888;
    font-size: 11px;
    margin-top: 4px;
}

.dash-date-picker {
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    color: #aaa;
    font-size: 11px;
    display: flex;
    gap: 8px;
    align-items: center;
}

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

.dash-stat-box {
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 0.6s ease forwards;
}

.dash-stat-box:nth-child(1) {
    animation-delay: 0.2s;
}

.dash-stat-box:nth-child(2) {
    animation-delay: 0.3s;
}

.dash-stat-box:nth-child(3) {
    animation-delay: 0.4s;
}

.dash-stat-box:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.bg-blue-dim {
    background: rgba(52, 152, 219, 0.1);
}

.bg-green-dim {
    background: rgba(37, 211, 102, 0.1);
}

.bg-purple-dim {
    background: rgba(155, 89, 182, 0.1);
}

.bg-orange-dim {
    background: rgba(242, 140, 40, 0.1);
}

.text-blue {
    color: #3498db;
}

.text-green {
    color: #25d366;
}

.text-purple {
    color: #9b59b6;
}

.text-orange-main {
    color: #f28c28;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: #888;
    font-size: 10px;
    margin-bottom: 4px;
}

.stat-value {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-trend {
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trend-up {
    color: #25d366;
}

.trend-vs {
    color: #555;
}

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

.dash-chart-box {
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.chart-header {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.chart-body-lines {
    display: flex;
    gap: 12px;
    height: 120px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #555;
    font-size: 9px;
}

.chart-line-svg {
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.chart-line-svg svg path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
    transition: d 2s ease-in-out;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.donut-container {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 120px;
}

.donut-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 8px solid #25d366;
    border-top-color: #3498db;
    border-right-color: #f28c28;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0) rotate(-90deg);
    animation: popInRotate 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.6s;
}

@keyframes popInRotate {
    to {
        transform: scale(1) rotate(0deg);
    }
}

.donut-circle span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.donut-circle small {
    color: #888;
    font-size: 9px;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    font-size: 9px;
    opacity: 0;
    transform: translateX(10px);
    animation: fadeSlideIn 0.5s ease forwards;
}

.legend-item:nth-child(1) {
    animation-delay: 0.8s;
}

.legend-item:nth-child(2) {
    animation-delay: 0.9s;
}

.legend-item:nth-child(3) {
    animation-delay: 1.0s;
}

.legend-item:nth-child(4) {
    animation-delay: 1.1s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bg-green {
    background: #25d366;
}

.bg-blue {
    background: #3498db;
}

.bg-orange-main {
    background: #f28c28;
}

.bg-purple {
    background: #9b59b6;
}

.legend-item span:last-child {
    margin-left: auto;
    color: #fff;
    font-weight: 600;
}



/* Feature Bento Grid */
.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-bento-card {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s;
}

.feature-bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* Stats Bento Grid */
.stats-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.stat-bento-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-bento-card:last-child {
    border-right: none;
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #f28c28, #e67e22);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.bg-green-gradient {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.bg-blue-gradient {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.bg-yellow-gradient {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.stat-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.stat-text p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-bento {
        padding-top: 180px;
    }

    .hero-bento-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
        text-align: center;
    }

    .trust-badges-row {
        justify-content: center;
    }

    .bento-dashboard-mockup {
        width: 100%;
        transform: none;
    }

    .bento-dashboard-mockup:hover {
        transform: none;
    }

    .dash-stats-grid,
    .dash-charts-grid,
    .features-bento-grid,
    .stats-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-bento-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .dash-stats-grid,
    .dash-charts-grid,
    .features-bento-grid,
    .stats-bento-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-left {
        font-size: 42px;
    }

    .cta-group-left {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-bento {
        width: 100%;
        justify-content: center;
    }

    .trust-badges-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Section layout utilities */
.section-pad-120 {
    padding: 120px 0;
    position: relative;
}

.section-pad-100 {
    padding: 100px 0;
    position: relative;
}

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

.section-top-kicker {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-top-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.section-top-subtitle {
    color: #a0a0a0;
    font-size: 18px;
}

.section-top-subtitle.limited {
    max-width: 600px;
    margin: 0 auto;
}

.kicker-primary {
    color: var(--neon-primary);
}

.kicker-secondary {
    color: var(--neon-secondary);
}

.kicker-green {
    color: #28ca42;
}

.kicker-cyan {
    color: #00f2fe;
}

/* Hero mockup */
.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #28ca42;
}

.mockup-body {
    padding: 40px;
    display: flex;
    gap: 30px;
    text-align: left;
}

.mockup-sidebar {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 20px;
}

.sidebar-chip {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w75 {
    width: 75%;
}

.w80 {
    width: 80%;
}

.mockup-grid-shell {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 280px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.grid-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-bottom: 15px;
}

.app-icon-whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.app-icon-sms {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.app-icon-rcs {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.app-icon-ai {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.app-icon-voice {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.app-icon-contacts {
    color: #f28c28;
    background: rgba(242, 140, 40, 0.1);
}

.app-icon-banners {
    color: #fe9ca4;
    background: rgba(254, 156, 164, 0.1);
}

.app-icon-ads {
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.1);
}

.app-icon-polling {
    color: #1abc9c;
    background: rgba(26, 188, 156, 0.1);
}

.app-icon-data {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.app-icon-email {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.app-icon-software {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

/* Industries */
.industries {
    background: linear-gradient(180deg, rgba(5, 5, 17, 0) 0%, rgba(5, 5, 17, 0.8) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.industry-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.industry-desc {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.industry-health {
    background: rgba(255, 95, 87, 0.1);
    color: #ff5f57;
}

.industry-real-estate {
    background: rgba(242, 140, 40, 0.1);
    color: #f28c28;
}

.industry-it {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.industry-education {
    background: rgba(255, 189, 46, 0.1);
    color: #ffbd2e;
}

.industry-finance {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.industry-election {
    background: rgba(189, 0, 255, 0.1);
    color: #bd00ff;
}

/* Banner creator */
.banner-creator {
    overflow: hidden;
    background: radial-gradient(circle at 10% 50%, rgba(254, 156, 164, 0.05) 0%, transparent 50%);
}

.banner-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.banner-col {
    flex: 1;
    min-width: 300px;
}

.banner-badge {
    margin-bottom: 20px;
    background: rgba(254, 156, 164, 0.1);
    border-color: rgba(254, 156, 164, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #fe9ca4;
    border-radius: 50%;
}

.badge-text {
    color: #fe9ca4;
    font-weight: 600;
}

.banner-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.banner-title-accent {
    color: #fe9ca4;
}

.banner-copy {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-bullet {
    display: block;
    margin-bottom: 8px;
}

.banner-bullet i {
    color: #fe9ca4;
    width: 24px;
}

.banner-btn {
    background: #fe9ca4;
    color: #000;
    display: inline-flex;
    width: auto;
    font-weight: 700;
}

.banner-btn svg {
    margin-left: 10px;
}

.banner-card {
    padding: 20px;
    transform: rotate(2deg);
    border-color: rgba(254, 156, 164, 0.2);
}

.banner-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.banner-preview-glow {
    width: 100px;
    height: 100px;
    background: #fe9ca4;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(40px);
    position: absolute;
    top: -20px;
    right: -20px;
}

.banner-preview-main {
    z-index: 2;
    width: min(88%, 500px);
}

.campaign-banner-art {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background:
        radial-gradient(120px 120px at 92% 8%, rgba(255, 178, 85, 0.35), transparent 60%),
        radial-gradient(140px 140px at 0% 100%, rgba(0, 213, 255, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(18, 27, 45, 0.95), rgba(10, 16, 29, 0.95));
    padding: 24px 24px 18px;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.campaign-badge-top {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 154, 61, 0.18);
    border: 1px solid rgba(255, 154, 61, 0.45);
    color: #ffd7b2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.campaign-banner-title {
    margin: 0;
    color: #eef3ff;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.campaign-banner-title span {
    display: inline-block;
    background: linear-gradient(135deg, #ffb255, #ff8f36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-banner-subtitle {
    margin: 12px 0 16px;
    color: #b2bfd7;
    font-size: 14px;
    line-height: 1.45;
}

.campaign-candidate-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.campaign-candidate-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb255, #ff8f36);
    color: #081121;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255, 147, 49, 0.25);
}

.campaign-candidate-name {
    color: #f5f8ff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.campaign-candidate-role {
    color: #96a6c5;
    font-size: 13px;
    margin-top: 3px;
}

.campaign-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #c7d4eb;
    font-size: 12px;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 10px;
}

.banner-whatsapp-chip {
    position: absolute;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Download and CTA */
.pricing-home {
    background: radial-gradient(circle at 50% 50%, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
}

.download-card-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.download-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.5));
}

.download-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.download-copy {
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.download-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    min-width: 250px;
    background: #00f2fe;
    color: #000;
    font-weight: 700;
}

.download-btn svg {
    margin-right: 8px;
    vertical-align: middle;
}

.download-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 14px;
}

.version-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.version-dot {
    width: 8px;
    height: 8px;
    background: #28ca42;
    border-radius: 50%;
}

.cta-home {
    padding: 100px 0 150px;
    position: relative;
}

.cta-panel {
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(189, 0, 255, 0.3);
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.1) 0%, rgba(5, 5, 20, 0.6) 100%);
}

.cta-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-copy {
    color: #d0d0d0;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #bd00ff;
    color: #fff;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    background-color: #0c0c0e;
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open {
    border-color: #f28c28;
    box-shadow: 0 4px 20px rgba(242, 140, 40, 0.1);
}

.faq-question {
    padding: 20px 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: #f28c28;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    animation: faqFadeIn 0.3s ease forwards;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-floating-icons {
        display: none !important;
    }

    .section-top-title,
    .banner-title,
    .cta-title {
        font-size: 36px;
    }

    .mockup-body {
        padding: 24px;
        gap: 16px;
    }

    .mockup-sidebar {
        display: none;
    }

    .download-card,
    .cta-panel {
        padding: 40px 24px;
    }

    .campaign-banner-art {
        padding: 18px 18px 14px;
    }

    .campaign-banner-title {
        font-size: clamp(22px, 8vw, 30px);
    }
}