:root {
    --bg: #f6f8ff;
    --ink: #121a2f;
    --muted: #6d7488;
    --brand: #2B4B80;
    --brand-2: #4155AE;
    --accent: #FF5C97;
    --dark: #151b33;
    --border: rgba(43, 75, 128, 0.13);
    --soft: rgba(65, 85, 174, 0.10);
    --shadow: 0 26px 80px rgba(43, 75, 128, 0.15);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at 85% 5%, rgba(255, 92, 151, 0.20), transparent 30rem),
        radial-gradient(circle at 5% 25%, rgba(65, 85, 174, 0.14), transparent 26rem),
        var(--bg);
    color: var(--ink);
    line-height: 1.8;
}

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

img {
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

/* Header */
.mkan-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 255, 0.96);
    border-bottom: 1px solid rgba(43, 75, 128, 0.09);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.brand-with-logo {
    display: inline-flex;
    align-items: center;
}

.brand-with-logo {
    max-width: 130px;
    overflow: hidden;
}

.makan-logo {
    display: block;
    width: 115px;
    max-width: 115px;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    width: 105px;
    max-width: 105px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--brand-2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghost-link {
    color: var(--muted);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 850;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-sm {
    min-height: 42px;
    padding-inline: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2) 55%, var(--accent));
    color: white;
    box-shadow: 0 18px 42px rgba(65, 85, 174, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    border-color: var(--border);
}

.btn.light,
.btn-primary.light {
    background: white;
    color: var(--brand);
    box-shadow: none;
}

.full {
    width: 100%;
}

/* Hero */
.hero {
    padding: 88px 0 72px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 54px;
}

.pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(65, 85, 174, 0.11), rgba(255, 92, 151, 0.11));
    color: var(--brand);
    font-size: .88rem;
    font-weight: 900;
}

.pill-light {
    background: rgba(255,255,255,.15);
    color: white;
}

.hero h1 {
    margin: 22px 0 16px;
    max-width: 780px;
    font-size: clamp(2.55rem, 5.7vw, 5.4rem);
    line-height: 1.12;
    letter-spacing: -0.065em;
}

.lead {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 1.14rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-visual {
    position: relative;
    min-height: 630px;
    display: grid;
    place-items: center;
}

/* Phone Slider */
.phone-card {
    position: relative;
    z-index: 2;
    width: min(390px, 100%);
    border-radius: 42px;
    background: #10162b;
    box-shadow: var(--shadow);
}

.phone-card-preview {
    padding: 12px 12px 14px;
    overflow: hidden;
}

.phone-top {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.72);
    font-size: .82rem;
    position: relative;
    margin-bottom: 10px;
}

.phone-top span {
    position: absolute;
    top: 13px;
    width: 86px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.phone-app-preview {
    position: relative;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: white;
}

.phone-app-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-app-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;
    transition: opacity .8s ease, transform 1.4s ease;
}

.phone-app-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.phone-app-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.phone-slider-dots {
    position: absolute;
    right: 50%;
    bottom: 16px;
    transform: translateX(50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 21, 41, 0.34);
}

.phone-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.42);
    cursor: pointer;
}

.phone-slider-dot.is-active {
    background: white;
    transform: scale(1.15);
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 160px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 20px 50px rgba(43, 75, 128, .14);
}

.floating-card span,
.floating-card small {
    display: block;
    color: var(--muted);
}

.floating-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1.2;
}

.card-orders {
    right: -5px;
    top: 90px;
}

.card-rating {
    left: -5px;
    bottom: 110px;
}

/* Sections */
.section {
    padding: 86px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2,
.split-grid h2,
.final-box h2,
.table-pay-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.section-heading p,
.split-grid p,
.final-box p,
.table-pay-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    padding: 24px;
    min-height: 230px;
    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(43, 75, 128, 0.06);
}

.feature-large {
    grid-column: span 2;
    background:
        radial-gradient(circle at top left, rgba(255, 92, 151, .16), transparent 18rem),
        white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--soft);
    font-size: 1.35rem;
}

.feature-card h3,
.step-card h3,
.price-card h3 {
    margin: 18px 0 8px;
    font-size: 1.18rem;
}

.feature-card p,
.step-card p,
.price-card p {
    margin: 0;
    color: var(--muted);
}

/* Dark Section */
.dark-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 92, 151, .22), transparent 25rem),
        linear-gradient(135deg, var(--dark), #10162b);
    color: white;
}

.dark-section p {
    color: rgba(255,255,255,.72);
}

.split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.benefit-list {
    display: grid;
    gap: 14px;
}

.benefit-list div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(255,255,255,.06);
}

.benefit-list strong {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: white;
    color: var(--brand);
}

/* Steps */
.soft-section {
    background: rgba(255,255,255,.42);
    border-block: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(43, 75, 128, 0.06);
}

.step-card span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--dark);
    color: white;
    font-weight: 900;
}

/* Social Cards */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.social-card {
    min-height: 165px;
    padding: 22px;
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: white;
    color: var(--ink);
    box-shadow: 0 16px 50px rgba(43, 75, 128, 0.06);
}

.social-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    margin-inline: auto;
}

.social-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.social-card small {
    color: var(--muted);
}

.social-card.whatsapp .social-icon { color: #25D366; background: rgba(37, 211, 102, .11); }
.social-card.maps .social-icon { color: #4285F4; background: rgba(66, 133, 244, .11); }
.social-card.instagram .social-icon { color: #E1306C; background: rgba(225, 48, 108, .11); }
.social-card.snapchat .social-icon { color: #111827; background: rgba(255, 252, 0, .42); }
.social-card.tiktok .social-icon { color: #111827; background: rgba(0, 242, 234, .14); }
.social-card.analytics .social-icon { color: var(--brand-2); background: rgba(65, 85, 174, .11); }

/* Table Payment */
.table-pay-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 92, 151, .11), transparent 24rem),
        radial-gradient(circle at 85% 50%, rgba(65, 85, 174, .10), transparent 26rem);
}

.table-pay-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.table-pay-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.table-pay-points div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.72);
}

.table-pay-points strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--accent));
    color: white;
}

.table-pay-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.receipt-card {
    width: min(390px, 100%);
    padding: 24px;
    border-radius: 34px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.receipt-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.receipt-top span {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--brand);
    font-weight: 900;
}

.table-qr-image {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #f5f7ff;
    border: 1px solid var(--border);
    padding: 10px;
}

.table-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.receipt-items {
    display: grid;
    gap: 12px;
}

.receipt-items div,
.receipt-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border);
}

.receipt-items span,
.receipt-total span {
    color: var(--muted);
}

.receipt-total {
    margin-top: 18px;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1.2rem;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 22px 0;
}

.payment-logos img {
    display: block;
    width: auto;
    height: 28px;
    max-width: 86px;
    object-fit: contain;
    padding: 5px 9px;
    border-radius: 12px;
    background: #f5f7ff;
    border: 1px solid rgba(43, 75, 128, 0.08);
}

.receipt-card button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--accent));
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.qr-table-card {
    position: absolute;
    left: 20px;
    bottom: 35px;
    width: 155px;
    padding: 18px;
    border-radius: 26px;
    background: #10162b;
    color: white;
    box-shadow: 0 24px 70px rgba(43, 75, 128, .22);
    text-align: center;
}

.qr-table-card span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 18px;
    background: white;
    color: var(--dark);
    font-weight: 900;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.price-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: white;
    box-shadow: 0 18px 60px rgba(43, 75, 128, 0.08);
}

.price-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 92, 151, .30), transparent 17rem),
        linear-gradient(135deg, var(--dark), #10162b);
    color: white;
    transform: translateY(-12px);
}

.price-card.featured p,
.price-card.featured li {
    color: rgba(255,255,255,.72);
}

.best {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: white;
    font-size: .8rem;
    font-weight: 900;
}

.price {
    margin: 22px 0;
}

.price .old {
    display: block;
    color: var(--muted);
    text-decoration: line-through;
}

.price-card.featured .old {
    color: rgba(255,255,255,.45);
}

.price strong {
    display: block;
    font-size: 2.55rem;
    line-height: 1.2;
}

.price em {
    display: block;
    color: var(--muted);
    font-style: normal;
}

.price-card.featured .price em {
    color: rgba(255,255,255,.62);
}

.price.custom strong {
    font-size: 2rem;
}

.price-card ul {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.price-card li {
    color: var(--muted);
}

.price-card li::before {
    content: "✓";
    margin-left: 8px;
    color: var(--accent);
    font-weight: 900;
}

.price-card.featured li::before {
    color: white;
}

/* Testimonials */
.testimonials-section {
    padding-top: 50px;
}

.testimonials-slider {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    min-height: 310px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px) scale(.98);
    pointer-events: none;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: white;
    box-shadow: 0 20px 70px rgba(43, 75, 128, .10);
    text-align: center;
    transition: opacity .45s ease, transform .45s ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.testimonial-logo {
    width: 96px;
    max-width: 96px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.testimonial-slide p {
    margin: 0 auto 18px;
    max-width: 620px;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
}

.testimonial-slide strong {
    color: var(--brand);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--brand);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(43, 75, 128, .13);
}

.slider-prev { right: -22px; }
.slider-next { left: -22px; }

/* Clients */
.clients-section {
    padding: 50px 0 80px;
    overflow: hidden;
}

.clients-heading {
    margin-bottom: 24px;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: clientsMove 28s linear infinite;
}

.clients-marquee:hover .clients-marquee-track {
    animation-play-state: paused;
}

.client-logo-card {
    width: 180px;
    height: 104px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: white;
    box-shadow: 0 14px 40px rgba(43, 75, 128, .07);
}

.client-logo-card img {
    width: auto;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
    display: block;
}

@keyframes clientsMove {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* Articles */
.articles-section {
    background: radial-gradient(circle at top right, rgba(255, 92, 151, 0.10), transparent 24rem);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-card {
    overflow: hidden;
    min-height: 420px;
    border-radius: 32px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(43, 75, 128, 0.08);
    display: flex;
    flex-direction: column;
}

.article-image {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #eef2ff;
}

.article-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.article-body {
    padding: 22px 22px 0;
}

.article-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.article-card h3 {
    margin: 0 0 10px;
    font-size: 1.32rem;
    line-height: 1.45;
}

.article-card p {
    margin: 0;
    color: var(--muted);
}

.article-footer {
    margin-top: auto;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand);
    font-weight: 900;
}

.article-footer span {
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
}

/* FAQ */
.faq-container {
    max-width: 880px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 10px 0 0;
    color: var(--muted);
}

/* CTA */
.final-cta {
    padding: 90px 0;
}

.final-box {
    text-align: center;
    border-radius: 38px;
    padding: 58px 24px;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.18), transparent 20rem),
        linear-gradient(135deg, var(--brand), var(--brand-2) 55%, var(--accent));
    color: white;
    box-shadow: var(--shadow);
}

.final-box p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.76);
}

/* Fixed WhatsApp */
.fixed-whatsapp {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 80;
    min-height: 54px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #25D366;
    color: white;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .32);
}

.fixed-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
.footer {
    padding: 44px 0 24px;
    background: white;
    color: var(--ink);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr;
    gap: 32px;
}

.footer p {
    max-width: 420px;
    margin: 16px 0 0;
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.footer-cta {
    display: grid;
    align-content: start;
    gap: 6px;
}

.footer-cta span {
    color: var(--muted);
}

.footer-cta a {
    color: var(--brand);
    font-weight: 900;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--brand);
    background: #f8f9ff;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

/* Animation */
@media (prefers-reduced-motion: no-preference) {
    .js-ready .reveal {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
        transition-delay: var(--delay, 0ms);
        will-change: opacity, transform;
    }

    .js-ready .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .phone-card {
        animation: phoneEntrance .7s cubic-bezier(.2,.8,.2,1) .1s both, phoneFloat 7s ease-in-out 1.2s infinite;
    }

    .floating-card {
        animation: floatingCard 4.8s ease-in-out infinite;
    }

    .feature-card,
    .step-card,
    .price-card,
    .social-card,
    .article-card {
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .feature-card:hover,
    .step-card:hover,
    .social-card:hover,
    .article-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 70px rgba(43, 75, 128, 0.12);
        border-color: rgba(255, 92, 151, 0.24);
    }

    .price-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 28px 80px rgba(43, 75, 128, 0.16);
    }

    .price-card.featured:hover {
        transform: translateY(-18px);
    }
}

@keyframes phoneEntrance {
    from { opacity: 0; transform: translateY(34px) rotate(-2deg) scale(.96); }
    to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(.7deg); }
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 1040px) {
    .hero-grid,
    .split-grid,
    .table-pay-grid {
        grid-template-columns: 1fr;
    }

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

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 760px) {
    .nav-links,
    .ghost-link {
        display: none;
    }

    .makan-logo {
        width: 92px;
        max-width: 92px;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 13vw, 4rem);
    }

    .hero-visual {
        min-height: auto;
        padding-bottom: 120px;
    }

    .phone-card {
        width: 100%;
    }

    .phone-app-preview {
        height: 500px;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .features-grid,
    .steps-grid,
    .pricing-grid,
    .integration-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
    }

    .price-card.featured {
        transform: none;
    }

    .section {
        padding: 66px 0;
    }

    .table-pay-visual {
        min-height: auto;
        padding-bottom: 130px;
    }

    .qr-table-card {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

    .slider-prev {
        right: 8px;
    }

    .slider-next {
        left: 8px;
    }

    .client-logo-card {
        width: 150px;
    }

    .fixed-whatsapp {
        width: 56px;
        padding: 0;
        justify-content: center;
    }

    .fixed-whatsapp span {
        display: none;
    }
}

@media (max-width: 430px) {
    .btn {
        min-height: 48px;
        padding-inline: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .phone-app-preview {
        height: 440px;
    }

    .phone-slider-dots {
        bottom: 12px;
    }
}


/* Pricing More Features */
.pricing-features .extra-feature {
    display: none;
}

.price-card.show-all-features .pricing-features .extra-feature {
    display: list-item;
}

.more-features-btn {
    width: 100%;
    min-height: 44px;
    margin: -6px 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #f8f9ff;
    color: var(--brand);
    font-weight: 900;
    cursor: pointer;
}

.price-card.featured .more-features-btn {
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.10);
    color: white;
}


/* =========================
   Fix Articles Slider Layout
   ========================= */

.articles-section {
    overflow: hidden;
}

.articles-slider {
    position: relative !important;
    width: min(820px, 100%) !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    padding: 0 56px 48px !important;
    overflow: hidden !important;
}

.articles-track {
    position: relative !important;
    width: 100% !important;
    min-height: 500px !important;
    display: block !important;
    overflow: hidden !important;
}

.articles-track .article-card,
.articles-track .article-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 460px !important;
    margin: 0 !important;
    opacity: 0 !important;
    transform: translateY(18px) scale(.985) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition:
        opacity .45s ease,
        transform .45s ease !important;
}

.articles-track .article-slide.is-active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.articles-track .article-image {
    width: 100% !important;
    height: 210px !important;
    display: block !important;
    overflow: hidden !important;
}

.articles-track .article-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}

.articles-prev,
.articles-next {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.articles-prev {
    right: 0 !important;
}

.articles-next {
    left: 0 !important;
}

.articles-dots {
    position: absolute !important;
    right: 50% !important;
    bottom: 0 !important;
    transform: translateX(50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.articles-dot {
    width: 9px !important;
    height: 9px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(43, 75, 128, .24) !important;
    cursor: pointer !important;
}

.articles-dot.is-active {
    background: var(--brand) !important;
    transform: scale(1.18) !important;
}

@media (max-width: 760px) {
    .articles-slider {
        width: 100% !important;
        padding: 0 42px 44px !important;
    }

    .articles-track {
        min-height: 540px !important;
    }

    .articles-track .article-card,
    .articles-track .article-slide {
        min-height: 500px !important;
    }

    .articles-prev {
        right: 0 !important;
    }

    .articles-next {
        left: 0 !important;
    }
}

/* =========================
   Articles Card + Buttons Shadow
   ========================= */

.articles-track .article-card,
.articles-track .article-slide {
    border: 1px solid rgba(43, 75, 128, 0.12) !important;
    box-shadow:
        0 16px 50px rgba(43, 75, 128, 0.08),
        0 2px 8px rgba(43, 75, 128, 0.04) !important;
    background: #fff !important;
}

.articles-track .article-slide.is-active {
    box-shadow:
        0 18px 58px rgba(43, 75, 128, 0.10),
        0 3px 10px rgba(43, 75, 128, 0.04) !important;
}

/* أزرار السلايدر */
.articles-slider .slider-btn,
.articles-prev,
.articles-next {
    width: 46px !important;
    height: 46px !important;
    border: 1px solid rgba(43, 75, 128, 0.12) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: var(--brand) !important;
    box-shadow:
        0 12px 34px rgba(43, 75, 128, 0.12),
        0 2px 7px rgba(43, 75, 128, 0.05) !important;
}

/* هوفر خفيف ومتجانس */
.articles-slider .slider-btn:hover,
.articles-prev:hover,
.articles-next:hover {
    transform: translateY(-50%) translateY(-2px) !important;
    box-shadow:
        0 16px 42px rgba(43, 75, 128, 0.16),
        0 3px 9px rgba(43, 75, 128, 0.06) !important;
}

/* نقاط السلايدر */
.articles-dot {
    box-shadow: none !important;
}

.articles-dot.is-active {
    box-shadow: 0 4px 12px rgba(43, 75, 128, 0.18) !important;
}

.articles-prev,
.articles-next {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* =========================
   Clean Articles Slider Shadow
   ========================= */

/* خفف قصّ الظل داخل السلايدر */
.articles-slider {
    overflow: visible !important;
    padding-top: 8px !important;
    padding-bottom: 64px !important;
}

/* نخلي التراك يسمح للظل يظهر */
.articles-track {
    overflow: visible !important;
}

/* الكارد نفسه: ظل منطقي نازل لتحت */
.articles-track .article-card,
.articles-track .article-slide {
    background: #fff !important;
    border: 1px solid rgba(43, 75, 128, 0.10) !important;
    box-shadow: 0 18px 45px rgba(43, 75, 128, 0.10) !important;
}

/* لا نغيّر الظل عند التفعيل عشان ما يحس أنه يقفز أو ينعكس */
.articles-track .article-slide.is-active {
    box-shadow: 0 18px 45px rgba(43, 75, 128, 0.10) !important;
}

/* أزرار السلايدر: ظل صغير ومنطقي */
.articles-slider .slider-btn,
.articles-prev,
.articles-next {
    background: #fff !important;
    border: 1px solid rgba(43, 75, 128, 0.10) !important;
    box-shadow: 0 10px 24px rgba(43, 75, 128, 0.12) !important;
}

/* لا تضيف ظل مختلف بالهوفر */
.articles-slider .slider-btn:hover,
.articles-prev:hover,
.articles-next:hover {
    box-shadow: 0 12px 28px rgba(43, 75, 128, 0.14) !important;
}

/* إلغاء أي ظل من النقاط */
.articles-dot,
.articles-dot.is-active {
    box-shadow: none !important;
}

/* Testimonials text size */
.testimonial-slide p {
    font-size: 0.98rem !important;
    line-height: 1.9 !important;
    font-weight: 650 !important;
    max-width: 560px !important;
}

.testimonial-slide strong {
    font-size: 0.95rem !important;
}

.testimonial-slide small,
.testimonial-slide span {
    font-size: 0.86rem !important;
}

/* Payment Logos Bigger */
.payment-logos {
    gap: 14px !important;
    margin: 26px 0 !important;
}

.payment-logos img {
    height: 42px !important;
    max-width: 120px !important;
    width: auto !important;
    padding: 7px 12px !important;
    border-radius: 14px !important;
    background: #fff !important;
    border: 1px solid rgba(43, 75, 128, 0.10) !important;
    object-fit: contain !important;
    box-shadow: 0 8px 22px rgba(43, 75, 128, 0.07) !important;
}

@media (max-width: 480px) {
    .payment-logos img {
        height: 36px !important;
        max-width: 96px !important;
        padding: 6px 9px !important;
    }
}