
/* ---- SHARED ---- */
.ab-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 12px;
    display: block;
}
.ab-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
}
.ab-section-heading span { color: var(--yellow); }
.ab-section-sub {
    font-size: 0.9rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0;
}


/* ============================================
   HERO
   ============================================ */
.ab-hero {
    background: var(--bg-light-green);
    padding: 200px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Pulse rings behind waveform card */
.ab-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(58,124,146,0.12);
    pointer-events: none;
    animation: abPulse 4s ease-in-out infinite;
}
.ab-pr-1 { width: 500px; height: 500px; top: -150px; right: -50px; animation-delay: 0s; }
.ab-pr-2 { width: 350px; height: 350px; top: -75px; right: 75px; animation-delay: 1s; }
.ab-pr-3 { width: 200px; height: 200px; top: 0px; right: 200px; animation-delay: 2s; }
@keyframes abPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

.ab-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
}
.ab-hero-heading span { color: var(--yellow); }
.ab-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.85;
    max-width: 490px;
}
.ab-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 14px;
}
.ab-badge i { color: var(--yellow); font-size: 0.8rem; }

/* Hero Visual */
.ab-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

/* Waveform Card */
.ab-waveform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(58,124,146,0.15);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}
.ab-wf-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.ab-wf-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ab-wf-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green);
}
.ab-wf-subtitle { font-size: 0.75rem; color: #999; margin-top: 2px; }
.ab-wf-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #e44;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.ab-rec-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e44;
    animation: abBlink 1.2s ease-in-out infinite;
}
@keyframes abBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Animated waveform bars */
.ab-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60px;
    margin-bottom: 20px;
}
.ab-bar {
    width: 4px;
    background: var(--green);
    border-radius: 4px;
    animation: abWave 1.2s ease-in-out infinite;
}
.ab-bar:nth-child(1)  { animation-delay: 0.0s; }
.ab-bar:nth-child(2)  { animation-delay: 0.05s; }
.ab-bar:nth-child(3)  { animation-delay: 0.10s; }
.ab-bar:nth-child(4)  { animation-delay: 0.15s; }
.ab-bar:nth-child(5)  { animation-delay: 0.20s; }
.ab-bar:nth-child(6)  { animation-delay: 0.25s; }
.ab-bar:nth-child(7)  { animation-delay: 0.30s; }
.ab-bar:nth-child(8)  { animation-delay: 0.35s; }
.ab-bar:nth-child(9)  { animation-delay: 0.40s; }
.ab-bar:nth-child(10) { animation-delay: 0.45s; }
.ab-bar:nth-child(11) { animation-delay: 0.50s; }
.ab-bar:nth-child(12) { animation-delay: 0.45s; }
.ab-bar:nth-child(13) { animation-delay: 0.40s; }
.ab-bar:nth-child(14) { animation-delay: 0.35s; }
.ab-bar:nth-child(15) { animation-delay: 0.30s; }
.ab-bar:nth-child(16) { animation-delay: 0.25s; }
.ab-bar:nth-child(17) { animation-delay: 0.20s; }
.ab-bar:nth-child(18) { animation-delay: 0.15s; }
.ab-bar:nth-child(19) { animation-delay: 0.10s; }
.ab-bar:nth-child(20) { animation-delay: 0.05s; }
.ab-bar:nth-child(n+21) { animation-delay: 0.10s; }
@keyframes abWave {
    0%, 100% { height: 8px; }
    50% { height: 48px; }
}
.ab-bar:nth-child(odd)  { background: var(--green); }
.ab-bar:nth-child(even) { background: var(--yellow); opacity: 0.7; }

.ab-wf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ab-wf-time { font-size: 0.75rem; color: #aaa; font-weight: 500; }
.ab-wf-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #aaa;
    font-size: 0.85rem;
}
.ab-play-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* Floating stat cards */
.ab-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(58,124,146,0.15);
    z-index: 3;
    white-space: nowrap;
    animation: abCardFloat 3.5s ease-in-out infinite;
}
.ab-fc-1 { left: -20px; top: 30%; animation-delay: 0s; }
.ab-fc-2 { right: -20px; top: 20%; animation-delay: 0.7s; }
.ab-fc-3 { right: 10px; bottom: 0; animation-delay: 1.4s; }
@keyframes abCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ab-fc-icon {
    width: 34px; height: 34px;
    background: var(--bg-light-yellow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow); font-size: 0.85rem; flex-shrink: 0;
}
.ab-fc-num {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    color: var(--green); line-height: 1;
}
.ab-fc-lbl { font-size: 0.66rem; color: #999; font-weight: 500; margin-top: 2px; }

/* ============================================
   PLATFORMS STRIP
   ============================================ */
.ab-platforms {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ab-platforms-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 18px;
}
.ab-platforms-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
}
.ab-platform-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    opacity: 0.6;
    transition: opacity 0.25s;
}
.ab-platform-logo:hover { opacity: 1; }
.ab-platform-logo i { font-size: 1.1rem; }


/* ============================================
   STATS BAR
   ============================================ */
.ab-stats-bar {
    background: var(--green);
    padding: 50px 0;
}
.ab-stat-box { text-align: center; }
.ab-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.ab-stat-num span { color: var(--yellow); }
.ab-stat-lbl {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}


/* ============================================
   SERVICES
   ============================================ */
.ab-services-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.ab-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ab-service-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(255,196,12,0.12);
    transform: translateY(-5px);
}
.ab-service-featured {
    background: var(--green);
    border-color: var(--green);
}
.ab-service-featured:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(58,124,146,0.2);
}
.ab-service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--yellow);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}
.ab-service-icon {
    width: 52px; height: 52px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.ab-service-featured .ab-service-icon {
    background: rgba(255,196,12,0.15);
    color: var(--yellow);
}
.ab-service-card:hover .ab-service-icon {
    background: var(--yellow);
    color: var(--white);
}
.ab-service-featured:hover .ab-service-icon {
    background: var(--yellow);
    color: var(--white);
}
.ab-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}
.ab-service-featured .ab-service-title { color: var(--white); }
.ab-service-desc {
    font-size: 0.85rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.85;
}
.ab-service-featured .ab-service-desc { color: rgba(255,255,255,0.72); opacity: 1; }
.ab-service-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.ab-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-paragraph);
}
.ab-service-featured .ab-service-list li { color: rgba(255,255,255,0.8); }
.ab-service-list li i { color: var(--yellow); font-size: 0.7rem; flex-shrink: 0; }


/* ============================================
   PROCESS
   ============================================ */
.ab-process-section {
    padding: 90px 0;
    background: var(--white);
}
.ab-process-track { position: relative; }
.ab-process-card {
    background: var(--bg-light-green);
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.ab-process-card:hover {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(58,124,146,0.1);
    transform: translateY(-5px);
}
.ab-process-featured {
    background: var(--green);
    border-color: var(--green);
}
.ab-process-featured:hover {
    border-color: var(--yellow);
}
.ab-process-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(58,124,146,0.12);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
}
.ab-process-featured .ab-process-num { color: rgba(255,255,255,0.1); }
.ab-process-icon {
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(58,124,146,0.12);
    transition: all 0.3s ease;
}
.ab-process-featured .ab-process-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    box-shadow: none;
}
.ab-process-card:hover .ab-process-icon {
    background: var(--yellow);
    color: var(--white);
}
.ab-process-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}
.ab-process-featured .ab-process-title { color: var(--white); }
.ab-process-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}
.ab-process-featured .ab-process-desc { color: rgba(255,255,255,0.7); opacity: 1; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.ab-why-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.ab-why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.ab-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ab-why-icon {
    width: 46px; height: 46px;
    background: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.ab-why-item:hover .ab-why-icon {
    background: var(--yellow);
    color: var(--white);
}
.ab-why-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
}
.ab-why-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}

/* Testimonial stack */
.ab-testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.ab-testi-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 26px;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}
.ab-testi-card:hover {
    box-shadow: 0 10px 30px rgba(58,124,146,0.08);
    transform: translateY(-3px);
}
.ab-testi-featured {
    background: var(--green);
    border-color: var(--green);
}
.ab-testi-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.ab-testi-text {
    font-size: 0.86rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
    opacity: 0.85;
}
.ab-testi-featured .ab-testi-text { color: rgba(255,255,255,0.8); opacity: 1; }
.ab-testi-author { display: flex; align-items: center; gap: 12px; }
.ab-testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ab-testi-name { font-weight: 600; font-size: 0.86rem; color: var(--green); line-height: 1; }
.ab-testi-featured .ab-testi-name { color: var(--white); }
.ab-testi-role { font-size: 0.74rem; color: #999; margin-top: 3px; }
.ab-testi-featured .ab-testi-role { color: rgba(255,255,255,0.5); }


/* ============================================
   PRICING
   ============================================ */
.ab-pricing-section {
    padding: 90px 0;
    background: var(--white);
}
.ab-price-card {
    background: var(--bg-light-green);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ab-price-card:hover {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(58,124,146,0.12);
    transform: translateY(-5px);
}
.ab-price-featured {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-8px);
}
.ab-price-featured:hover {
    border-color: var(--yellow);
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(58,124,146,0.25);
}
.ab-price-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
}
.ab-price-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 12px;
    margin-top: 14px;
}
.ab-price-featured .ab-price-tag { color: rgba(255,255,255,0.55); }
.ab-price-val {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}
.ab-price-featured .ab-price-val { color: var(--white); }
.ab-price-val span { font-size: 2.8rem; }
.ab-price-note {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 24px;
}
.ab-price-featured .ab-price-note { color: rgba(255,255,255,0.45); }
.ab-price-list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.ab-price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-paragraph);
    font-weight: 500;
}
.ab-price-featured .ab-price-list li { color: rgba(255,255,255,0.8); }
.ab-price-list li i { font-size: 0.7rem; color: var(--yellow); flex-shrink: 0; }
.ab-price-list li i.fa-xmark { color: rgba(0,0,0,0.25); }
.ab-price-featured .ab-price-list li i.fa-xmark { color: rgba(255,255,255,0.2); }
.ab-price-list-off { opacity: 0.45; }
.ab-pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.86rem;
    color: var(--text-paragraph);
    opacity: 0.7;
}
.ab-pricing-note a { color: var(--green); font-weight: 600; text-decoration: underline; }
.ab-pricing-note i { color: var(--yellow); margin-right: 4px; }


/* ============================================
   FAQ
   ============================================ */
.ab-faq-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.ab-accordion { display: flex; flex-direction: column; gap: 14px; }
.ab-acc-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--white);
}
.ab-acc-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    padding: 18px 22px;
    box-shadow: none !important;
}
.ab-acc-btn:not(.collapsed) {
    background: var(--green);
    color: var(--white);
}
.ab-acc-btn::after {
    filter: none;
}
.ab-acc-btn:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.ab-acc-body {
    font-size: 0.87rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    padding: 16px 22px 20px;
    opacity: 0.85;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .ab-hero { padding: 120px 0 60px; }
    .ab-fc-1, .ab-fc-2, .ab-fc-3 { display: none; }
    .ab-price-featured { transform: none; }
    .ab-price-featured:hover { transform: translateY(-5px); }
}
@media (max-width: 767.98px) {
    .ab-services-section,
    .ab-process-section,
    .ab-why-section,
    .ab-pricing-section,
    .ab-faq-section { padding: 60px 0; }
    .ab-stats-bar { padding: 40px 0; }
    .ab-waveform-card { max-width: 100%; }
    .ab-platforms-row { gap: 10px 20px; }
}