/* ============================================================
   EaseTech Solutions - Website v3.0
   Modern, Dynamic, Fresh Design
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

/* ============================================================
   ANNOUNCEMENT / PROMO BAR
   ============================================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--danger) 0%, #b91c1c 50%, var(--danger) 100%);
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
    color: var(--white);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.02em;
}

.announcement-bar .promo-countdown {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.announcement-bar .countdown-unit {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-size: 0.8rem;
}

@keyframes shimmerBar {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    background: var(--primary-50);
    color: var(--primary);
    text-decoration: none;
}

.nav-links a.active {
    color: var(--primary);
    background: var(--primary-50);
    font-weight: 600;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    text-decoration: none;
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--secondary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(37, 99, 235, 0.8) 40%, rgba(59, 130, 246, 0.75) 70%, rgba(29, 78, 216, 0.85) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-home .hero-bg-image {
    background-image: url('../img/hero-bg.jpg');
}

.hero-product .hero-bg-image {
    background-image: url('../img/conference.jpg');
}

.hero-about .hero-bg-image {
    background-image: url('../img/team.jpg');
}

.hero-solutions .hero-bg-image {
    background-image: url('../img/venue-table.jpg');
}

.hero-contact .hero-bg-image {
    background-image: url('../img/cta-bg.jpg');
}

.hero-cases .hero-bg-image {
    background-image: url('../img/wedding-aisle.jpg');
}

.hero-default .hero-bg-image {
    background-image: url('../img/hero-bg.jpg');
}

.hero.hero-compact {
    padding: 4rem 0 3rem;
}

.hero.hero-compact h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

/* Version badge */
.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.version-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---- Hero Video ---- */
.hero-video-wrapper {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9;
    background: #0a0f1e;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.7) 100%);
    cursor: pointer;
    transition: background 0.4s ease;
    z-index: 3;
}

.hero-video-overlay:hover {
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.hero-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.play-btn-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--primary);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.play-btn-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.hero-play-btn:hover .play-btn-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
}

.play-btn-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: play-ring-pulse 2.5s ease-out infinite;
}

.play-btn-ring-2 {
    inset: -22px;
    border-color: rgba(255, 255, 255, 0.15);
    animation-delay: 0.8s;
}

@keyframes play-ring-pulse {
    0% {
        transform: scale(0.85);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.hero-play-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-video-overlay:hover .hero-play-label {
    opacity: 1;
}

/* Video playing state */
.hero-video-container.is-playing .hero-video-overlay {
    opacity: 0;
    pointer-events: none;
}

.hero-video-container.is-playing:hover .hero-video-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Pause state when playing */
.hero-video-container.is-playing .play-btn-icon svg {
    /* swap to pause bars */
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        margin-top: 2rem;
    }

    .hero-video-container {
        border-radius: var(--radius);
    }

    .hero-play-btn {
        width: 64px;
        height: 64px;
    }

    .play-btn-icon svg {
        width: 22px;
        height: 22px;
    }

    .play-btn-ring {
        inset: -8px;
    }

    .play-btn-ring-2 {
        inset: -16px;
    }
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.hero-decoration-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 15%;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section {
    background: var(--secondary);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.stats-strip {
    display: grid;
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white), var(--primary-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
    padding: 5rem 0;
}

section.bg-light,
section.alt-bg {
    background: var(--light-bg);
}

/* Section with background image */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.section-with-bg>.container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-label {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2,
h2.section-title {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary-200);
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-50);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================================
   BADGE LABEL
   ============================================================ */
.badge-label {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list {
    text-align: left;
    margin: 1.5rem 0;
}

.features-list li {
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text);
}

.features-list li::before {
    content: "\2713";
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.features-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ============================================================
   IMAGES
   ============================================================ */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: var(--radius);
}

.shadow-lg {
    box-shadow: var(--shadow-xl);
}

.align-items-center {
    align-items: center;
}

.text-primary {
    color: var(--primary) !important;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 1.5rem 1.25rem;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    color: var(--primary-200);
    font-size: 1.2rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-50), var(--white));
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.35rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.25rem 0 0.5rem;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.price-promo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--danger);
    margin: 0.5rem 0;
    line-height: 1;
}

.promo-badge-card {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid #fecaca;
}

/* ============================================================
   LAUNCH BANNER
   ============================================================ */
.launch-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #7c3aed 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.launch-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.launch-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 750px;
    margin: 0 auto;
}

.launch-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.launch-content h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.launch-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
}

.launch-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.launch-feature,
.launch-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.launch-feature i,
.launch-feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.9) 0%, rgba(37, 99, 235, 0.88) 50%, rgba(124, 58, 237, 0.9) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/cta-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.88) 0%, rgba(37, 99, 235, 0.85) 50%, rgba(124, 58, 237, 0.88) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-section .container h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section .container p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-col a i {
    margin-right: 0.4rem;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    padding: 4rem 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-grid-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.gallery-grid-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-wrapper {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.icon-box {
    width: 52px;
    height: 52px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.contact-item h5 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: var(--secondary);
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ============================================================
   SOLUTION BLOCKS
   ============================================================ */
.solution-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.solution-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.problem-label,
.answer-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

.problem-label {
    background: #fef3c7;
    color: #92400e;
}

.answer-label {
    background: #d1fae5;
    color: #065f46;
}

.solution-problem h3,
.solution-answer h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.solution-problem {
    padding-right: 1rem;
}

.solution-answer {
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

/* ============================================================
   TECH GRID
   ============================================================ */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    min-width: 120px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-200);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ============================================================
   MINI FEATURES
   ============================================================ */
.mini-features {
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mini-features li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.mini-features li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================================
   CASES / TESTIMONIALS
   ============================================================ */
.case-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.case-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.case-story h3 {
    font-size: 1.4rem;
    margin: 0.75rem 0 1rem;
}

.case-story h3 i {
    margin-right: 0.5rem;
}

.case-quote {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.case-result-wrapper {
    text-align: center;
}

.case-result-card {
    background: linear-gradient(135deg, var(--light-bg), var(--primary-50));
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--primary-100);
}

.case-metric {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.case-result-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-result-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
    border-top: 3px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author i {
    margin-right: 0.35rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    transition: color 0.2s;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding-left: 3rem;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    border-radius: 3px;
}

.roadmap-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: -3rem;
    top: 0.25rem;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    z-index: 1;
    background: var(--primary);
}

.roadmap-item.completed .roadmap-marker {
    background: var(--success);
}

.roadmap-item.current .roadmap-marker {
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.2);
}

.roadmap-item.future .roadmap-marker {
    background: var(--text-light);
}

.roadmap-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.roadmap-item.current .roadmap-content {
    border-left: 3px solid var(--primary);
}

.roadmap-content h3 {
    font-size: 1.15rem;
    margin: 0.5rem 0 0.75rem;
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.promo-countdown-block {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.promo-countdown-block h3 {
    color: var(--danger);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

/* Pricing page countdown section */
.promo-countdown-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fef2f2, #fff7ed);
}

.promo-banner-large {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-banner-large .promo-banner-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.promo-banner-large h2 {
    color: var(--danger);
    margin-bottom: 0.5rem;
}

.promo-banner-large p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.countdown-timer {
    display: inline-flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.countdown-unit {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    min-width: 80px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.save-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.countdown-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    min-width: 70px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #fecaca;
}

.countdown-item .number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

body.no-animations .fade-in-section {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
}

.grid-3>.fade-in-section:nth-child(1) {
    transition-delay: 0s;
}

.grid-3>.fade-in-section:nth-child(2) {
    transition-delay: 0.1s;
}

.grid-3>.fade-in-section:nth-child(3) {
    transition-delay: 0.2s;
}

.grid-3>.fade-in-section:nth-child(4) {
    transition-delay: 0.3s;
}

.grid-3>.fade-in-section:nth-child(5) {
    transition-delay: 0.4s;
}

.grid-3>.fade-in-section:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .launch-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .launch-content .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.25rem;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .image-col {
        order: -1;
        margin-bottom: 1rem;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 100%;
        min-width: 100%;
    }

    .pricing-card {
        min-width: 100%;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .solution-answer {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .solution-problem {
        padding-right: 0;
    }

    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 0.6rem;
    }

    .countdown-item .number {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .case-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .case-result-card {
        margin-top: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Image strip responsive */
    .image-strip-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .image-strip-grid>div {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .announcement-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .announcement-bar .promo-countdown {
        display: flex;
        margin-left: 0;
        margin-top: 0.3rem;
    }

    .roadmap {
        padding-left: 2.5rem;
    }

    .roadmap-marker {
        left: -2.5rem;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .roadmap-content {
        padding: 1.25rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================================
   ENHANCED VISUAL SECTIONS
   ============================================================ */

/* Image reveal on hover for grid-2 sections */
.content-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.content-image-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.content-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-image-card:hover img {
    transform: scale(1.05);
}

/* Parallax-like subtle floating for decorative images */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-animation {
    animation: float-gentle 4s ease-in-out infinite;
}

/* Image with gradient overlay */
.image-overlay-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-overlay-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Visual separator between sections */
.section-visual-divider {
    text-align: center;
    padding: 2rem 0;
}

.section-visual-divider img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Enhanced gallery grid hover effects */
.gallery-grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.gallery-grid-item:hover::after {
    opacity: 1;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-white {
    color: var(--white) !important;
}

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

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

/* ============================================================
   SCREENSHOT PREVIEWS
   ============================================================ */
.feature-card .screenshot-preview {
    margin-top: 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.feature-card .screenshot-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card .screenshot-preview:hover img {
    transform: scale(1.03);
}

.feature-card .screenshot-preview::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(37, 99, 235, 0.85);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.feature-card .screenshot-preview:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.solution-screenshot {
    margin-top: 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.solution-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.solution-screenshot:hover img {
    transform: scale(1.02);
}

.solution-screenshot:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Screenshot Lightbox */
.screenshot-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2rem;
    animation: lightboxFadeIn 0.3s ease;
}

.screenshot-lightbox.active {
    display: flex;
}

.screenshot-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    animation: lightboxZoomIn 0.3s ease;
}

.screenshot-lightbox .lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    border: none;
}

.screenshot-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}