/* ===== Al-Wateqon Group — Premium Food Import ===== */
:root {
    --gold: #E8A800;
    --gold-light: #F5C518;
    --gold-dark: #B8860B;
    --navy: #1A1F3A;
    --navy-light: #252B4D;
    --blue: #2B4C9B;
    --blue-light: #3A5FC0;
    --red: #D32F2F;
    --white: #FFFFFF;
    --off-white: #FDF8EE;
    --cream: #FFF8E7;
    --text: #1A1F3A;
    --text-muted: #5A6078;
    --border: rgba(26,31,58,0.08);
    --shadow-sm: 0 2px 12px rgba(26,31,58,0.06);
    --shadow-md: 0 8px 32px rgba(26,31,58,0.10);
    --shadow-lg: 0 16px 48px rgba(26,31,58,0.14);
    --shadow-gold: 0 8px 32px rgba(232,168,0,0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --ease: cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spinner {
    width: 48px; height: 48px;
    border: 4px solid rgba(232,168,0,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,31,58,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,168,0,0.3);
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text strong {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}
.logo-text span {
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .5px;
    font-weight: 500;
}

/* Nav */
.nav-links {
    display: flex;
    gap: 8px;
}
.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all .3s var(--ease);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--gold);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px; height: 36px;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    margin: 5px auto;
    border-radius: 2px;
    transition: all .3s var(--ease);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, #1E2549 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,168,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(43,76,155,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,168,0,0.12);
    border: 1px solid rgba(232,168,0,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    width: fit-content;
}
.hero-badge span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold); }

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--white);
    line-height: 1.25;
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}
.hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: all .4s var(--ease);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,168,0,0.3);
}
.btn-gold svg { width: 18px; height: 18px; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .92rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all .4s var(--ease);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat strong {
    display: block;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 800;
}
.hero-stat span {
    color: rgba(255,255,255,0.5);
    font-size: .78rem;
    letter-spacing: .3px;
}

/* Hero Image */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-main {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    transition: transform .6s var(--ease);
}
.hero-img-main:hover { transform: scale(1.03) rotate(-1deg); }
.hero-float-1, .hero-float-2 {
    position: absolute;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform .6s var(--ease);
}
.hero-float-1 {
    width: 180px;
    bottom: -20px;
    right: -30px;
    animation: floatUp 4s ease-in-out infinite;
}
.hero-float-2 {
    width: 160px;
    top: -10px;
    left: -20px;
    animation: floatUp 4s ease-in-out 1s infinite;
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== Section Global ===== */
.section {
    padding: 100px 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
    content: '';
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Info Banner ===== */
.info-banner {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
}
.info-banner-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-left: 1px solid var(--border);
    transition: background .3s var(--ease);
}
.info-item:last-child { border-left: none; }
.info-item:hover { background: var(--cream); }
.info-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(232,168,0,0.1), rgba(232,168,0,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-text strong { display: block; font-size: .85rem; color: var(--navy); font-weight: 700; }
.info-text span { font-size: .76rem; color: var(--text-muted); }

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; display: block; }
.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: .88rem;
    box-shadow: var(--shadow-gold);
}
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
}
.about-content h2 em { font-style: normal; color: var(--gold-dark); }
.about-content p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.9;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}
.about-feature svg { width: 18px; height: 18px; fill: var(--gold-dark); flex-shrink: 0; }

/* ===== Products ===== */
.products-bg {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 50%, var(--off-white) 100%);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,168,0,0.2);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4eb 0%, #fdf8ee 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .3px;
}
.product-card-body { padding: 24px; }
.product-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.product-card-body p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.product-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: .72rem;
    font-weight: 600;
}

/* ===== Brands ===== */
.brands-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 40px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    min-width: 180px;
}
.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232,168,0,0.2);
}
.brand-item strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
}
.brand-item span {
    font-size: .76rem;
    color: var(--text-muted);
}

/* ===== Why Us ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform .4s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(232,168,0,0.12), rgba(232,168,0,0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,31,58,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }

/* ===== Contact ===== */
.contact-bg {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 800;
}
.contact-info h2 em { font-style: normal; color: var(--gold); }
.contact-info > p {
    color: rgba(255,255,255,0.6);
    font-size: .92rem;
    line-height: 1.8;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item-icon {
    width: 48px; height: 48px;
    background: rgba(232,168,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-text strong { display: block; color: var(--white); font-size: .88rem; }
.contact-item-text span { color: rgba(255,255,255,0.5); font-size: .78rem; }
.contact-item-text a { color: var(--white); direction: ltr; display: inline-block; }

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    backdrop-filter: blur(10px);
}
.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--white);
    font-family: inherit;
    font-size: .88rem;
    transition: border-color .3s var(--ease);
    outline: none;
    direction: rtl;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: all .4s var(--ease);
    width: fit-content;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 32px 0;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: .82rem;
    line-height: 1.8;
    margin-top: 16px;
}
.footer h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: .82rem;
    padding: 6px 0;
    transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: rgba(255,255,255,0.5);
    font-size: .82rem;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); direction: ltr; display: inline-block; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: .75rem;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}
.dev-credit {
    color: rgba(255,255,255,0.35);
    font-size: .72rem;
}
.dev-credit a {
    color: var(--gold);
    font-weight: 600;
    transition: color .3s;
}
.dev-credit a:hover { color: var(--gold-light); }

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-badge { margin: 0 auto; }
    .hero-desc { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-float-1, .hero-float-2 { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 16px 24px;
        border-top: 1px solid rgba(255,255,255,0.06);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }
    .nav-toggle { display: block; }
    .hero { min-height: auto; }
    .hero-inner { padding: 60px 20px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .info-banner-grid { grid-template-columns: 1fr 1fr; }
    .info-item { border-left: none; border-bottom: 1px solid var(--border); }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 20px; }
    .brands-grid { gap: 20px; }
    .brand-item { min-width: 140px; padding: 24px; }
}

@media (max-width: 480px) {
    .info-banner-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
}
