/* ============================================================
 * ICMD Modern Visual Upgrade
 * Features: Gradient mesh hero, animated counters, modern cards,
 *   SVG patterns, animated timeline, FAQ, floating WhatsApp,
 *   Lottie containers, interactive tiers, scroll reveal
 * ============================================================ */

/* ─── 1. HERO SECTION (Video / Image / Gradient Background) ─── */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0B1120;
    height: 100vh;
    min-height: 600px;
    color: white;
}

/* Video background — fills entire hero */
.hero-bg-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
    z-index: 0 !important;
}

/* Image background — fills entire hero */
.hero-bg-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}

/* Animated gradient fallback */
.hero-bg-gradient {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(81,45,168,0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(49,27,146,0.5) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 60% 80%, rgba(201,168,76,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(23,105,255,0.12) 0%, transparent 50%);
    animation: meshMove 12s ease-in-out infinite alternate;
}
@keyframes meshMove {
    0%   { transform: scale(1)   translate(0, 0);     opacity: 1; }
    50%  { transform: scale(1.06) translate(1.5%, -1%);  opacity: 0.92; }
    100% { transform: scale(1.03) translate(-1%, 1.5%);  opacity: 1; }
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(11,17,32,0.75) 0%, rgba(11,17,32,0.50) 50%, rgba(11,17,32,0.65) 100%) !important;
    z-index: 1 !important;
}
/* Dot-grid texture on overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Content layer — sits above background + overlay, vertically centered */
.hero-content-inner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 0 60px !important;
    box-sizing: border-box;
}

/* Fade-in on page load */
.hero-section .hero-title,
.hero-section .hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: heroContentIn 0.8s ease forwards;
}
.hero-section .hero-subtitle { animation-delay: 0.15s; }
@keyframes heroContentIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── 2. ANIMATED STAT COUNTERS ─── */
.counter-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 900;
    color: var(--icmd-purple);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}
.counter-number::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--icmd-purple), var(--icmd-gold));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease 0.3s;
}
.proof-card.counted .counter-number::after { transform: scaleX(1); }

/* Mini bar chart under each proof card */
.proof-bar-track {
    height: 4px;
    background: #E8E5FF;
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}
.proof-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--icmd-purple), var(--icmd-gold));
    width: 0%;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
.proof-card.counted .proof-bar-fill { width: var(--bar-width, 80%); }

/* ─── 3. MODERN CARDS WITH GRADIENT BORDERS ─── */
.service-card-modern {
    position: relative;
    background: white;
    border-radius: 14px;
    padding: 32px 26px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    cursor: pointer;
}
/* Animated gradient border via pseudo-element */
.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, #E8E8E8, #E8E8E8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
}
.service-card-modern:hover::before {
    background: conic-gradient(from var(--card-angle, 0deg),
        var(--icmd-purple), var(--icmd-gold), var(--icmd-purple-light), var(--icmd-gold-light), var(--icmd-purple));
    animation: borderSpin 3s linear infinite;
}
@keyframes borderSpin {
    to { --card-angle: 360deg; }
}
/* Register custom property for animation */
@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(81,45,168,0.15), 0 8px 20px rgba(0,0,0,0.06);
}
/* Tier stripe modernized */
.service-card-modern .card-tier-stripe {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    transition: height 0.3s ease;
}
.service-card-modern:hover .card-tier-stripe { height: 5px; }
/* Glassmorphism overlay on hover */
.service-card-modern .card-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(81,45,168,0.03), rgba(201,168,76,0.03));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.service-card-modern:hover .card-glass { opacity: 1; }
/* Card icon */
.card-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-modern:hover .card-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-icon-wrap.t1 { background: rgba(81,45,168,0.1); color: var(--tier1-color); }
.card-icon-wrap.t2 { background: rgba(198,66,110,0.1); color: var(--tier2-color); }
.card-icon-wrap.t3 { background: rgba(23,105,255,0.1); color: var(--tier3-color); }

/* ─── 4. SVG BACKGROUND PATTERNS ─── */
.pattern-dots {
    background-image: radial-gradient(rgba(81,45,168,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}
.pattern-grid {
    background-image:
        linear-gradient(rgba(81,45,168,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(81,45,168,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.pattern-circuit {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v15M30 45v15M0 30h15M45 30h15' stroke='%23512DA8' stroke-width='0.5' opacity='0.06' fill='none'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23512DA8' opacity='0.06'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='%23512DA8' opacity='0.04'/%3E%3Ccircle cx='60' cy='0' r='1.5' fill='%23512DA8' opacity='0.04'/%3E%3Ccircle cx='0' cy='60' r='1.5' fill='%23512DA8' opacity='0.04'/%3E%3Ccircle cx='60' cy='60' r='1.5' fill='%23512DA8' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
/* Decorative gradient blob for sections */
.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.section-blob-purple {
    background: rgba(81,45,168,0.06);
    width: 500px; height: 500px;
}
.section-blob-gold {
    background: rgba(201,168,76,0.05);
    width: 400px; height: 400px;
}

/* ─── 5. ANIMATED PROCESS TIMELINE ─── */
.process-timeline {
    position: relative;
    padding: 40px 0;
}
/* Horizontal connecting line */
.timeline-line {
    position: absolute;
    top: 56px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #E0DBFF;
    border-radius: 2px;
    overflow: hidden;
}
.timeline-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--icmd-purple), var(--icmd-gold));
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline-animated .timeline-line-fill { width: 100%; }

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}
.timeline-step {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-animated .timeline-step {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger each step */
.timeline-animated .timeline-step:nth-child(1) { transition-delay: 0.2s; }
.timeline-animated .timeline-step:nth-child(2) { transition-delay: 0.35s; }
.timeline-animated .timeline-step:nth-child(3) { transition-delay: 0.5s; }
.timeline-animated .timeline-step:nth-child(4) { transition-delay: 0.65s; }
.timeline-animated .timeline-step:nth-child(5) { transition-delay: 0.8s; }
.timeline-animated .timeline-step:nth-child(6) { transition-delay: 0.95s; }

.timeline-step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: white;
    border: 3px solid #E0DBFF;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
    color: var(--icmd-purple);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.timeline-animated .timeline-step-icon {
    border-color: var(--icmd-purple);
    background: linear-gradient(135deg, rgba(81,45,168,0.08), rgba(201,168,76,0.05));
    box-shadow: 0 4px 15px rgba(81,45,168,0.12);
}
.timeline-step-icon .step-num {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 18px;
    color: var(--icmd-purple);
}
.timeline-step h4 {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--icmd-text);
    margin-bottom: 6px;
}
.timeline-step p {
    font-size: 12.5px;
    color: var(--icmd-text-muted) !important;
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ─── 6. ANIMATED FAQ ACCORDION ─── */
.faq-item-modern {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}
.faq-item-modern:hover {
    border-color: rgba(81,45,168,0.2);
}
.faq-item-modern.active {
    border-color: var(--icmd-purple-light);
    box-shadow: 0 4px 16px rgba(81,45,168,0.08);
}
.faq-question-modern {
    font-family: var(--font-serif);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--icmd-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    user-select: none;
    gap: 16px;
    transition: color 0.2s ease;
}
.faq-item-modern:hover .faq-question-modern { color: var(--icmd-purple); }
.faq-item-modern.active .faq-question-modern { color: var(--icmd-purple); }
.faq-chevron {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #F3E8FF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease;
}
.faq-chevron svg {
    width: 14px; height: 14px;
    stroke: var(--icmd-purple);
    stroke-width: 2.5;
    fill: none;
    transition: stroke 0.3s ease;
}
.faq-item-modern.active .faq-chevron {
    transform: rotate(180deg);
    background: var(--icmd-purple);
}
.faq-item-modern.active .faq-chevron svg { stroke: white; }
.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.35s ease;
}
.faq-item-modern.active .faq-answer-modern {
    max-height: 400px;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--icmd-text-muted);
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}

/* ─── 7. FLOATING WHATSAPP BUTTON ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    color: white;
}
/* Pulse rings */
.whatsapp-float-btn::before,
.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: waPulse 2s ease-out infinite;
}
.whatsapp-float-btn::after { animation-delay: 1s; }
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-float-tooltip {
    background: white;
    color: var(--icmd-text);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ─── 8. LOTTIE ANIMATION CONTAINERS ─── */
.lottie-container {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.lottie-hero-decor {
    right: 5%;
    top: 15%;
    width: 300px;
    height: 300px;
    opacity: 0.25;
}
.lottie-proof-decor {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 120px;
    margin: 0 auto 30px;
}
.lottie-cta-decor {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 200px;
    height: 200px;
    opacity: 0.15;
}

/* CSS-only animated decorative elements (Lottie-style) */
.css-lottie-network {
    position: relative;
    width: 100%;
    height: 100%;
}
.css-lottie-network .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--icmd-gold);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
}
.css-lottie-network .node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.css-lottie-network .node:nth-child(2) { top: 60%; left: 25%; animation-delay: 0.5s; }
.css-lottie-network .node:nth-child(3) { top: 30%; left: 50%; animation-delay: 1s; }
.css-lottie-network .node:nth-child(4) { top: 70%; left: 65%; animation-delay: 1.5s; }
.css-lottie-network .node:nth-child(5) { top: 15%; left: 80%; animation-delay: 2s; }
.css-lottie-network .node:nth-child(6) { top: 80%; left: 85%; animation-delay: 0.8s; }
.css-lottie-network .node:nth-child(7) { top: 45%; left: 40%; animation-delay: 1.3s; }
@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.8); opacity: 1; }
}
.css-lottie-network .connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--icmd-gold), transparent);
    opacity: 0.3;
    animation: connectionPulse 4s ease-in-out infinite;
}
.css-lottie-network .connection:nth-of-type(1) { top: 22%; left: 12%; width: 40%; transform: rotate(15deg); animation-delay: 0s; }
.css-lottie-network .connection:nth-of-type(2) { top: 55%; left: 28%; width: 35%; transform: rotate(-10deg); animation-delay: 1s; }
.css-lottie-network .connection:nth-of-type(3) { top: 35%; left: 52%; width: 30%; transform: rotate(20deg); animation-delay: 2s; }
@keyframes connectionPulse {
    0%, 100% { opacity: 0.15; }
    50%      { opacity: 0.5; }
}

/* ─── 9. INTERACTIVE TIERS VISUALIZATION ─── */
.tier-pyramid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.tier-level {
    position: relative;
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}
.tier-level::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
}
.tier-level:hover::before,
.tier-level.expanded::before {
    background: linear-gradient(135deg, var(--tier-color), var(--tier-color-light));
}
.tier-level.tier-T3 { --tier-color: var(--tier3-color); --tier-color-light: #5B8FFF; background: linear-gradient(135deg, rgba(23,105,255,0.04), rgba(23,105,255,0.01)); border: 1px solid rgba(23,105,255,0.15); }
.tier-level.tier-T2 { --tier-color: var(--tier2-color); --tier-color-light: #E8728F; background: linear-gradient(135deg, rgba(198,66,110,0.04), rgba(198,66,110,0.01)); border: 1px solid rgba(198,66,110,0.15); margin-left: 5%; margin-right: 5%; }
.tier-level.tier-T1 { --tier-color: var(--tier1-color); --tier-color-light: var(--icmd-purple-light); background: linear-gradient(135deg, rgba(81,45,168,0.04), rgba(81,45,168,0.01)); border: 1px solid rgba(81,45,168,0.15); margin-left: 10%; margin-right: 10%; }

.tier-level:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
.tier-level-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.tier-level-info {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tier-level-badge {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.tier-level:hover .tier-level-badge { transform: rotate(-3deg) scale(1.05); }
.tier-T3 .tier-level-badge { background: linear-gradient(135deg, #1769FF, #5B8FFF); }
.tier-T2 .tier-level-badge { background: linear-gradient(135deg, #C6426E, #E8728F); }
.tier-T1 .tier-level-badge { background: linear-gradient(135deg, #512DA8, #7E57C2); }
.tier-level-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--icmd-text);
    margin-bottom: 4px;
}
.tier-level-desc {
    font-size: 13.5px;
    color: var(--icmd-text-muted);
}
.tier-level-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.tier-level-toggle svg {
    width: 16px; height: 16px;
    stroke: var(--icmd-text-muted);
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.35s ease, stroke 0.3s ease;
}
.tier-level.expanded .tier-level-toggle {
    background: var(--tier-color);
}
.tier-level.expanded .tier-level-toggle svg {
    transform: rotate(180deg);
    stroke: white;
}
/* Expandable services list */
.tier-services-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.tier-level.expanded .tier-services-list {
    max-height: 500px;
    margin-top: 20px;
    opacity: 1;
}
.tier-services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}
.tier-services-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    color: var(--icmd-text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.tier-services-list li a:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    color: var(--tier-color);
    padding-left: 18px;
}
.tier-services-list li a .svc-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    font-size: 12px;
    color: var(--tier-color);
}
.tier-services-list li a:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── 10. SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── 10b. MOCKUP SITE PREVIEW CARDS ─── */
.mockup-site-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}
.mockup-site-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(81,45,168,0.14), 0 6px 16px rgba(0,0,0,0.06);
    border-color: var(--icmd-purple-light);
}
/* Browser chrome bar */
.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #F5F5F5;
    border-bottom: 1px solid #E8E8E8;
}
.mockup-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28CA41; }
.mockup-url-bar {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: #999;
    font-family: var(--font-mono);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #E8E8E8;
}
/* Card body */
.mockup-site-body {
    padding: 28px 24px 24px;
    text-align: center;
}
.mockup-site-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(81,45,168,0.08), rgba(81,45,168,0.03));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icmd-purple);
    transition: transform 0.3s ease, background 0.3s ease;
}
.mockup-site-icon svg {
    width: 26px;
    height: 26px;
}
.mockup-site-card:hover .mockup-site-icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(81,45,168,0.15), rgba(81,45,168,0.06));
}
.mockup-site-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--icmd-navy);
    margin-bottom: 6px;
}
.mockup-site-desc {
    font-size: 13.5px;
    color: var(--icmd-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.mockup-site-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--icmd-purple);
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.mockup-site-card:hover .mockup-site-cta {
    color: var(--icmd-gold-dark);
    letter-spacing: 0.5px;
}

/* ─── 11. MODERN SECTION DIVIDERS ─── */
.section-divider {
    height: 80px;
    position: relative;
    overflow: hidden;
}
.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .hero-section { height: 100vh; min-height: 500px; }
    .hero-section h1 { font-size: 36px !important; }
    .hero-content-inner { padding: 70px 0 50px !important; }
    .timeline-steps { grid-template-columns: repeat(2, 1fr); }
    .timeline-line { display: none; }
    .tier-T2 { margin-left: 2% !important; margin-right: 2% !important; }
    .tier-T1 { margin-left: 4% !important; margin-right: 4% !important; }
    .whatsapp-float-tooltip { display: none; }
    .lottie-hero-decor { display: none; }
}
@media (max-width: 768px) {
    .hero-section { height: auto; min-height: 100vh; }
    .hero-content-inner { padding: 60px 15px 40px !important; }
    .hero-section h1 { font-size: 30px !important; }
    .counter-number { font-size: 36px; }
    .timeline-steps { grid-template-columns: 1fr; }
    .tier-T2, .tier-T1 { margin-left: 0 !important; margin-right: 0 !important; }
    .tier-level { padding: 22px 20px; }
    .tier-services-list ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-section h1 { font-size: 26px !important; }
    .service-card-modern { padding: 24px 18px; }
    .whatsapp-float-btn { width: 52px; height: 52px; font-size: 26px; bottom: 20px; right: 20px; }
    .mockup-sites-grid { grid-template-columns: 1fr !important; }
}
