/* =============================================
   MODERN PAGES — Complete Design System
   Cultus India — 2026
   
   Using CSS variables from variables.css:
   --color-primary, --color-secondary, --color-accent
   --font-heading, --font-body
   ============================================= */

/* ═══════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════ */
.mod-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--hero-bg) center/cover no-repeat;
    overflow: hidden;
}

.mod-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(0, 20, 10, 0.92) 0%,
            rgba(0, 47, 94, 0.8) 50%,
            rgba(0, 90, 52, 0.7) 100%);
    z-index: 1;
}

.mod-hero__inner {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.mod-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mod-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 700px;
}

.mod-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.mod-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   2. BUTTONS
   ═══════════════════════════════════════════════ */
.mod-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.mod-btn--primary {
    background: linear-gradient(135deg, var(--color-primary), #00703f);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 90, 52, 0.35);
}

.mod-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 90, 52, 0.5);
    color: white;
}

.mod-btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.mod-btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.mod-btn--white {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mod-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: var(--color-primary);
}

.mod-btn--outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.mod-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

/* ═══════════════════════════════════════════════
   3. SECTIONS
   ═══════════════════════════════════════════════ */
.mod-section {
    padding: 100px 0;
}

.mod-section--soft {
    background: var(--bg-light);
}

.mod-section--dark {
    background: linear-gradient(160deg, #0a1f14 0%, #0c2340 50%, #071a0e 100%);
}

.mod-section-head {
    text-align: center;
    margin-bottom: 60px;
}

/* ═══════════════════════════════════════════════
   4. LABELS & HEADINGS
   ═══════════════════════════════════════════════ */
.mod-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    background: rgba(0, 90, 52, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.mod-label--light {
    color: var(--color-accent);
    background: rgba(255, 215, 0, 0.12);
}

.mod-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.mod-heading--light {
    color: white;
}

.mod-heading--accent {
    color: var(--color-primary);
    position: relative;
}

.mod-section--dark .mod-heading--accent {
    color: var(--color-accent);
}

.mod-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.mod-subtext--light {
    color: rgba(255, 255, 255, 0.65);
}

.mod-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mod-text--muted {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   5. SPLIT LAYOUT
   ═══════════════════════════════════════════════ */
.mod-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mod-split--reverse {
    direction: rtl;
}

.mod-split--reverse>* {
    direction: ltr;
}

/* ═══════════════════════════════════════════════
   6. IMAGE FRAME
   ═══════════════════════════════════════════════ */
.mod-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
}

.mod-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mod-img-frame:hover img {
    transform: scale(1.05);
}

.mod-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.mod-img-frame__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════
   7. CHIP ROW
   ═══════════════════════════════════════════════ */
.mod-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.mod-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.06), rgba(0, 47, 94, 0.04));
    border: 1px solid rgba(0, 90, 52, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.mod-chip i {
    color: var(--color-primary);
}

.mod-chip:hover {
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.12), rgba(0, 47, 94, 0.08));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 52, 0.12);
}

/* ═══════════════════════════════════════════════
   8. CARD GRID
   ═══════════════════════════════════════════════ */
.mod-card-grid {
    display: grid;
    gap: 24px;
}

.mod-card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

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

/* ═══════════════════════════════════════════════
   9a. IMAGE CARD (Product cards with bg images)
   ═══════════════════════════════════════════════ */
.mod-imgcard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    cursor: pointer;
}

.mod-imgcard img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mod-imgcard:hover img {
    transform: scale(1.1);
}

.mod-imgcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 20, 10, 0.85) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.mod-imgcard:hover .mod-imgcard__overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 30%,
            rgba(0, 50, 30, 0.92) 100%);
}

.mod-imgcard__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 32px 28px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.mod-imgcard:hover .mod-imgcard__content {
    transform: translateY(0);
}

.mod-imgcard__content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.mod-imgcard__content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease 0.1s;
}

.mod-imgcard:hover .mod-imgcard__content p {
    opacity: 1;
    transform: translateY(0);
}

.mod-imgcard__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease 0.2s;
}

.mod-imgcard:hover .mod-imgcard__link {
    opacity: 1;
    transform: translateY(0);
}

.mod-imgcard__link:hover {
    color: white;
}

.mod-imgcard__link i {
    transition: transform 0.3s ease;
}

.mod-imgcard__link:hover i {
    transform: translateX(4px);
}

/* Wide card Learn More link */
.mod-imgcard__link--wide {
    opacity: 1;
    transform: none;
    color: var(--color-accent);
    white-space: nowrap;
}

.mod-imgcard__link--wide:hover {
    color: white;
}

/* ═══════════════════════════════════════════════
   9b. GLASS CARD (Dark section — kept for other uses)
   ═══════════════════════════════════════════════ */
.mod-card--glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mod-card--glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mod-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-radius: 14px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.mod-card--glass:hover .mod-card__icon {
    transform: scale(1.1);
}

.mod-card__icon i {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

.mod-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.mod-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

.mod-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mod-card__list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease;
}

.mod-card__list li:last-child {
    border-bottom: none;
}

.mod-card--glass:hover .mod-card__list li {
    color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════
   10. WIDE CARD (Dark section)
   ═══════════════════════════════════════════════ */
.mod-wide-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 28px 36px;
    margin-top: 24px;
}

.mod-wide-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 14px;
}

.mod-wide-card__icon i {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

.mod-wide-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.mod-wide-card__body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   11. FEATURE CARDS (Light section)
   ═══════════════════════════════════════════════ */
.mod-feature {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mod-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mod-feature:hover::before {
    transform: scaleX(1);
}

.mod-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.mod-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.08), rgba(0, 47, 94, 0.06));
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mod-feature:hover .mod-feature__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.mod-feature__icon i {
    color: var(--color-primary);
    width: 22px;
    height: 22px;
    transition: color 0.3s ease;
}

.mod-feature:hover .mod-feature__icon i {
    color: white;
}

.mod-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.mod-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   12. TAG CLOUD (Markets)
   ═══════════════════════════════════════════════ */
.mod-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.mod-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mod-tag i {
    color: var(--color-primary);
}

.mod-tag:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 90, 52, 0.3);
    border-color: transparent;
}

.mod-tag:hover i {
    color: var(--color-accent);
}

.mod-section--soft .mod-tag {
    background: white;
}

/* ═══════════════════════════════════════════════
   13. CHECK LIST
   ═══════════════════════════════════════════════ */
.mod-check-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mod-check-list__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mod-check-list__item:hover {
    border-color: var(--color-primary);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 90, 52, 0.08);
}

.mod-section--soft .mod-check-list__item {
    background: white;
}

.mod-check-list__item i {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    min-width: 20px;
}

/* ═══════════════════════════════════════════════
   14. MINI GRID (Logistics)
   ═══════════════════════════════════════════════ */
.mod-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.mod-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mod-mini-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mod-section--soft .mod-mini-card {
    background: white;
}

.mod-mini-card i {
    color: var(--color-primary);
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.mod-mini-card strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.mod-mini-card small {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   15. STEPS (Process)
   ═══════════════════════════════════════════════ */
.mod-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.mod-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--color-primary),
            var(--color-accent),
            var(--color-secondary),
            var(--color-primary));
    opacity: 0.3;
}

.mod-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.mod-step__num {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary), #00703f);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 90, 52, 0.3);
    transition: all 0.4s ease;
}

.mod-step:hover .mod-step__num {
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 14px 35px rgba(0, 90, 52, 0.4);
    border-radius: 16px;
}

.mod-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mod-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════
   16. CTA
   ═══════════════════════════════════════════════ */
.mod-cta {
    background: linear-gradient(160deg, #0a1f14, var(--color-primary), #0c2340);
    position: relative;
    overflow: hidden;
}

.mod-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
    border-radius: 50%;
}

.mod-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 47, 94, 0.3), transparent 70%);
    border-radius: 50%;
}

.mod-cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0;
}

.mod-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.mod-cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.mod-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   17. RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .mod-card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .mod-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mod-split--reverse {
        direction: ltr;
    }

    .mod-split__media {
        order: -1;
    }

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

    .mod-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mod-steps::before {
        display: none;
    }

    .mod-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .mod-hero__inner {
        padding: 120px 0 80px;
    }

    .mod-hero__title {
        letter-spacing: -1px;
    }

    .mod-card-grid--4,
    .mod-card-grid--3 {
        grid-template-columns: 1fr;
    }

    .mod-mini-grid {
        grid-template-columns: 1fr;
    }

    .mod-steps {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 320px;
        margin: 0 auto;
    }

    .mod-wide-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .mod-section {
        padding: 60px 0;
    }

    .mod-section-head {
        margin-bottom: 40px;
    }

    .mod-cta__inner {
        padding: 70px 0;
    }

    .mod-img-frame {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 480px) {
    .mod-hero__actions {
        flex-direction: column;
    }

    .mod-hero__title {
        font-size: 2rem;
        word-wrap: break-word;
        /* Prevent overflow */
        padding: 0 10px;
        /* Extra safety padding */
    }

    .mod-hero__sub {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .mod-btn {
        justify-content: center;
    }

    .mod-chip-row {
        gap: 8px;
    }

    .mod-chip {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .mod-tag {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .mod-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════════
   18. SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.mod-section,
.mod-cta {
    opacity: 0;
    transform: translateY(40px);
    animation: mod-fadeUp 0.8s ease forwards;
}

@keyframes mod-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger sections */
.mod-section:nth-child(2) {
    animation-delay: 0.1s;
}

.mod-section:nth-child(3) {
    animation-delay: 0.15s;
}

.mod-section:nth-child(4) {
    animation-delay: 0.2s;
}

.mod-section:nth-child(5) {
    animation-delay: 0.25s;
}

/* Card stagger on hover parent */
.mod-card-grid>*:nth-child(1) {
    animation: mod-fadeUp 0.6s 0.1s ease forwards;
    opacity: 0;
}

.mod-card-grid>*:nth-child(2) {
    animation: mod-fadeUp 0.6s 0.2s ease forwards;
    opacity: 0;
}

.mod-card-grid>*:nth-child(3) {
    animation: mod-fadeUp 0.6s 0.3s ease forwards;
    opacity: 0;
}

.mod-card-grid>*:nth-child(4) {
    animation: mod-fadeUp 0.6s 0.4s ease forwards;
    opacity: 0;
}

.mod-card-grid>*:nth-child(5) {
    animation: mod-fadeUp 0.6s 0.5s ease forwards;
    opacity: 0;
}

.mod-card-grid>*:nth-child(6) {
    animation: mod-fadeUp 0.6s 0.6s ease forwards;
    opacity: 0;
}