/* =========================================================
   Graphics Pixels — Home Page Styles
   Brand Colors: Navy #01015E  |  Magenta #C3009D
   Fonts: Poppins (headings) + Inter (body)
   ========================================================= */

:root {
    --navy: #01015E;
    --magenta: #C3009D;
    --navy-light: #2a2a8a;
    --magenta-dark: #9c007e;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #f7f7fb;
    --white: #ffffff;
    --border: #e5e5ef;
    --gradient: linear-gradient(135deg, var(--magenta) 0%, var(--navy) 100%);
    --gradient-soft: linear-gradient(135deg, #f3e6f4 0%, #e6e6f7 100%);
    --shadow-sm: 0 4px 14px rgba(1, 1, 94, 0.08);
    --shadow-md: 0 10px 30px rgba(1, 1, 94, 0.12);
    --shadow-lg: 0 20px 50px rgba(1, 1, 94, 0.18);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1.25; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 50px; font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 15px; cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--magenta); color: var(--white); box-shadow: 0 8px 20px rgba(195, 0, 157, 0.3); }
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(195, 0, 157, 0.45); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    transition: var(--transition); padding: 14px 0;
}
.header.scrolled { box-shadow: var(--shadow-sm); padding: 8px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 42px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-link {
    font-weight: 500; font-size: 15px; color: var(--navy); position: relative;
    padding: 6px 0; transition: var(--transition);
}
.nav-link i { font-size: 11px; margin-left: 4px; }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--magenta); transition: var(--transition);
}
.nav-link:hover { color: var(--magenta); }
.nav-link:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 130%; left: -16px; min-width: 220px; background: var(--white);
    box-shadow: var(--shadow-md); border-radius: 12px; padding: 10px; opacity: 0;
    visibility: hidden; transform: translateY(10px); transition: var(--transition);
    border-top: 3px solid var(--magenta);
}
.dropdown-wide { min-width: 280px; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 8px;
    font-size: 14px; color: var(--text); transition: var(--transition);
}
.dropdown-menu li a i { font-size: 10px; color: var(--magenta); flex-shrink: 0; transition: var(--transition); }
.dropdown-menu li a:hover { background: var(--gradient-soft); color: var(--magenta); padding-left: 18px; }
.dropdown-menu li a:hover i { transform: translateX(3px); }
.dropdown-menu li + li { border-top: 1px solid rgba(0,0,0,0.04); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; background: var(--gradient-soft); }
.hero-bg-shape {
    position: absolute; top: -20%; right: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(195, 0, 157, 0.12) 0%, transparent 70%);
    border-radius: 50%; animation: float 8s ease-in-out infinite;
}
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--magenta);
    font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; text-transform: uppercase;
}
.hero-title { font-size: 52px; font-weight: 800; margin-bottom: 16px; }
.hero-subtitle { font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 600; color: var(--magenta); margin-bottom: 18px; }
.hero-text { font-size: 16px; color: var(--text-light); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: 24px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; animation: float 6s ease-in-out infinite; }
.hero-image-glow {
    position: absolute; inset: 10% 10%; background: var(--gradient); filter: blur(60px);
    opacity: 0.35; border-radius: 50%; z-index: 1;
}

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 1; padding: 60px 0; background: var(--navy); margin-top: -10px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
    text-align: center; padding: 24px; border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.stat-card:hover { background: rgba(195, 0, 157, 0.15); transform: translateY(-6px); border-color: var(--magenta); }
.stat-number { font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.stat-card:hover .stat-number { color: var(--magenta); }
.stat-label { color: rgba(255, 255, 255, 0.75); font-size: 15px; font-weight: 500; }

/* ---------- Section Heads ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--magenta); margin-bottom: 14px;
    padding: 6px 18px; background: rgba(195, 0, 157, 0.08); border-radius: 50px;
}
.section-tag.light { color: var(--white); background: rgba(255, 255, 255, 0.15); }
.section-title { font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { color: var(--text-light); font-size: 16px; }

/* ---------- Trust ---------- */
.trust { padding: 100px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust-card {
    background: var(--white); padding: 40px 32px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border-top: 4px solid transparent; transition: var(--transition); text-align: center;
}
.trust-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-10px); border-top-color: var(--magenta); }
.trust-icon {
    width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 32px; color: var(--white);
    background: var(--gradient); transition: var(--transition);
}
.trust-card:hover .trust-icon { transform: rotateY(360deg); }
.trust-card h3 { font-size: 22px; margin-bottom: 12px; }
.trust-card p { color: var(--text-light); font-size: 15px; }

/* ---------- Video Testimonials ---------- */
.vt-section {
    padding: 100px 0; background: var(--bg-light); position: relative; overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.vt-section::before {
    content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(195, 0, 157, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.vt-wrap {
    max-width: 1440px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
}
.vt-left { display: flex; flex-direction: column; gap: 22px; }
.vt-track { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; }
.vt-slide { display: none; }
.vt-slide.active { display: block; animation: vtFadeIn 0.45s ease forwards; }
@keyframes vtFadeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
.vt-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.vt-thumb {
    position: relative; width: 100%; padding-top: 62%;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    background-color: var(--gradient-soft); cursor: pointer; border-radius: var(--radius); overflow: hidden;
}
.vt-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.10) 45%, rgba(1,1,94,0.75) 100%);
    border-radius: var(--radius); z-index: 1; transition: background var(--transition);
}
.vt-thumb:hover .vt-thumb-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.18) 45%, rgba(1,1,94,0.88) 100%);
}
.vt-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
    width: 68px; height: 68px; min-width: 68px; min-height: 68px; border-radius: 50%;
    background: var(--magenta); border: 3px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3;
    padding: 0; box-sizing: border-box;
    box-shadow: 0 0 0 8px rgba(195,0,157,0.2), 0 8px 28px rgba(195,0,157,0.5);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.vt-play:hover {
    background: var(--magenta-dark); transform: translate(-50%, -54%) scale(1.12);
    box-shadow: 0 0 0 12px rgba(195,0,157,0.25), 0 12px 36px rgba(195,0,157,0.65);
    border-color: rgba(255,255,255,0.6);
}
.vt-play-icon {
    display: block; width: 0; height: 0;
    border-top: 10px solid transparent; border-bottom: 10px solid transparent;
    border-left: 18px solid #ffffff; margin-left: 4px; flex-shrink: 0;
}
.vt-card-footer {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px 20px;
    z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.vt-card-info { display: flex; flex-direction: column; gap: 3px; }
.vt-card-name {
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--white);
    line-height: 1.2; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.vt-card-company { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.2; }
.vt-stars { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.vt-stars span { font-size: 16px; color: #ffb800; line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.vt-controls { display: flex; align-items: center; justify-content: center; gap: 18px; }
.vt-arrow {
    width: 46px; height: 46px; min-width: 46px; min-height: 46px; border-radius: 50%;
    background: var(--navy); border: none; outline: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; padding: 0; box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(1,1,94,0.35); flex-shrink: 0;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.vt-arrow:hover { background: var(--magenta); box-shadow: 0 6px 22px rgba(195,0,157,0.45); transform: scale(1.08); }
.vt-arrow:active { transform: scale(0.96); }
.vt-chevron { display: block; width: 10px; height: 10px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; flex-shrink: 0; }
.vt-chevron-left  { transform: rotate(-135deg); margin-left: 3px; }
.vt-chevron-right { transform: rotate(45deg);   margin-right: 3px; }
.vt-counter {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy);
    letter-spacing: 1px; min-width: 44px; text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.vt-counter em { font-style: normal; color: var(--text-light); font-weight: 400; }
.vt-right { display: flex; flex-direction: column; gap: 0; padding-left: 8px; }
.vt-stars-top { display: flex; gap: 4px; margin-bottom: 16px; }
.vt-stars-top span { font-size: 22px; color: #ffb800; }
.vt-heading {
    font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy);
    line-height: 1.28; letter-spacing: -0.5px; margin: 0 0 36px;
}
.vt-avatars { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.vt-avatar {
    width: 56px; height: 56px; min-width: 56px; min-height: 56px; border-radius: 50%;
    border: 3px solid transparent; background: transparent; padding: 0; cursor: pointer;
    outline: none; overflow: hidden; box-sizing: border-box;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}
.vt-avatar img {
    display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    filter: grayscale(55%) brightness(0.92); transition: filter var(--transition);
}
.vt-avatar:hover { border-color: var(--magenta); transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 20px rgba(195,0,157,0.25); }
.vt-avatar:hover img { filter: grayscale(0%) brightness(1); }
.vt-avatar.active { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(195,0,157,0.2), 0 6px 20px rgba(195,0,157,0.2); transform: translateY(-2px); }
.vt-avatar.active img { filter: grayscale(0%) brightness(1); }
.vt-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 800;
    letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy);
    text-decoration: none; width: fit-content; padding-bottom: 4px;
    border-bottom: 2px solid var(--navy);
    transition: color var(--transition), border-color var(--transition), gap var(--transition);
}
.vt-cta:hover { color: var(--magenta); border-color: var(--magenta); gap: 16px; }
.vt-cta-arrow {
    display: inline-block; width: 8px; height: 8px; border-top: 2px solid currentColor;
    border-right: 2px solid currentColor; transform: rotate(45deg); flex-shrink: 0;
    transition: transform var(--transition);
}
.vt-cta:hover .vt-cta-arrow { transform: rotate(45deg) translate(2px, -2px); }
/* Modal */
.vt-modal { display: none; position: fixed; inset: 0; z-index: 99999; align-items: center; justify-content: center; }
.vt-modal.open { display: flex; animation: vtModalIn 0.3s ease forwards; }
@keyframes vtModalIn { from { opacity: 0; } to { opacity: 1; } }
.vt-modal-backdrop { position: absolute; inset: 0; background: rgba(1,1,30,0.9); backdrop-filter: blur(6px); cursor: pointer; }
.vt-modal-box { position: relative; z-index: 10; width: 90%; max-width: 900px; animation: vtBoxIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes vtBoxIn { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.vt-modal-close {
    position: absolute; top: -48px; right: 0; width: 38px; height: 38px; min-width: 38px; min-height: 38px;
    border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; box-sizing: border-box;
    transition: background var(--transition), transform var(--transition);
}
.vt-modal-close:hover { background: var(--magenta); transform: scale(1.1) rotate(90deg); }
.vt-close-icon { display: block; position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.vt-close-icon::before, .vt-close-icon::after {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
}
.vt-close-icon::before { transform: translateY(-50%) rotate(45deg); }
.vt-close-icon::after  { transform: translateY(-50%) rotate(-45deg); }
.vt-modal-frame { position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.vt-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-card {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: var(--transition); position: relative;
}
.service-card > h3 {
    margin-left: 40px; margin-right: 40px; margin-top: 50px; margin-bottom: 6px;
    font-size: 24px;
}
.service-card > .service-tagline,
.service-card > p,
.service-card > .service-features,
.service-card > .service-link { margin-left: 40px; margin-right: 40px; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.service-image {
    position: relative; height: 280px; overflow: hidden; background: var(--gradient-soft);
    border-bottom: 4px solid transparent; margin-bottom: 0;
}
.service-image img {
    width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-icon {
    position: absolute; top: 240px; left: 40px; width: 70px; height: 70px; border-radius: 18px;
    background: var(--gradient); color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: var(--shadow-md); transition: var(--transition); z-index: 2;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service-tagline { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--magenta); font-size: 15px; margin-bottom: 14px; }
.service-card > p { color: var(--text-light); font-size: 15px; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; }
.service-features li { font-size: 14.5px; color: var(--text); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.service-features li i { color: var(--magenta); margin-top: 5px; font-size: 12px; }
.service-link {
    font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-link:hover { color: var(--magenta); }
.service-link:hover i { transform: translateX(6px); }
.service-card > .service-link { margin-bottom: 40px; }
.services-cta { text-align: center; margin-top: 50px; }

/* ---------- Service Lightbox ---------- */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: center; justify-content: center;
}
.lightbox.open { display: flex; animation: lightboxFadeIn 0.3s ease forwards; }
@keyframes lightboxFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-backdrop {
    position: absolute; inset: 0; background: rgba(1,1,94,0.92);
    backdrop-filter: blur(8px); cursor: pointer;
}
.lightbox-container {
    position: relative; z-index: 10; width: 90%; max-width: 800px;
    animation: lightboxSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes lightboxSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.lightbox-content {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4); position: relative;
}
.lightbox-image {
    display: block; width: 100%; height: auto; object-fit: contain;
    max-height: 70vh; padding: 30px; background: var(--gradient-soft);
}
.lightbox-title {
    text-align: center; padding: 20px 30px; color: var(--navy);
    font-size: 20px; font-weight: 700; font-family: 'Poppins', sans-serif;
}
.lightbox-close {
    position: absolute; top: -50px; right: 0; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
    color: var(--white); font-size: 24px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition); z-index: 20;
}
.lightbox-close:hover { background: var(--magenta); border-color: var(--magenta); transform: scale(1.1) rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; width: 48px; height: 48px;
    border-radius: 50%; background: var(--magenta); border: none; color: var(--white);
    display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px;
    transition: all var(--transition); z-index: 20; box-shadow: var(--shadow-md);
}
.lightbox-nav:hover { background: var(--magenta-dark); transform: scale(1.12); }
.lightbox-nav:active { transform: scale(0.96); }
.lightbox-prev { left: -70px; transform: translateY(-50%); }
.lightbox-next { right: -70px; transform: translateY(-50%); }

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.pricing-card {
    background: var(--white); padding: 44px 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
    border: 2px solid var(--border); transition: var(--transition); position: relative; text-align: center;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.pricing-card.popular { border-color: var(--magenta); box-shadow: var(--shadow-md); transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient);
    color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
    padding: 6px 20px; border-radius: 50px;
}
.plan-name { font-size: 22px; margin-bottom: 16px; }
.plan-price { font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 800; color: var(--magenta); margin-bottom: 6px; }
.plan-price span { font-size: 15px; font-weight: 400; color: var(--text-light); font-family: 'Inter', sans-serif; }
.plan-for { color: var(--text-light); font-size: 15px; margin-bottom: 24px; }
.plan-features { margin-bottom: 30px; text-align: left; }
.plan-features li { font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.plan-features li i { color: var(--magenta); font-size: 13px; }

/* ---------- Free Trial ---------- */
.free-trial { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.free-trial::before {
    content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(195, 0, 157, 0.3) 0%, transparent 70%); border-radius: 50%;
}
.free-trial-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.free-trial-info p { color: rgba(255, 255, 255, 0.8); margin-bottom: 28px; font-size: 16px; }
.free-trial-info .section-title { margin-top: 8px; }
.trial-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trial-perks li { color: rgba(255, 255, 255, 0.9); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.trial-perks li i { color: var(--magenta); width: 20px; }
.free-trial-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
/* Honeypot spam trap: hidden from real visitors, left open for bots */
.gp-honeypot { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.free-trial-form input, .free-trial-form select, .free-trial-form textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px;
    font-family: 'Inter', sans-serif; font-size: 15px; margin-bottom: 16px; transition: var(--transition);
    background: var(--white); color: var(--text);
}
.free-trial-form input:focus, .free-trial-form select:focus, .free-trial-form textarea:focus {
    outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(195, 0, 157, 0.1);
}
.file-upload { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.file-upload label {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: var(--gradient-soft);
    color: var(--navy); border-radius: 10px; cursor: pointer; font-weight: 500; font-size: 14px; transition: var(--transition);
}
.file-upload label:hover { background: var(--gradient); color: var(--white); }
.file-upload input[type="file"] { display: none; }
.file-name { font-size: 14px; color: var(--text-light); }
.upload-note { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

/* ---------- Footer ---------- */
.footer { background: #010138; color: rgba(255, 255, 255, 0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 44px; background: var(--white); padding: 8px 12px; border-radius: 8px; margin-bottom: 22px; }
.footer-address, .footer-contact { font-size: 14.5px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-address i, .footer-contact i { color: var(--magenta); margin-top: 4px; }
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14.5px; transition: var(--transition); position: relative; }
.footer-col ul li a:hover { color: var(--magenta); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 14px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: flex;
    align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: var(--transition);
}
.social-links a:hover { background: var(--magenta); transform: translateY(-4px); }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed; bottom: 30px; left: 50%; width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient); color: var(--white); border: none; cursor: pointer; font-size: 18px;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translate(-50%, 20px);
    transition: var(--transition); z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.back-to-top:hover { transform: translate(-50%, -4px); }

@media (max-width: 768px) {
    .back-to-top { bottom: 55px; width: 46px; height: 46px; font-size: 16px; }
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; will-change: opacity, transform; }
.reveal[data-reveal="up"] { transform: translateY(50px); }
.reveal[data-reveal="left"] { transform: translateX(-60px); }
.reveal[data-reveal="right"] { transform: translateX(60px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

/* ---------- Keyframes ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* =========================================================
   SERVICES PAGE (services.html)
   ========================================================= */

/* Page hero — navy gradient + dot pattern + floating icons */
.svc-hero {
    position: relative; padding: 140px 0 80px; overflow: hidden;
    background:
        radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(155deg, #01015E 0%, #16006e 45%, #0a0050 75%, #01015E 100%);
    background-size: 28px 28px, 100% 100%;
}
.svc-hero::before {
    content: ''; position: absolute; top: -15%; right: -5%; width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(195,0,157,0.22) 0%, transparent 62%);
    border-radius: 50%;
}
.svc-hero::after {
    content: ''; position: absolute; bottom: -25%; left: -3%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(195,0,157,0.13) 0%, transparent 60%);
    border-radius: 50%;
}
/* Floating photoshop-style icon pattern */
.svc-hero-pattern {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.svc-hero-pattern i {
    position: absolute; color: rgba(255,255,255,0.065);
    animation: iconDrift var(--dur, 9s) ease-in-out infinite;
    animation-delay: var(--dl, 0s);
}
@keyframes iconDrift {
    0%, 100% { transform: translateY(0px)   rotate(var(--rot, 0deg)); }
    50%       { transform: translateY(-18px) rotate(var(--rot, 0deg)); }
}
.svc-hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.svc-hero-content .hero-eyebrow { color: var(--magenta); }
.svc-hero-title { font-size: 46px; font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.15; }
.svc-hero-text { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 520px; }
.svc-hero-icons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 36px; list-style: none;
}
.svc-hero-icons li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9);
}
.svc-hero-icons li i {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(195,0,157,0.2); display: inline-flex; align-items: center;
    justify-content: center; font-size: 14px; color: #e040c8;
    flex-shrink: 0; border: 1px solid rgba(195,0,157,0.35);
}
.btn-outline-white {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12); border-color: var(--white);
    transform: translateY(-3px); color: var(--white);
}
/* Hero visual — single image */
.svc-hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-height: 300px;
}
.svc-hero-img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    display: block;
    animation: float 7s ease-in-out infinite;
}

/* To whom band */
.svc-whom { padding: 60px 0; background: #fff7fc; text-align: center; border-bottom: 1px solid var(--border); }

/* Clipping Path intro (two-column info section) */
.cp-intro { padding: 90px 0; background: var(--white); }
.cp-intro-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.cp-intro-text .section-tag { margin-bottom: 12px; }
.cp-intro-text .section-title { margin-bottom: 20px; }
.cp-intro-text p { color: var(--text-light); font-size: 15.5px; margin-bottom: 16px; }
.cp-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.cp-intro-image .svc-img { box-shadow: var(--shadow-lg); }
@media (max-width: 900px) {
    .cp-intro-inner { grid-template-columns: 1fr; gap: 36px; }
    .cp-intro-image { order: -1; }
}
.svc-whom .section-title { margin-bottom: 16px; }
.svc-whom p { max-width: 850px; margin: 0 auto; color: var(--text-light); font-size: 16px; }
.svc-whom a { color: var(--magenta); font-weight: 600; }

/* Services list */
/* Photo editing video section */
.pe-video-section { padding: 100px 0; background: var(--bg-light); }
.pe-video-wrap { max-width: 900px; margin: 0 auto; }
.pe-video-container {
    position: relative; width: 100%; padding-bottom: 56.25%;
    height: 0; overflow: hidden; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); background: #000;
}
.pe-video-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: none; border-radius: var(--radius);
}

/* Services list */
.svc-section { padding: 100px 0; }
.svc-list { display: flex; flex-direction: column; gap: 80px; }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-row.reverse .svc-media { order: 2; }
.svc-media { position: relative; }
.svc-img {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3; background: #f4f4f8;
    display: flex; align-items: center; justify-content: center; cursor: zoom-in;
}
.svc-img img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform 0.6s ease; padding: 8px;
}
.svc-row:hover .svc-img img { transform: scale(1.04); }
.svc-badge {
    display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
    border-radius: 16px; background: var(--gradient); color: var(--white); font-size: 26px;
    margin-bottom: 20px; box-shadow: 0 8px 20px rgba(195,0,157,0.3);
}
.svc-body h3 { font-size: 28px; margin-bottom: 14px; }
.svc-body p { color: var(--text-light); font-size: 15.5px; margin-bottom: 16px; }
.svc-body p:last-of-type { margin-bottom: 20px; }
.svc-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 6px; }
.svc-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.svc-features li i { color: var(--magenta); font-size: 12px; flex-shrink: 0; }
.svc-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-actions .btn { padding: 12px 26px; font-size: 14px; }

/* Before/After slider */
.ba-slider {
    position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg); cursor: ew-resize; user-select: none;
}
/* "after" image fills the full slider (bottom layer) */
.ba-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; pointer-events: none;
}
/* "before" wrapper fills the slider; JS sets clip-path to reveal only the left portion */
.ba-before-wrap {
    position: absolute; inset: 0; pointer-events: none;
}
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white);
    transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-handle i {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%; background: var(--magenta); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    box-shadow: 0 4px 14px rgba(195,0,157,0.5);
}
.ba-label {
    position: absolute; top: 16px; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
    color: var(--white); padding: 5px 14px; border-radius: 50px; letter-spacing: 0.5px;
    text-transform: uppercase; pointer-events: none; backdrop-filter: blur(4px);
}
.ba-label-before { left: 16px; background: rgba(1,1,94,0.7); }
.ba-label-after { right: 16px; background: rgba(195,0,157,0.8); }

/* FAQ accordion */
.faq-section { padding: 100px 0; background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--magenta); }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy);
    padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: var(--transition);
}
.faq-q:hover { color: var(--magenta); }
.faq-q i { font-size: 14px; color: var(--magenta); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; color: var(--text-light); font-size: 15px; margin: 0; }

/* ── Video editing hero SVG scene ── */
.ve-svg-scene {
    width: 100%; max-width: 480px; margin: 0 auto;
    display: block; overflow: visible;
    filter: drop-shadow(0 24px 64px rgba(195,0,157,0.22));
}
.ve-svg {
    width: 100%; height: auto; display: block;
    max-height: 400px; overflow: visible;
}

/* Monitor screen pulse */
@keyframes vePulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.06); }
}
.ve-pulse { animation: vePulse 4s ease-in-out infinite; transform-origin: 200px 120px; }

/* Scan line sweeping down the screen */
@keyframes veScan {
    0%   { transform: translateY(0); opacity: 0.18; }
    80%  { opacity: 0.18; }
    100% { transform: translateY(171px); opacity: 0; }
}
.ve-scanline { animation: veScan 3s linear infinite; }

/* Play button pulse ring */
@keyframes veRing {
    0%,100% { r: 28; opacity: 0.4; }
    50%     { r: 34; opacity: 0.1; }
}
.ve-play-ring { animation: veRing 2s ease-in-out infinite; }

/* Play button glow */
@keyframes vePlayGlow {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.8; transform: scale(1.08); }
}
.ve-play-pulse { animation: vePlayGlow 2s ease-in-out infinite; transform-origin: 200px 117px; }

/* Timeline playhead sliding */
@keyframes vePlayhead {
    0%   { transform: translateX(0); }
    100% { transform: translateX(138px); }
}
.ve-playhead { animation: vePlayhead 4s linear infinite; }

/* Clapperboard bob */
@keyframes veClap {
    0%,100% { transform: translate(355px,15px) rotate(0deg); }
    20%     { transform: translate(355px,12px) rotate(-6deg); }
    40%     { transform: translate(355px,15px) rotate(0deg); }
}
.ve-clap { animation: veClap 5s ease-in-out infinite; transform-origin: 355px 35px; }

/* Film strip scroll */
@keyframes veFilm {
    0%   { transform: translate(10px,40px); }
    100% { transform: translate(10px,0px); }
}
.ve-film { animation: veFilm 6s linear infinite; }

/* Color wheel spin */
@keyframes veWheelSpin {
    from { transform: translate(390px,295px) rotate(0deg); }
    to   { transform: translate(390px,295px) rotate(360deg); }
}
.ve-wheel { animation: veWheelSpin 12s linear infinite; }

/* First clip highlight blink */
@keyframes veClip {
    0%,100% { opacity: 0.85; }
    50%     { opacity: 0.5; }
}
.ve-clip1 { animation: veClip 2.5s ease-in-out infinite; }

/* Waveform shimmer */
@keyframes veWave {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.5; }
}
.ve-wave { animation: veWave 1.8s ease-in-out infinite; }

/* Floating dots */
@keyframes veDot1 { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-10px); } }
@keyframes veDot2 { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-14px); } }
@keyframes veDot3 { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px);  } }
.ve-dot1 { animation: veDot1 3s ease-in-out infinite; }
.ve-dot2 { animation: veDot2 3.8s ease-in-out infinite 0.6s; }
.ve-dot3 { animation: veDot3 2.8s ease-in-out infinite 1.2s; }

/* Video elements */
.video-hero-thumb {
    position: relative; width: 100%; aspect-ratio: 16/9;
    border-radius: 20px; overflow: hidden; background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    transition: transform 0.4s ease;
}
.video-hero-thumb:hover { transform: scale(1.02); }
.video-row-thumb { aspect-ratio: 4/3; }
.video-hero-thumb .yt-thumb-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.yt-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(195,0,157,0.22) 0%, rgba(1,1,94,0.32) 100%);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease;
}
.video-hero-thumb:hover .yt-thumb-overlay {
    background: linear-gradient(135deg, rgba(195,0,157,0.45) 0%, rgba(1,1,94,0.55) 100%);
}
.yt-play-btn {
    width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    pointer-events: none;
}
.yt-play-btn i { color: #C3009D; font-size: 20px; margin-left: 4px; }
.video-hero-thumb:hover .yt-play-btn {
    transform: scale(1.14);
    box-shadow: 0 8px 36px rgba(195,0,157,0.55);
}

/* Video modal */
.video-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: center; justify-content: center;
}
.video-modal.open { display: flex; animation: lightboxFadeIn 0.3s ease forwards; }
.video-modal-backdrop {
    position: absolute; inset: 0; background: rgba(1,1,94,0.92);
    backdrop-filter: blur(8px); cursor: pointer;
}
.video-modal-container {
    position: relative; z-index: 10; width: 90%; max-width: 900px;
    aspect-ratio: 16/9; animation: lightboxSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.video-modal-content {
    width: 100%; height: 100%; border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.video-modal-close {
    position: absolute; top: -50px; right: 0; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
    color: var(--white); font-size: 22px; cursor: pointer; transition: all var(--transition); z-index: 20;
}
.video-modal-close:hover { background: var(--magenta); border-color: var(--magenta); transform: scale(1.1) rotate(90deg); }

/* Video responsive */
@media (max-width: 768px) {
    .video-modal-container { width: 95%; aspect-ratio: 9/16; }
    .video-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 20px; }
}
@media (max-width: 992px) {
    .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .svc-hero-visual { order: -1; }
    .svc-hero-title { font-size: 36px; }
    .svc-row { grid-template-columns: 1fr; gap: 30px; }
    .svc-row.reverse .svc-media { order: 0; }
    .svc-body h3 { font-size: 24px; }
}
@media (max-width: 768px) {
    .svc-hero { padding: 110px 0 60px; }
    .svc-hero-icons { grid-template-columns: 1fr; }
    .svc-hero-text { max-width: 100%; }
}
@media (max-width: 480px) {
    .svc-hero-title { font-size: 28px; }
    .svc-hero-icons { gap: 8px; }
    .svc-actions { flex-direction: column; }
    .svc-actions .btn { width: 100%; }
    .ba-handle i { width: 38px; height: 38px; font-size: 14px; }
}

/* ---------- Lightbox Responsive ---------- */
@media (max-width: 1024px) {
    .lightbox-prev { left: -10px; }
    .lightbox-next { right: -10px; }
}
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        position: absolute !important; top: auto !important; bottom: 10px !important; width: 40px; height: 40px;
        left: auto !important; right: auto !important; transform: none !important;
    }
    .lightbox-prev { left: 10px !important; }
    .lightbox-next { right: 10px !important; }
    .lightbox-container { width: 95%; }
    .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 20px; }
    .lightbox-image { padding: 20px; max-height: 60vh; }
}

/* ---------- Responsive ---------- */
/* Video testimonials responsive */
@media (max-width: 992px) {
    .vt-wrap { grid-template-columns: 1fr; gap: 40px; }
    .vt-right { padding-left: 0; }
    .vt-heading { font-size: 24px; }
}
@media (max-width: 768px) {
    .vt-play { width: 54px; height: 54px; min-width: 54px; min-height: 54px; }
    .vt-play-icon { border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid #fff; }
    .vt-heading { font-size: 20px; }
    .vt-avatar { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
}
@media (max-width: 992px) {
    .hero-title { font-size: 42px; }
    .hero-container, .free-trial-container { grid-template-columns: 1fr; }
    .hero-content { order: 1; }
    .hero-image { order: 0; max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 30px; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed; top: 0; right: -100%; width: 82%; max-width: 360px; height: 100vh;
        background: var(--white); flex-direction: column; align-items: flex-start;
        padding: 90px 28px 32px; overflow-y: auto;
        box-shadow: var(--shadow-lg); transition: right 0.4s ease; gap: 24px;
    }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
    .nav-item { width: 100%; }
    .nav-link { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 6px 0 6px 12px; border-top: none; border-left: 2px solid var(--magenta);
        margin: 4px 0 8px; border-radius: 0;
    }
    .dropdown-menu li a { font-size: 13.5px; padding: 8px 10px; }
    .nav-cta { width: 100%; margin-top: 12px; }
    .nav-toggle { display: flex; z-index: 1100; }
    .hero { padding: 120px 0 70px; }
    .hero-title { font-size: 34px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Photo Editing Page SVG Scene ── */
.pe-svg-scene {
    width: 100%; max-width: 480px; margin: 0 auto;
    display: block; overflow: visible;
    filter: drop-shadow(0 20px 50px rgba(0,255,255,0.15));
}
.pe-svg {
    width: 100%; height: auto; display: block;
    max-height: 400px; overflow: visible;
}

/* Canvas glow frame pulse */
@keyframes peCanvasGlow {
    0%,100% { stroke-width: 2; opacity: 0.8; }
    50%     { stroke-width: 3.5; opacity: 1; }
}
.pe-canvas-glow { animation: peCanvasGlow 2.5s ease-in-out infinite; }

/* Brightness slider animation */
@keyframes peBrightnessSlide {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(30px); }
}
.pe-brightness-slider { animation: peBrightnessSlide 3s ease-in-out infinite; }

/* Saturation slider animation */
@keyframes peSaturationSlide {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-30px); }
}
.pe-saturation-slider { animation: peSaturationSlide 3.2s ease-in-out infinite; }

/* Hue wheel rotation */
@keyframes peHueWheel {
    from { transform: translate(60px, 280px) rotateZ(0deg); }
    to   { transform: translate(60px, 280px) rotateZ(360deg); }
}
.pe-hue-wheel { animation: peHueWheel 6s linear infinite; }

/* Hue dot pulse */
@keyframes peHuePulse {
    0%,100% { r: 4; filter: drop-shadow(0 0 2px #00ffff); }
    50%     { r: 7; filter: drop-shadow(0 0 8px #00ffff); }
}
.pe-hue-dot { animation: peHuePulse 2s ease-in-out infinite; }

/* Crop tool pulse */
@keyframes peCropPulse {
    0%,100% { opacity: 0.7; }
    50%     { opacity: 1; }
}
.pe-crop { animation: peCropPulse 2.2s ease-in-out infinite; }

/* Floating particles with organic motion */
@keyframes peDot1Float {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-15px) translateX(8px); }
}
@keyframes peDot2Float {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-12px) translateX(-10px); }
}
@keyframes peDot3Float {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(8px) translateX(12px); }
}
.pe-dot1 { animation: peDot1Float 3.5s ease-in-out infinite; }
.pe-dot2 { animation: peDot2Float 4s ease-in-out infinite 0.3s; }
.pe-dot3 { animation: peDot3Float 3.2s ease-in-out infinite 0.8s; }

/* ── Home Page SVG Scene ── */
.home-svg-scene {
    width: 100%; max-width: 520px; margin: 0 auto;
    display: block; overflow: visible;
    filter: drop-shadow(0 24px 60px rgba(195,0,157,0.18));
}
.home-svg {
    width: 100%; height: auto; display: block;
    max-height: 450px; overflow: visible;
}

/* Hub central glow pulse */
@keyframes homeHubPulse {
    0%,100% { opacity: 0.7; }
    50%     { opacity: 1; }
}
.home-hub { animation: homeHubPulse 2.5s ease-in-out infinite; }

/* Background glow expansion */
@keyframes homeGlowPulse {
    0%,100% { opacity: 0.7; }
    50%     { opacity: 0.95; }
}
.home-pulse { animation: homeGlowPulse 3s ease-in-out infinite; }

/* Icon animations */
@keyframes homePhotoFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}
@keyframes homeVideoSpin {
    from { transform: rotateZ(0deg); }
    to   { transform: rotateZ(360deg); }
}
@keyframes home3dPulse {
    0%,100% { transform: scaleX(1); }
    50%     { transform: scaleX(1.15); }
}
@keyframes homeRetouchPulse {
    0%,100% { opacity: 0.8; }
    50%     { opacity: 1; }
}
@keyframes homeClippingWave {
    0%,100% { transform: translateX(0); }
    50%     { transform: translateX(8px); }
}
@keyframes homeColorSpin {
    from { transform: rotateZ(0deg); }
    to   { transform: rotateZ(360deg); }
}

.home-photo { animation: homePhotoFloat 3.5s ease-in-out infinite; }
.home-video { animation: homeVideoSpin 6s linear infinite; }
.home-3d { animation: home3dPulse 3s ease-in-out infinite; }
.home-retouch { animation: homeRetouchPulse 2.8s ease-in-out infinite 0.2s; }
.home-clipping { animation: homeClippingWave 4s ease-in-out infinite; }
.home-color { animation: homeColorSpin 8s linear infinite; }

/* Floating particles */
@keyframes homeDot1 {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-10px) translateX(8px); }
}
@keyframes homeDot2 {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-12px) translateX(-8px); }
}
@keyframes homeDot3 {
    0%,100% { transform: translateY(-6px) translateX(0); }
    50%     { transform: translateY(6px) translateX(6px); }
}
.home-dot1 { animation: homeDot1 3.5s ease-in-out infinite; }
.home-dot2 { animation: homeDot2 4s ease-in-out infinite 0.5s; }
.home-dot3 { animation: homeDot3 3s ease-in-out infinite 1s; }

/* ── Contact Page SVG Scene ── */
.contact-svg-scene {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-svg-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(195, 0, 157, 0.3));
}

@keyframes contactFramePulse {
    0%,100% { opacity: 0.8; }
    50%     { opacity: 1.2; }
}

@keyframes contactSpiralRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes contactIconPulse {
    0%,100% { opacity: 0.5; }
    50%     { opacity: 1; }
}

@keyframes contactTopDotPulse {
    0%,100% { r: 8px; }
    50%     { r: 14px; }
}

@keyframes contactFloatDot {
    0%,100% { transform: translate(0, 0); }
    25%     { transform: translate(8px, -8px); }
    50%     { transform: translate(0, -15px); }
    75%     { transform: translate(-8px, -8px); }
}

.contact-frame { animation: contactFramePulse 3s ease-in-out infinite; }
.contact-spiral-1 { animation: contactSpiralRotate 8s linear infinite; }
.contact-spiral-2 { animation: contactSpiralRotate 10s linear infinite reverse; }
.contact-spiral-3 { animation: contactSpiralRotate 6s linear infinite; }

.contact-left-circle { animation: contactIconPulse 2.5s ease-in-out infinite; }
.contact-top-dot { animation: contactTopDotPulse 2s ease-in-out infinite; }

.contact-float-dot-1 { animation: contactFloatDot 4s ease-in-out infinite; }
.contact-float-dot-2 { animation: contactFloatDot 5s ease-in-out infinite 0.5s; }
.contact-float-dot-3 { animation: contactFloatDot 4.5s ease-in-out infinite 1s; }

/* Contact Section - Get In Touch */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info, .contact-form-wrapper { width: 100%; }
.contact-info-title { font-size: 32px; margin-bottom: 15px; color: var(--navy); }

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .contact-wrapper { gap: 30px; }
    .contact-info-title { font-size: 26px; }
}

@media (max-width: 600px) {
    .contact-wrapper { gap: 20px; }
    .contact-info-title { font-size: 22px; }
}

/* ── 3D Rendering — What Makes Us Different ── */
.td-different { padding: 100px 0; background: var(--bg-light); }
.td-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.td-diff-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-sm); text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.td-diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.td-diff-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-soft); color: var(--magenta); font-size: 26px; margin-bottom: 20px; }
.td-diff-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.td-diff-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ── 3D Rendering — Our Process ── */
.td-process { padding: 100px 0; background: var(--white); }
.td-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 60px; }
.td-process-step { background: var(--bg-light); border-radius: var(--radius); padding: 36px 28px; text-align: center; position: relative; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.td-process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.td-step-num { display: block; font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 16px; }
.td-step-icon { font-size: 28px; color: var(--magenta); margin-bottom: 16px; display: block; }
.td-process-step h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.td-process-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── 3D Rendering — Industries ── */
.td-industries { padding: 100px 0; background: var(--bg-light); }
.td-industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 60px; }
.td-industry-card { background: var(--white); border-radius: var(--radius); padding: 32px 16px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); border: 1px solid var(--border); }
.td-industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.td-industry-card i { font-size: 28px; color: var(--magenta); }
.td-industry-card span { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

@media (max-width: 1100px) {
    .td-industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .td-diff-grid { grid-template-columns: 1fr 1fr; }
    .td-process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .td-diff-grid { grid-template-columns: 1fr; }
    .td-process-grid { grid-template-columns: 1fr; }
    .td-industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Free Trial Modal (appears on all pages) ── */
.trial-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.trial-modal-overlay.active { opacity: 1; visibility: visible; }
.trial-modal {
    background: #fff; border-radius: 16px;
    width: 100%; max-width: 560px; max-height: 92vh;
    overflow-y: auto; padding: 40px 36px 32px;
    position: relative;
    transform: translateY(24px); transition: transform 0.3s ease;
    scrollbar-width: thin;
}
.trial-modal-overlay.active .trial-modal { transform: translateY(0); }
.trial-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px; border-radius: 50%;
    border: none; background: #f0f0f6; cursor: pointer;
    font-size: 15px; color: #555;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.trial-modal-close:hover { background: #e0e0ea; }
.trial-modal-head { margin-bottom: 22px; }
.trial-modal-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--magenta); margin-bottom: 6px;
}
.trial-modal-title {
    font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.25;
}
.trial-modal .free-trial-form { background: none; padding: 0; box-shadow: none; border-radius: 0; }
@media (max-width: 520px) {
    .trial-modal { padding: 32px 18px 24px; }
    .trial-modal-title { font-size: 19px; }
    .trial-modal .form-row { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 40px; }
    .section-title { font-size: 26px; }
    .trust-card, .testimonial-card, .free-trial-form { padding: 28px; }
    .service-card > h3 { margin-left: 28px; margin-right: 28px; margin-top: 50px; }
    .service-card > .service-tagline, .service-card > p,
    .service-card > .service-features, .service-card > .service-link { margin-left: 28px; margin-right: 28px; }
    .service-icon { left: 28px; top: 210px; }
    .service-image { height: 240px; }
    .testimonial-card p { font-size: 16px; }
    .how-steps { grid-template-columns: 1fr; }
}

/* ── Photo Retouching — Who Uses ── */
.pr-who-section { padding: 100px 0; background: var(--bg-light); }
.pr-who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 60px; }
.pr-who-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.pr-who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pr-who-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--magenta); margin: 0 auto 20px; }
.pr-who-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pr-who-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1100px) { .pr-who-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .pr-who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pr-who-grid { grid-template-columns: 1fr; } }

/* ── Photo Retouching — Why Trust Us ── */
.pr-trust-section { padding: 100px 0; background: var(--white); }
.pr-trust-inner { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.pr-trust-content .section-tag { margin-bottom: 12px; }
.pr-trust-content .section-title { margin-bottom: 40px; }
.pr-trust-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.pr-trust-list li { display: flex; gap: 20px; align-items: flex-start; }
.pr-trust-list li > i { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--magenta); margin-top: 2px; }
.pr-trust-list li > div { display: flex; flex-direction: column; gap: 4px; }
.pr-trust-list li strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.pr-trust-list li span { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.pr-trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pr-stat { background: var(--gradient); border-radius: var(--radius); padding: 32px 24px; text-align: center; color: var(--white); }
.pr-stat-number { display: block; font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.pr-stat-label { display: block; font-size: 13px; font-weight: 500; opacity: 0.85; line-height: 1.3; }

@media (max-width: 1024px) { .pr-trust-inner { grid-template-columns: 1fr; gap: 60px; } .pr-trust-stats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .pr-trust-stats { grid-template-columns: repeat(2, 1fr); } }

/* ── How It Works Timeline ── */
.how-works { padding: 100px 0; background: linear-gradient(135deg, #f9f8fd 0%, #fef5ff 100%); position: relative; overflow: hidden; }
.how-works::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(195, 0, 157, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(1, 1, 94, 0.02) 0%, transparent 50%); pointer-events: none; }

.how-timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 80px; position: relative; z-index: 1; }

.how-item { position: relative; flex: 1 1 0; min-width: 0; padding: 0 8px; }

.how-arrow { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 44px; height: 84px; color: var(--magenta); font-size: 20px; opacity: 0.55; }

.how-circle { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; z-index: 2; }

.how-icon-bg { width: 84px; height: 84px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white); box-shadow: 0 6px 22px rgba(195, 0, 157, 0.18); transition: transform var(--transition), box-shadow var(--transition); }

.how-item:hover .how-icon-bg { transform: scale(1.06); box-shadow: 0 10px 30px rgba(195, 0, 157, 0.25); }

/* Sequential animation for each step */
@keyframes howStep1 { 0%, 25%, 100% { filter: brightness(1); box-shadow: 0 6px 22px rgba(195, 0, 157, 0.18); } 10%, 15% { filter: brightness(1.12); box-shadow: 0 8px 28px rgba(195, 0, 157, 0.3); } }
@keyframes howStep2 { 0%, 50%, 100% { filter: brightness(1); box-shadow: 0 6px 22px rgba(195, 0, 157, 0.18); } 35%, 40% { filter: brightness(1.12); box-shadow: 0 8px 28px rgba(195, 0, 157, 0.3); } }
@keyframes howStep3 { 0%, 75%, 100% { filter: brightness(1); box-shadow: 0 6px 22px rgba(195, 0, 157, 0.18); } 60%, 65% { filter: brightness(1.12); box-shadow: 0 8px 28px rgba(195, 0, 157, 0.3); } }
@keyframes howStep4 { 0%, 100% { filter: brightness(1); box-shadow: 0 6px 22px rgba(195, 0, 157, 0.18); } 85%, 90% { filter: brightness(1.12); box-shadow: 0 8px 28px rgba(195, 0, 157, 0.3); } }

.how-step-1 { animation: howStep1 4s infinite; }
.how-step-2 { animation: howStep2 4s infinite; }
.how-step-3 { animation: howStep3 4s infinite; }
.how-step-4 { animation: howStep4 4s infinite; }

.how-content { text-align: center; }
.how-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.how-content p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 900px) {
    .how-timeline { flex-direction: column; align-items: center; gap: 0; margin-top: 50px; }
    .how-item { width: 100%; max-width: 380px; padding: 0; }
    .how-arrow { width: 100%; height: auto; margin: 4px 0; transform: rotate(90deg); }
}

@media (max-width: 600px) {
    .how-works { padding: 60px 0; }
    .how-icon-bg { width: 72px; height: 72px; font-size: 28px; }
    .how-content h3 { font-size: 16px; }
    .how-content p { font-size: 14px; }
}

/* ── WhatsApp Chat Button ── */
.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: whatsappRipple 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappRipple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        font-size: 26px;
        right: 16px;
        bottom: 55px;
    }
}
