/* ============================================
   STRATEGY SECTION
   ============================================ */
.strategy-section {
    position: relative;
    overflow: hidden;
    padding: 64px 16px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff, #f8fafc);
}

@media (min-width: 640px) {
    .strategy-section {
        padding: 96px 24px;
    }
}

@media (min-width: 1024px) {
    .strategy-section {
        padding: 128px 24px;
    }
}

/* Background blobs */
.bg-decorations {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
}

.blob-violet {
    top: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: rgba(237, 233, 254, 0.5);
}

.blob-orange {
    bottom: -160px;
    left: -160px;
    width: 384px;
    height: 384px;
    background: rgba(255, 237, 213, 0.5);
}

.blob-center {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: rgba(238, 242, 255, 0.3);
}

/* Container */
.strategy-container {
    position: relative;
    max-width: 1152px;
    margin: 0 auto;
}

/* Badge */
.badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid #e0e7ff;
    background: #eef2ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4338ca;
}

.badge svg {
    width: 14px;
    height: 14px;
}

/* Header */
.strategy-header {
    text-align: center;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s ease both;
}

@media (min-width: 640px) {
    .strategy-header {
        margin-bottom: 80px;
    }
}

.strategy-header h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .strategy-header h2 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .strategy-header h2 {
        font-size: 48px;
    }
}

.strategy-header h2 .gradient-text {
    background: linear-gradient(to right, #7c3aed, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-header p {
    max-width: 672px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

@media (min-width: 640px) {
    .strategy-header p {
        font-size: 18px;
    }
}

.strategy-header p strong {
    font-weight: 600;
    color: #334155;
}

/* Strategy Toggle */
.toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
    animation: fadeInUp 0.5s ease 0.2s both;
}

@media (min-width: 640px) {
    .toggle-wrap {
        margin-bottom: 80px;
    }
}

.toggle {
    position: relative;
    display: inline-flex;
    border-radius: 16px;
    background: #f1f5f9;
    padding: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.toggle-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-bg.vip {
    left: 6px;
    right: 50%;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.toggle-bg.zero {
    left: 50%;
    right: 6px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.toggle-btn {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .toggle-btn {
        padding: 12px 32px;
        font-size: 16px;
    }
}

.toggle-btn svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .toggle-btn svg {
        width: 20px;
        height: 20px;
    }
}

.toggle-btn.active {
    color: #ffffff;
}

.toggle-btn.inactive {
    color: #64748b;
}

.toggle-btn.inactive:hover {
    color: #334155;
}

/* Strategy Content */
.strategy-content {
    animation: contentSwitch 0.45s ease both;
}

.strategy-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .strategy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.strategy-info {
    order: 2;
}

@media (min-width: 1024px) {
    .strategy-info {
        order: 1;
    }
}

.strategy-chat-col {
    order: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .strategy-chat-col {
        order: 2;
    }
}

/* Strategy Card */
.strategy-card {
    border-radius: 24px;
    padding: 32px;
    color: #ffffff;
    border: 1px solid;
}

@media (min-width: 640px) {
    .strategy-card {
        padding: 40px;
    }
}

.strategy-card.vip {
    background: linear-gradient(to bottom right, #7c3aed, #4338ca);
    border-color: #ede9fe;
    box-shadow: 0 20px 25px -5px rgba(196, 181, 253, 0.3);
}

.strategy-card.zero {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
    border-color: #ffedd5;
    box-shadow: 0 20px 25px -5px rgba(253, 186, 116, 0.3);
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff !important;
}

.strategy-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.strategy-badge svg {
    width: 16px;
    height: 16px;
}

.strategy-badge.vip svg {
    color: #fcd34d;
}

.strategy-badge.zero svg {
    color: #fde047;
}

.strategy-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .strategy-card h3 {
        font-size: 30px;
    }
}

.strategy-card .description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .strategy-card .description {
        font-size: 17px;
    }
}

.strategy-card.vip .description {
    color: #ffffff;
}

.strategy-card.zero .description {
    color: #ffffff;
}

.strategy-card .description .highlight-text {
    font-weight: 700;
}

.strategy-card.vip .highlight-text {
    color: #fbbf24;
}

.strategy-card.zero .highlight-text {
    color: #fde047;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: featureSlideIn 0.4s ease both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-icon {
    margin-top: 2px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .feature-text {
        font-size: 15px;
    }
}

/* Objective Box */
.objective-box {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.objective-box svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.objective-box.vip svg {
    color: #fcd34d;
}

.objective-box.zero svg {
    color: #fde047;
}

.objective-box span {
    font-size: 14px;
    font-weight: 500;
}

.objective-box.vip span {
    color: #ffffff;
}

.objective-box.zero span {
    color: #ffffff;
}

.objective-box span .highlight-text {
    color: #fbbf24;
}

.objective-box.zero span .highlight-text {
    color: #fde047;
}

/* WhatsApp Chat */
.chat-wrapper {
    position: relative;
}

.chat-glow {
    position: absolute;
    inset: -16px;
    border-radius: 24px;
    opacity: 0.3;
    filter: blur(32px);
}

.chat-glow.vip {
    background: linear-gradient(to bottom right, #ddd6fe, #c7d2fe);
}

.chat-glow.zero {
    background: linear-gradient(to bottom right, #fed7aa, #fecaca);
}

.chat-inner {
    position: relative;
}

.live-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.live-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
}

.chat-phone {
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.wa-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Force left alignment */
    gap: 12px;
    background: #075E54;
    padding: 12px 16px;
}

.wa-header>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text left */
}

.wa-header .wa-avatar {
    margin: 0;
    /* Prevent auto margins */
}

.wa-header .wa-back svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.wa-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    /* Force circle */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

/* Specific fix for text container */
.wa-header>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.wa-contact-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.wa-online {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.2;
}

.wa-body {
    background-color: #ECE5DD;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bfb0' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 12px 12px;
    height: 600px;
    /* Increased height significantly */
    overflow-y: hidden;
    /* Remove scroll */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-date-chip {
    display: flex;
    justify-content: center;
}

.wa-date-chip span {
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    color: #6b7280;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wa-msg-row {
    display: flex;
    animation: msgPop 0.3s ease both;
}

.wa-msg-row:nth-child(2) {
    animation-delay: 0.4s;
}

.wa-msg-row:nth-child(3) {
    animation-delay: 0.7s;
}

.wa-msg-row:nth-child(4) {
    animation-delay: 1.0s;
}

.wa-msg-row.ai {
    justify-content: flex-start;
}

.wa-msg-row.user {
    justify-content: flex-end;
}

.wa-bubble {
    max-width: 85%;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.wa-bubble.ai {
    background: #ffffff;
    border-top-left-radius: 0;
}

.wa-bubble.user {
    background: #DCF8C6;
    border-top-right-radius: 0;
}

.wa-sender {
    font-size: 11px;
    font-weight: 600;
    color: #075E54;
    margin-bottom: 0px;
}

.wa-text {
    font-size: 13px;
    line-height: 1.6;
    color: #1f2937;
    white-space: pre-line;
}

.wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 4px;
}

.wa-time {
    font-size: 10px;
    color: #9ca3af;
}

.wa-check svg {
    width: 14px;
    height: 14px;
}

.wa-check.read svg {
    color: #53BDEB;
}

.wa-check.unread svg {
    color: #9ca3af;
}

.wa-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0F0F0;
    padding: 8px 12px;
}

.wa-input-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #ffffff;
}

.wa-input-field span {
    font-size: 13px;
    color: #9ca3af;
}

.wa-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #075E54;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-send-btn svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.arrow-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.arrow-hint svg {
    width: 16px;
    height: 16px;
}

/* Comparison Strip */
.comparison-strip {
    margin-top: 64px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

@media (min-width: 640px) {
    .comparison-strip {
        margin-top: 96px;
    }
}

.comparison-card {
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(241, 245, 249, 1);
}

@media (min-width: 640px) {
    .comparison-card {
        padding: 32px;
    }
}

.comparison-title {
    text-align: center;
    margin-bottom: 24px;
}

.comparison-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

@media (min-width: 640px) {
    .comparison-title h4 {
        font-size: 20px;
    }
}

.comparison-title .gradient-text-2 {
    background: linear-gradient(to right, #7c3aed, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Summary Card */
.summary-card {
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 20px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.summary-card:hover {
    border-color: #e2e8f0;
}

.summary-card.vip-active {
    border-color: #c4b5fd;
    background: rgba(245, 243, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(221, 214, 254, 0.5);
}

.summary-card.zero-active {
    border-color: #fdba74;
    background: rgba(255, 247, 237, 0.5);
    box-shadow: 0 4px 6px -1px rgba(253, 186, 116, 0.5);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.summary-icon svg {
    width: 20px;
    height: 20px;
}

.summary-icon.inactive {
    background: #e2e8f0;
    color: #64748b;
}

.summary-icon.vip-active {
    background: #7c3aed;
    color: #ffffff;
}

.summary-icon.zero-active {
    background: #f97316;
    color: #ffffff;
}

.summary-name {
    font-weight: 700;
    color: #1e293b;
}

.summary-sub {
    font-size: 12px;
    color: #94a3b8;
}

.summary-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.summary-desc strong {
    color: #334155;
}

/* Footer Note */
.footer-note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    animation: fadeIn 0.6s ease 0.8s both;
}

/* Additional Animations from Component */
@keyframes msgPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contentSwitch {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}