/* =========================================================
   GLOBAL RESET
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #111827;
}

/* =========================================================
   ROOT
========================================================= */
:root {
    --yellow-primary: #facc15;
    --yellow-hover: #eab308;
    --dark-bg: #080808;
    --text-white: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.84);
    --text-muted: rgba(255, 255, 255, 0.72);
    --card-bg: #ffffff;
    --card-text: #1f2937;
    --card-muted: #6b7280;
    --card-border: #f1d04a;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   CONTAINER
========================================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
    position: relative;
    min-height: 66vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-bg);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.03);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.80) 28%,
            rgba(0, 0, 0, 0.66) 52%,
            rgba(0, 0, 0, 0.50) 74%,
            rgba(0, 0, 0, 0.40) 100%
        );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    z-index: 2;
    pointer-events: none;
}

.hero-glow-1 {
    width: 210px;
    height: 210px;
    background: rgba(250, 204, 21, 0.10);
    top: 7%;
    right: 10%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 160px;
    height: 160px;
    background: rgba(250, 204, 21, 0.08);
    bottom: 8%;
    left: 8%;
    animation: pulseGlow 7s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-grid {
    min-height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0 38px;
}

.hero-content-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin-top: -6px;
    animation: fadeUp 0.9s ease forwards;
}

/* =========================================================
   TITLE / TEXT
========================================================= */
.hero-title {
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.hero-title-main,
.hero-title-name {
    display: block;
    font-weight: 900;
    line-height: 1;
}

.hero-title-main {
    font-size: clamp(1.95rem, 3.5vw, 3.55rem);
    color: var(--text-white);
}

.hero-title-name {
    font-size: clamp(1.75rem, 3.1vw, 3rem);
    color: var(--yellow-primary);
    text-shadow: 0 0 18px rgba(250, 204, 21, 0.10);
}

.hero-title-user,
.hero-title-guest {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 0.94rem;
    line-height: 1.72;
    color: var(--text-soft);
}

/* =========================================================
   FEATURES
========================================================= */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 16px 9px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(250, 204, 21, 0.40);
    background: rgba(250, 204, 21, 0.08);
}

.hero-feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-primary);
    color: #111111;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* =========================================================
   BUTTONS
========================================================= */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn i {
    font-size: 0.9rem;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 130%;
}

.hero-btn-primary {
    background: var(--yellow-primary);
    color: #111111;
    border: 2px solid var(--yellow-primary);
    box-shadow: 0 14px 28px rgba(250, 204, 21, 0.16);
}

.hero-btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: rgba(10, 10, 10, 0.30);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow-primary);
    color: var(--yellow-primary);
    transform: translateY(-2px);
}

/* =========================================================
   HERO CARDS SECTION
========================================================= */
.hero-cards-section {
    position: relative;
    margin-top: -78px;
    z-index: 5;
    padding-bottom: 28px;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.hero-info-card {
    background: var(--card-bg);
    border-radius: 22px;
    border-top: 4px solid var(--card-border);
    padding: 28px 26px;
    box-shadow: var(--shadow-soft);
    min-height: 220px;
}

.hero-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.16);
    color: #c79300;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.hero-info-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--card-text);
    margin-bottom: 14px;
}

.hero-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--card-muted);
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.07);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
    .hero-left {
        max-width: 800px;
    }

    .hero-title-main {
        font-size: clamp(1.8rem, 3.2vw, 3.15rem);
    }

    .hero-title-name {
        font-size: clamp(1.65rem, 2.8vw, 2.7rem);
    }

    .hero-cards-grid {
        gap: 22px;
    }

    .hero-info-card h3 {
        font-size: 1.28rem;
    }
}

@media (max-width: 992px) {
    .hero-section,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding: 68px 0 34px;
    }

    .hero-left {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-title-main {
        font-size: 2.35rem;
    }

    .hero-title-name {
        font-size: 2rem;
    }

    .hero-description {
        max-width: 650px;
        font-size: 0.88rem;
    }

    .hero-cards-section {
        margin-top: -56px;
    }

    .hero-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .hero-info-card {
        min-height: 210px;
    }

    .hero-info-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-grid {
        padding: 96px 0 26px;
    }

    .hero-left {
        max-width: 520px;
        text-align: center;
    }

    .hero-title {
        margin-bottom: 14px;
    }

    .hero-title-main {
        font-size: 1.95rem;
        line-height: 1.04;
    }

    .hero-title-name {
        font-size: 1.6rem;
        line-height: 1.04;
    }

    .hero-description {
        font-size: 0.80rem;
        line-height: 1.58;
        margin-bottom: 18px;
        max-width: 420px;
    }

    .hero-features {
        display: none;
    }

    .hero-btn {
        min-width: 155px;
        padding: 12px 18px;
        font-size: 0.84rem;
    }

    .hero-cards-section {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        padding: 122px 0 22px;
    }

    .hero-left {
        max-width: 360px;
        text-align: center;
    }

    .hero-title-user,
    .hero-title-guest {
        max-width: 100%;
    }

    .hero-title-main {
        font-size: 1.55rem;
        line-height: 1.06;
    }

    .hero-title-name {
        font-size: 1.18rem;
        line-height: 1.08;
    }

    .hero-description {
        font-size: 0.74rem;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .hero-features {
        display: none;
    }

    .hero-actions {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .hero-btn {
        flex: 1 1 0;
        min-width: 0;
        width: calc(50% - 5px);
        padding: 11px 10px;
        font-size: 0.78rem;
    }

    .hero-cards-section {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-grid {
        padding: 132px 0 18px;
    }

    .hero-left {
        max-width: 300px;
    }

    .hero-title-main {
        font-size: 1.38rem;
    }

    .hero-title-name {
        font-size: 1.06rem;
    }

    .hero-description {
        font-size: 0.70rem;
    }

    .hero-btn {
        font-size: 0.74rem;
        padding: 10px 8px;
        gap: 6px;
    }

    .hero-btn i {
        font-size: 0.76rem;
    }

    .hero-cards-section {
        display: none;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-glow,
    .hero-left,
    .hero-feature,
    .hero-btn {
        animation: none !important;
        transition: none !important;
    }
}



/* =========================================================
   TRUST CARDS SECTION
========================================================= */
.trust-section {
    position: relative;
    margin-top: -90px;
    z-index: 5;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 1200px;
}

/* Card */
.trust-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    padding: 1.7rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    border: 1px solid rgba(250, 204, 21, 0.10);
    opacity: 0;
    transform: translateY(40px);
    will-change: transform;
}

/* Reveal state */
.trust-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* top accent */
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #facc15, #eab308, rgba(250, 204, 21, 0.35));
}

/* glow */
.trust-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    border-color: rgba(250, 204, 21, 0.28);
    background: #ffffff;
}

.trust-card:hover::after {
    opacity: 1;
}

/* Icon */
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(250, 204, 21, 0.15);
    color: #eab308;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    animation: trustFloat 3.5s ease-in-out infinite;
}

.trust-card:hover .trust-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 26px rgba(250, 204, 21, 0.22);
    background: rgba(250, 204, 21, 0.22);
}

.trust-icon i {
    position: relative;
    z-index: 2;
}

/* Title */
.trust-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #111827;
    position: relative;
    z-index: 2;
}

/* Text */
.trust-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.55;
    position: relative;
    z-index: 2;
}

/* Ripple */
.trust-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: trustRipple 0.65s linear;
    background: rgba(250, 204, 21, 0.25);
    pointer-events: none;
    z-index: 1;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes trustFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes trustRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
    .trust-section {
        margin-top: -70px;
    }

    .trust-container {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        margin-top: -55px;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .trust-card {
        text-align: center;
        padding: 1.35rem 1.2rem;
    }

    .trust-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .trust-section {
        margin-top: -40px;
    }

    .trust-card {
        padding: 1.2rem 1rem;
    }

    .trust-card h4 {
        font-size: 0.94rem;
    }

    .trust-card p {
        font-size: 0.82rem;
    }
}

/* =========================================================
   DATA CATEGORIES SECTION
========================================================= */

.category-section {
    padding: 4rem 0 5rem;
    background: #f9fafb;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.95rem;
    color: #6b7280;
}

/* =========================================================
   GRID LAYOUT
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* =========================================================
   CATEGORY CARD
========================================================= */

.category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #111827;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    user-select: none;
}

.category-card.clickable-card {
    cursor: pointer;
}

.category-card:hover:not(.disabled) {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.category-card.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

/* =========================================================
   FULL WIDTH IMAGE
========================================================= */

.category-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* =========================================================
   CARD BODY
========================================================= */

.category-body {
    padding: 1.5rem 1.3rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: auto;
    line-height: 1.4;
}

/* =========================================================
   ACTIONS
========================================================= */

.category-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.3rem;
}

/* Center when out of stock */
.category-actions.centered {
    justify-content: center;
}

/* =========================================================
   STOCK BADGES
========================================================= */

.stock-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
}

.in-stock {
    background: #dcfce7;
    color: #15803d;
}

.out-stock {
    background: #fee2e2;
    color: #b91c1c;
}

/* =========================================================
   BUY BUTTON
========================================================= */

.btn-buy {
    background: #facc15;
    color: #111827;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.btn-buy:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Tablets → 2 per row */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   PHONES → COMPACT MODE (2 per row)
========================================================= */

@media (max-width: 576px) {

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

    /* Reduce card size */
    .category-card {
        border-radius: 16px;
    }

    /* Smaller image */
    .category-image {
        height: 120px;   /* reduced */
    }

    /* Reduce body padding */
    .category-body {
        padding: 0.8rem 0.8rem 0.9rem;
    }

    /* Smaller title + prevent breaking */
    .category-card h4 {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    /* Smaller section title */
    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Smaller badges */
    .stock-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }

    /* Smaller button */
    .btn-buy {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        width: 100%;
        text-align: center;
    }

    /* Hide ONLY green In Stock */
    .category-actions .stock-badge.in-stock {
        display: none;
    }

    /* Keep Out of Stock visible */
    .category-actions .stock-badge.out-stock {
        display: inline-flex;
    }

    /* Center content */
    .category-actions {
        justify-content: center;
        margin-top: 0.8rem;
    }
}

/* =========================================================
   VERY SMALL PHONES → ULTRA COMPACT
========================================================= */

@media (max-width: 400px) {

    .category-image {
        height: 100px;
    }

    .category-body {
        padding: 0.6rem 0.6rem 0.7rem;
    }

    .category-card h4 {
        font-size: 0.7rem;
    }

    .btn-buy {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Extremely small devices → 1 per row */
@media (max-width: 360px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */
.why-section {
    /* background: linear-gradient(180deg, #ffffff, #fefce8); */
}

/* Header */
.why-section .section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.why-section .section-header h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.why-section .section-header p {
    font-size: 0.95rem;
    color: #6b7280;
}

/* =========================================================
   GRID
========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* =========================================================
   CARD
========================================================= */
.why-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    text-align: center;

    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    transition: transform .4s ease, box-shadow .4s ease;

    border-top: 3px solid #facc15; /* yellow accent */

    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: revealCard .9s cubic-bezier(.22,1,.36,1) forwards;
    will-change: transform, opacity;
}

/* SEQUENCE */
.why-card:nth-child(1) { animation-delay: 0.15s; }
.why-card:nth-child(2) { animation-delay: 0.35s; }
.why-card:nth-child(3) { animation-delay: 0.55s; }
.why-card:nth-child(4) { animation-delay: 0.75s; }

/* Hover */
.why-card:hover {
    transform: translateY(-12px) scale(1);
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

/* =========================================================
   ICON
========================================================= */
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.1rem;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(250,204,21,0.20),
        rgba(250,204,21,0.10)
    );

    color: #eab308;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    transition: transform .4s ease, box-shadow .4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 10px 25px rgba(250,204,21,0.35);
}

/* =========================================================
   TEXT
========================================================= */
.why-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: #111827;
}

.why-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* =========================================================
   KEYFRAMES
========================================================= */
@keyframes revealCard {
    0% {
        opacity: 0;
        transform: translateY(45px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 4rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-section .section-header h2 {
        font-size: 1.6rem;
    }
}




/* =================================================
   DASHBOARD STATUS / SUPPORT STRIP
================================================= */

.dashboard-status-strip {
    padding: 10px 20px 12px;
    background: #f8fafc;
    margin: 0;
}

.dashboard-status-card {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #4ade80 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 14px 35px rgba(34, 197, 94, 0.22);
    position: relative;
    overflow: hidden;
}

.dashboard-status-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.dashboard-status-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.dashboard-status-left,
.dashboard-status-right {
    position: relative;
    z-index: 2;
}

.dashboard-status-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.dashboard-status-text {
    width: 100%;
}

.dashboard-status-text h4 {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
}

.dashboard-status-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.96);
    line-height: 1.6;
    max-width: 560px;
}

.dashboard-status-text p strong {
    color: #ffffff;
}

.dashboard-status-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
}

.support-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.support-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 130px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.support-btn i {
    font-size: 15px;
    line-height: 1;
}

.call-btn {
    background: #ffffff;
    color: #15803d;
    border-color: #ffffff;
}

.call-btn:hover {
    background: #f0fdf4;
    color: #166534;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255,255,255,0.22);
}

.whatsapp-btn {
    background: #128c7e;
    color: #ffffff;
    border-color: rgba(255,255,255,0.22);
}

.whatsapp-btn:hover {
    background: #0f766e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* =================================================
   LARGE DEVICES
================================================= */

@media (max-width: 1199px) {
    .dashboard-status-strip {
        padding: 10px 18px 12px;
    }

    .dashboard-status-card {
        padding: 18px 22px;
        gap: 16px;
    }

    .dashboard-status-text h4 {
        font-size: 26px;
    }

    .dashboard-status-text p {
        font-size: 14px;
    }

    .dashboard-status-right {
        min-width: 220px;
    }
}

/* =================================================
   TABLET
================================================= */

@media (max-width: 991px) {
    .dashboard-status-strip {
        padding: 8px 16px 10px;
    }

    .dashboard-status-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 16px;
        border-radius: 18px;
    }

    .dashboard-status-left {
        width: 100%;
    }

    .dashboard-status-text h4 {
        font-size: 24px;
    }

    .dashboard-status-text p {
        font-size: 14px;
        max-width: 100%;
    }

    .dashboard-status-right {
        width: 100%;
        min-width: 100%;
        align-items: flex-start;
        gap: 10px;
    }

    .support-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .support-btn {
        min-width: 140px;
    }
}

/* =================================================
   MOBILE
================================================= */

@media (max-width: 767px) {
    .dashboard-status-strip {
        padding: 6px 14px 8px;
    }

    .dashboard-status-card {
        padding: 16px;
        gap: 14px;
        border-radius: 16px;
    }

    .dashboard-status-text h4 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .dashboard-status-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    .support-label {
        font-size: 11px;
        letter-spacing: 0.6px;
    }

    .support-actions {
        width: 100%;
        gap: 10px;
    }

    .support-btn {
        width: 100%;
        min-width: 100%;
        padding: 13px 16px;
        font-size: 14px;
    }
}

/* =================================================
   SMALL MOBILE
================================================= */

@media (max-width: 480px) {
    .dashboard-status-strip {
        padding: 4px 12px 6px;
    }

    .dashboard-status-card {
        padding: 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .dashboard-status-text h4 {
        font-size: 18px;
    }

    .dashboard-status-text p {
        font-size: 12.5px;
    }

    .support-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .support-btn i {
        font-size: 14px;
    }
}

/* =================================================
   EXTRA SMALL DEVICES
================================================= */

@media (max-width: 360px) {
    .dashboard-status-strip {
        padding: 4px 10px 6px;
    }

    .dashboard-status-card {
        padding: 12px;
    }

    .dashboard-status-text h4 {
        font-size: 17px;
    }

    .dashboard-status-text p {
        font-size: 12px;
    }

    .support-actions {
        gap: 8px;
    }

    .support-btn {
        padding: 11px 12px;
        font-size: 12.5px;
    }
}