/* ============================================
   MahalLink - Landing Page Styles
   Inspired by clean, modern Saudi tech sites
   ============================================ */

:root {
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-primary-light: #a855f7;
    --color-primary-bg: #f5f3ff;
    --color-accent: #ec4899;

    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-text-soft: #64748b;

    --color-bg: #ffffff;
    --color-bg-alt: #fafaff;
    --color-bg-soft: #f8fafc;

    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;

    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 32px -8px rgba(124, 58, 237, 0.18), 0 4px 12px -4px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 48px -12px rgba(124, 58, 237, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --font-arabic: 'Tajawal', 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;

    --container: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-arabic);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand-mark {
    width: 44px; height: 44px;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.5px;
}
.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-soft);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.nav-link:hover { color: var(--color-primary); background: var(--color-primary-bg); }

.nav-cta { margin-right: 12px; padding: 10px 22px !important; font-size: 14px !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}

.hero-bg-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.deco-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #c4b5fd 0%, transparent 70%);
    top: -200px; left: -100px;
}
.deco-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #fbcfe8 0%, transparent 70%);
    bottom: -150px; right: -100px;
}
.deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}
.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.stat:hover {
    background: #fff;
    border-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-bg);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.stat-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.3;
}
.stat-sub {
    font-size: 13px;
    color: var(--color-text-soft);
    margin-top: 2px;
}

/* ===== Hero Visual ===== */
.hero-visual {
    position: relative;
    height: 480px;
}

.visual-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
}

.visual-card-1 {
    width: 100%;
    max-width: 420px;
    top: 40px;
    right: 0;
    padding: 16px;
    animation: float 6s ease-in-out infinite;
}
.vc-header {
    display: flex;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-light);
}
.vc-dot { width: 10px; height: 10px; border-radius: 50%; }
.vc-dot-red { background: #ef4444; }
.vc-dot-yellow { background: #f59e0b; }
.vc-dot-green { background: #10b981; }
.vc-body { padding: 20px 4px 4px; }
.vc-line {
    height: 10px;
    background: linear-gradient(90deg, #e9d5ff 0%, #f3f4f6 100%);
    border-radius: 4px;
    margin-bottom: 10px;
}
.vc-line-1 { width: 60%; }
.vc-line-2 { width: 85%; }
.vc-line-3 { width: 40%; margin-bottom: 24px; }
.vc-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    margin-top: 16px;
}
.vc-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 6px 6px 0 0;
    opacity: 0.85;
}
.vc-bar:nth-child(odd) {
    background: linear-gradient(180deg, #ec4899 0%, #db2777 100%);
}

.visual-card-2,
.visual-card-3 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
.visual-card-2 {
    bottom: 80px;
    left: 0;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: -2s;
}
.visual-card-3 {
    top: 0;
    left: 40px;
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}
.vc-title { font-weight: 700; font-size: 14px; }
.vc-sub { font-size: 12px; color: var(--color-text-soft); }

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

/* ===== Trust Strip ===== */
.trust-strip {
    padding: 40px 0;
    background: var(--color-bg-soft);
    border-block: 1px solid var(--color-border-light);
}
.trust-text {
    text-align: center;
    color: var(--color-text-soft);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
}
.trust-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.trust-item:hover { opacity: 1; color: var(--color-primary); }

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--color-bg-alt);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary-bg);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ===== About Grid ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.about-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.about-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.about-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.about-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}
.about-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.service-card {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.soon-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.service-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}
.service-card > p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
}
.check {
    display: inline-grid;
    place-items: center;
    width: 20px; height: 20px;
    background: #d1fae5;
    color: #059669;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}
.services-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

/* ===== Why Us Grid ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.why-card {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.why-card:hover {
    border-color: var(--color-primary-light);
    background: linear-gradient(180deg, #fff 0%, #faf9ff 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.why-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}
.why-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}
.why-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 15px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
}
.cta-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #fff;
}
.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.contact-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.contact-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
}
.contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}
.contact-value {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
    direction: ltr;
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.social-label {
    font-weight: 600;
    color: var(--color-text-muted);
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-icon {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all var(--transition);
}
.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 0;
}
.footer .brand-name { color: #fff; }
.footer .brand-tagline { color: #94a3b8; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-about {
    margin-top: 20px;
    line-height: 1.8;
    color: #94a3b8;
    max-width: 380px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a, .footer-col li {
    color: #94a3b8;
    font-size: 15px;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-primary-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 14px;
}

/* ===== Floating WhatsApp ===== */
.float-wa {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--transition);
}
.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 360px; }
    .visual-card-1 { max-width: 360px; right: 50%; transform: translateX(50%); }
    .visual-card-2 { left: 20px; bottom: 40px; }
    .visual-card-3 { left: 50%; transform: translateX(50%); top: -20px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        right: 0; left: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-top: 1px solid var(--color-border);
        padding: 24px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-link {
        padding: 14px 16px;
        text-align: right;
        border-radius: var(--radius-md);
    }
    .nav-cta { margin-right: 0; margin-top: 12px; text-align: center; }
    .menu-toggle { display: flex; }

    .hero { padding: 110px 0 60px; }
    .section { padding: 70px 0; }
    .cta-banner { padding: 70px 0; }

    .trust-icons { gap: 20px; }
    .trust-item { font-size: 13px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 40px;
        padding-top: 32px;
    }
    .stat { padding: 14px 16px; }
    .stat-icon { width: 42px; height: 42px; }

    .float-wa { width: 50px; height: 50px; bottom: 16px; left: 16px; }
    .float-wa svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .brand-tagline { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .visual-card-2, .visual-card-3 { display: none; }
    .visual-card-1 { max-width: 100%; right: 0; transform: none; }
    .hero-visual { height: 280px; }
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
