/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --accent: #f4a261;
    --gold: #d4af37;
    --dark: #0d1b2a;
    --light: #f5f7fb;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-3d: 0 30px 80px rgba(13, 27, 42, 0.35);
    --radius: 14px;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.grad-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.grad-text-2 {
    background: linear-gradient(120deg, var(--gold) 0%, #f5d778 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.35);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: var(--white);
    border-color: transparent;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-full {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    display: inline-block;
}

.btn-nav:hover {
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* ===== 3D TILT CARDS ===== */
.tilt-card {
    perspective: 1000px;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
    box-shadow: var(--shadow-3d);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a:not(.btn-nav) {
    color: var(--dark);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

.footer-logo .logo-img {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.logo-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    transform: rotate(-6deg);
    transition: var(--transition);
}

.logo:hover .logo-badge {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links > li {
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.93rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.navbar.scrolled .nav-toggle {
    color: var(--dark);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: url('images/hero-bg-opt.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.72) 30%, rgba(8, 8, 12, 0.34) 58%, rgba(8, 8, 12, 0.1) 78%, rgba(8, 8, 12, 0.16) 100%),
        linear-gradient(to top, rgba(8, 8, 12, 0.86) 0%, transparent 28%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.shape-1 {
    width: 520px;
    height: 520px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.35), rgba(230, 57, 70, 0.05));
    top: -140px;
    right: -120px;
    animation: floatShape 9s ease-in-out infinite;
}

.shape-2 {
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.3), rgba(244, 162, 97, 0.05));
    bottom: -80px;
    left: 15%;
    animation: floatShape 7s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 157, 144, 0.35), rgba(45, 157, 144, 0.05));
    top: 30%;
    left: 5%;
    animation: floatShape 11s ease-in-out infinite;
}

.float-print {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.float-1 { font-size: 9rem; top: 18%; right: 12%; animation: floatY 6s ease-in-out infinite; }
.float-2 { font-size: 6rem; bottom: 22%; right: 28%; animation: floatY 8s ease-in-out infinite reverse; }
.float-3 { font-size: 5rem; top: 65%; left: 42%; animation: floatY 7s ease-in-out infinite 1s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(6deg); }
}

@keyframes floatShape {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(8deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 130px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp .8s ease .15s both;
}

.hero-eyebrow::before {
    content: '';
    width: 48px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 26px;
    letter-spacing: -2px;
    animation: fadeUp .8s ease .3s both;
}

.hero-accent {
    color: var(--primary);
    text-shadow: 0 0 38px rgba(230, 57, 70, 0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 38px;
    line-height: 1.75;
    font-weight: 300;
    animation: fadeUp .8s ease .45s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
    animation: fadeUp .8s ease .6s both;
}

.btn-primary {
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(230, 57, 70, 0.5);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.btn-play .play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-play:hover {
    border-color: var(--primary);
    background: rgba(230, 57, 70, 0.14);
}

.btn-play:hover .play-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.12);
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    padding-top: 36px;
    animation: fadeUp .8s ease .75s both;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat h3 span {
    font-size: 1.4rem;
    color: var(--primary);
    margin-left: 2px;
}

.stat-premium {
    letter-spacing: -0.5px;
}

.stat p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: var(--transition);
}

.scroll-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.scroll-arrow i {
    color: var(--primary);
    font-size: 1rem;
    animation: scrollArrow 1.6s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

@keyframes scrollArrow {
    0% { transform: translateY(0); opacity: 1; }
    55% { transform: translateY(8px); opacity: 0.4; }
    70% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.02rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.services-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: -40px auto 50px;
    max-width: 460px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 60px;
    box-shadow: 0 16px 40px rgba(230, 57, 70, 0.4);
    position: relative;
    z-index: 3;
}

.services-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.services-badge strong {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.services-badge span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.services::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06), transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 24px rgba(13, 27, 42, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(230, 57, 70, 0.25);
}

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

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: 18px;
    right: -34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 4px 44px;
    font-size: 0.72rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 162, 97, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.08);
}

.service-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.72rem;
    background: rgba(230, 57, 70, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-item {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.product-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 162, 97, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-item:hover .product-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: rotate(-6deg) scale(1.08);
}

.product-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: var(--transition);
}

.product-item:hover .product-icon i {
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: none;
    color: var(--white);
}

.product-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-item p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.product-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DIGITAL SERVICES ===== */
.digital-services {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.digital-services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    top: -160px;
    right: -120px;
}

.digital-services::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    bottom: -120px;
    left: -100px;
}

.digital-services .section-header h2 {
    color: var(--white);
}

.digital-services .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.digital-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.digital-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: var(--transition);
}

.digital-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.digital-card.featured-digital {
    border-color: rgba(212, 175, 55, 0.45);
}

.digital-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.digital-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(244, 162, 97, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.digital-icon i {
    font-size: 1.7rem;
    color: var(--accent);
}

.featured-digital .digital-icon i {
    color: var(--gold);
}

.digital-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.digital-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.digital-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.digital-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.digital-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

.digital-strip {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.dstrip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dstrip-item:hover {
    background: rgba(230, 57, 70, 0.15);
    transform: translateY(-4px);
}

.dstrip-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .digital-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .digital-strip {
        grid-template-columns: 1fr;
    }
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 1600px;
}

.design-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
}

.design-card:hover {
    transform: perspective(1000px) rotateX(3deg) translateY(-12px);
    box-shadow: var(--shadow-3d);
}

.design-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 8 / 7;
}

.design-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.design-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.85), transparent 55%);
    opacity: 0;
    transition: var(--transition);
}

.design-card:hover .design-img::after {
    opacity: 1;
}

.design-info {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.design-cat {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 162, 97, 0.1));
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.design-info h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
}

.design-info p {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 400;
}

.design-info > div:last-child {
    text-align: right;
}

.samples-block {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed var(--light-gray);
}

.samples-heading {
    text-align: center;
    margin-bottom: 40px;
}

.samples-heading h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.samples-heading h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.samples-heading p {
    color: var(--gray);
    font-size: 0.95rem;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.sample-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.sample-item:hover {
    transform: perspective(1000px) rotateX(3deg) translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.sample-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sample-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sample-label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sample-icon {
    position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(244, 162, 97, 0.1));
    transition: var(--transition);
}

.sample-icon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sample-item:hover .sample-icon-img {
    transform: scale(1.08);
}

.sample-icon-fa {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.sample-item:hover .sample-icon-fa {
    transform: scale(1.12) rotate(-6deg);
}

@media (max-width: 992px) {
    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .samples-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-note {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(244, 162, 97, 0.06));
    border-radius: 50px;
    border: 1px dashed rgba(230, 57, 70, 0.3);
}

.portfolio-note i {
    color: var(--primary);
    font-size: 1.2rem;
}

.portfolio-note p {
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 500;
}

/* ===== MACHINES ===== */
.machines {
    padding: 100px 0;
    background: linear-gradient(160deg, #0d1b2a 0%, #1d3557 100%);
    position: relative;
    overflow: hidden;
}

.machines::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    top: -200px;
    right: -150px;
}

.machines .section-header h2 {
    color: var(--white);
}

.machines .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.machine-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: center;
}

.machine-showcase {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: var(--transition);
}

.machine-showcase:hover {
    background: rgba(255, 255, 255, 0.12);
}

.machine-showcase img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.machine-showcase:hover img {
    transform: scale(1.03);
}

.machine-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.machine-caption h3 {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.3;
}

.machine-caption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.machine-caption ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.machine-caption ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.machine-caption ul li:hover {
    background: rgba(230, 57, 70, 0.15);
}

.machine-caption ul li i {
    color: var(--gold);
    margin-top: 4px;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.why-us-desc {
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.88rem;
}

.why-us-visual {
    position: relative;
    height: 460px;
    perspective: 1200px;
}

.visual-3d {
    position: absolute;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-3d);
}

.visual-3d:hover {
    transform: scale(1.04);
}

.visual-3d i {
    font-size: 2.8rem;
    margin-bottom: 6px;
}

.visual-3d h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

.visual-3d p {
    font-size: 0.8rem;
    opacity: 0.75;
}

.v3d-1 {
    width: 240px;
    height: 240px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #e63946, #8d0801);
    transform: rotateY(-12deg) rotateX(4deg);
}

.v3d-2 {
    width: 200px;
    height: 200px;
    top: 60px;
    right: 0;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    transform: rotateY(10deg) rotateX(-4deg);
}

.v3d-3 {
    width: 180px;
    height: 180px;
    bottom: 0;
    left: 90px;
    background: linear-gradient(135deg, #f4a261, #e76f51);
    transform: rotateY(-6deg) rotateX(5deg);
}

.v3d-1:hover { transform: rotateY(0) rotateX(0) scale(1.04); }
.v3d-2:hover { transform: rotateY(0) rotateX(0) scale(1.04); }
.v3d-3:hover { transform: rotateY(0) rotateX(0) scale(1.04); }

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(230, 57, 70, 0.3), transparent 70%);
}

.orb-1 { width: 160px; height: 160px; top: 40%; right: 15%; animation: floatShape 6s infinite; }
.orb-2 { width: 100px; height: 100px; top: 8%; left: 40%; background: radial-gradient(circle, rgba(244, 162, 97, 0.3), transparent 70%); animation: floatShape 8s infinite reverse; }

/* ===== FOUNDER SIDE SLIDE ===== */
.founder-slide {
    position: fixed;
    top: 92px;
    right: 16px;
    z-index: 940;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120%) rotate(1deg);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .5s ease, visibility .5s ease;
}

.founder-slide.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) rotate(0);
}

.founder-slide-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(230, 57, 70, 0.18);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
    max-width: 340px;
    position: relative;
    overflow: hidden;
}

.founder-slide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.founder-slide-avatar {
    position: relative;
    flex-shrink: 0;
}

.founder-slide-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.founder-slide-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-slide-status i {
    font-size: 0.55rem;
    color: #22c55e;
}

.founder-slide-info { display: flex; flex-direction: column; gap: 2px; }

.founder-slide-greet {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--primary);
    font-weight: 700;
}

.founder-slide-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.founder-slide-name span { color: var(--primary); }

.founder-slide-role {
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 600;
}

.founder-slide-social { display: flex; gap: 8px; margin-top: 6px; }

.founder-slide-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
}

.founder-slide-social a:hover { transform: translateY(-3px) scale(1.1); }

.founder-slide-toggle {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 941;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 12px 8px 10px;
    border-radius: 40px 0 0 40px;
    box-shadow: -8px 10px 24px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
}

.founder-slide-toggle:hover { background: linear-gradient(135deg, var(--primary-dark), var(--accent)); }

.founder-toggle-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.founder-toggle-icon {
    font-size: 0.7rem;
    transition: var(--transition);
}

.founder-slide.open + .founder-slide-toggle .founder-toggle-icon {
    transform: rotate(180deg);
}

.founder-slide-toggle.wiggle { animation: founderWiggle .6s ease; }

@keyframes founderWiggle {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(-3px); }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.05), rgba(255,109,0,0.05));
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow);
}

.founder-img-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 12px 28px rgba(230,57,70,0.25);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info .section-tag { margin-bottom: 8px; }

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
}

.founder-info p {
    color: rgba(0,0,0,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 420px;
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.1), var(--primary), rgba(230, 57, 70, 0.1));
}

.process-step {
    text-align: center;
    position: relative;
    padding: 24px 18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(13, 27, 42, 0.06);
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
    margin: -58px auto 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
    border: 5px solid var(--light);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.08);
    top: -100px;
    left: -100px;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.stars {
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-card > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
}

.author-avatar i {
    color: var(--white);
    font-size: 1rem;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: linear-gradient(160deg, var(--secondary), var(--dark));
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.12);
    bottom: -60px;
    right: -60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 0.92rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
}

.info-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.form-group textarea {
    resize: vertical;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -120px;
    left: -80px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -80px;
    right: -60px;
}

.cta h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1420;
    padding: 60px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-png {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-left: 4px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-col > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-bottom i {
    color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

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

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .machine-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .process-grid::before {
        display: none;
    }

    .process-step .step-number {
        margin-top: 0;
    }

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

    .why-us-visual {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 100px 36px 30px;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        align-items: flex-start;
        gap: 10px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
    }

    .btn-nav {
        margin-top: 12px;
        display: inline-block !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .services-grid,
    .portfolio-3d,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .v3d-1 { width: 200px; height: 200px; }
    .v3d-2 { width: 170px; height: 170px; }
    .v3d-3 { width: 150px; height: 150px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 22px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

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

    .contact-info,
    .contact-form {
        padding: 24px;
    }

    .why-us-visual {
        height: 340px;
    }

    .v3d-1 { width: 160px; height: 160px; }
    .v3d-2 { width: 130px; height: 130px; top: 90px; }
    .v3d-3 { width: 120px; height: 120px; left: 60px; }

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

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .founder-info p { max-width: 100%; }

    .founder-slide {
        top: 78px;
        right: 8px;
    }

    .founder-slide-card {
        max-width: 260px;
        padding: 12px 14px;
    }

    .founder-slide-img { width: 52px; height: 52px; }

    .founder-slide-toggle { top: 84px; }

    .founder-toggle-img { width: 36px; height: 36px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.7s ease forwards;
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* ==========================================================
   PREMIUM DARK THEME + NEW COMPONENTS
   ========================================================== */

/* --- Global dark overrides --- */
body { background: #0a0a0f; color: #e2e2ea; }

/* --- Navbar dark glass --- */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar.scrolled {
    background: rgba(10, 10, 14, 0.92);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a:not(.btn-nav) { color: var(--white); }
.navbar.scrolled .nav-toggle { color: var(--white); }

/* --- Section backgrounds (alternating shades) --- */
.services       { background: #0c0c16; }
.products       { background: #11111c; }
.portfolio      { background: #0c0c16; }
.why-us         { background: #11111c; }
.founder-section{ background: #0c0c16; }
.process        { background: #11111c; }
.contact        { background: #0c0c16; }
.samples-block  { border-color: rgba(255,255,255,0.08); }

/* --- Card / surface backgrounds --- */
.service-card,
.product-item,
.design-card,
.feature-item,
.founder-card,
.process-step,
.contact-form   { background: #181828; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.service-card:hover,
.product-item:hover,
.design-card:hover,
.feature-item:hover,
.process-step:hover,
.contact-form:hover { border-color: rgba(230,57,70,0.25); }
.product-item:hover { background: #1e1e30; }
.service-card.featured { border-color: var(--primary); }

/* --- Global text on dark --- */
.section-header h2   { color: #fff; }
.section-header p    { color: rgba(255,255,255,0.6); }
.service-card h3,
.product-item h3,
.process-step h4,
.feature-item h4,
.founder-info h3,
.contact-info h3,
.info-item h4,
.samples-heading h3,
.why-us-content h2 { color: #fff; }
.service-card > p,
.product-item p,
.process-step p,
.feature-item p,
.founder-info p,
.founder-info > .section-tag,
.contact-info > p,
.info-item p,
.portfolio-note p,
.why-us-desc        { color: rgba(255,255,255,0.62); }
.service-features li { color: rgba(255,255,255,0.72); }
.samples-heading p   { color: rgba(255,255,255,0.55); }
.feature-item { border: 1px solid rgba(255,255,255,0.06); }
.feature-item:hover { background: #1e1e30; }

/* Process step number border */
.process-step .step-number { border-color: #11111c; }

/* Design image gradient overlay */
.design-img::after { background: linear-gradient(to top, rgba(8,8,14,0.92), transparent 60%); }

/* --- Form inputs dark --- */
.form-group label { color: #e2e2ea; }
.form-group input,
.form-group select,
.form-group textarea {
    background: #0f0f1a;
    border-color: rgba(255,255,255,0.12);
    color: #e2e2ea;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.18);
}

/* Success message dark */
.success-message { background: linear-gradient(135deg,#1a3a2a,#163020); color:#6ee7a0; }

/* --- Founder section gradient dark --- */
.founder-section { background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(255,109,0,0.04)); }

/* --- Samples border dark --- */
.samples-block { border-color: rgba(255,255,255,0.07); }

/* --- Portfolio note dark --- */
.portfolio-note { background: rgba(230,57,70,0.08); border-color: rgba(255,255,255,0.06); }

/* --- Section tags dark --- */
.section-tag { background: rgba(230,57,70,0.14); }
.section-tag.light { background: rgba(255,255,255,0.12); }

/* --- Footer contact dark (already dark but tighten) --- */
.footer { background: #080c14; }

/* ==========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c48 100%);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 34px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 44px rgba(37,211,102,0.6);
}
.whatsapp-float-icon { font-size: 1.5rem; line-height: 1; }
.whatsapp-float-text { display: flex; flex-direction: column; line-height: 1.3; }
.whatsapp-float-text strong { font-weight: 700; }

@keyframes waPulse {
    0%,100% { box-shadow: 0 10px 34px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 10px 34px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.18); }
}

/* ==========================================================
   RESPONSIVE ADDITIONS
   ========================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: clamp(2.4rem, 6vw, 3.6rem); }
    .hero-stats { gap: 36px; }
}

@media (max-width: 768px) {
    .nav-links {
        background: rgba(10,10,14,0.98);
        box-shadow: -10px 0 50px rgba(0,0,0,0.7);
        border-left: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links a { color: var(--white) !important; }
    .nav-links a:hover { color: var(--primary) !important; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-stats { gap: 32px; flex-direction: row; flex-wrap: wrap; }
    .stat h3 { font-size: 2rem; }
    .scroll-indicator { bottom: 10px; }
    .scroll-arrow { width: 38px; height: 38px; }
    .whatsapp-float { padding: 12px 18px; border-radius: 50px; }
    .whatsapp-float-text { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat { flex-direction: row; align-items: center; gap: 12px; }
    .stat-icon { margin-bottom: 0; }
    .scroll-indicator { display: none; }
    .whatsapp-float-text span,
    .whatsapp-float-text strong { font-size: 0.78rem; }
}

/* Digital Marketing page grid */
.dm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 2;
}

.dm-extra-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* ==========================================================
   THEME TOGGLE BUTTON
   ========================================================== */
.theme-toggle {
    margin-left: auto;
    margin-right: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 1001;
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(20deg) scale(1.05);
}

/* ==========================================================
   LIGHT THEME — html[data-theme="light"]
   ========================================================== */
html[data-theme="light"] body { background: #f5f7fb; color: #333; }

/* Navbar (light) */
html[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .navbar .logo-text,
html[data-theme="light"] .navbar .nav-links a:not(.btn-nav),
html[data-theme="light"] .navbar .nav-toggle,
html[data-theme="light"] .navbar.scrolled .logo-text,
html[data-theme="light"] .navbar.scrolled .nav-links a:not(.btn-nav),
html[data-theme="light"] .navbar.scrolled .nav-toggle { color: var(--dark); }
html[data-theme="light"] .navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08); }
html[data-theme="light"] .theme-toggle { background: #f1f3f9; border-color: rgba(0, 0, 0, 0.12); color: var(--dark); }
html[data-theme="light"] .theme-toggle:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Section surfaces (light) */
html[data-theme="light"] .services,
html[data-theme="light"] .portfolio                            { background: #ffffff; }
html[data-theme="light"] .products,
html[data-theme="light"] .why-us,
html[data-theme="light"] .process,
html[data-theme="light"] .contact                               { background: #f5f7fb; }
html[data-theme="light"] .founder-section    { background: linear-gradient(135deg, rgba(230, 57, 70, 0.04), rgba(255, 109, 0, 0.03)); }

/* Dark gradient sections -> light */
html[data-theme="light"] .digital-services,
html[data-theme="light"] .testimonials       { background: linear-gradient(160deg, #ffffff 0%, #eef1f7 100%); }
html[data-theme="light"] .machines           { background: linear-gradient(160deg, #f5f7fb 0%, #e6eaf2 100%); }

/* Cards / surfaces (light) */
html[data-theme="light"] .service-card,
html[data-theme="light"] .product-item,
html[data-theme="light"] .design-card,
html[data-theme="light"] .feature-item,
html[data-theme="light"] .founder-card,
html[data-theme="light"] .process-step,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .digital-card,
html[data-theme="light"] .dstrip-item,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .machine-showcase {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
}
html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .design-card:hover,
html[data-theme="light"] .feature-item:hover,
html[data-theme="light"] .product-item:hover,
html[data-theme="light"] .digital-card:hover,
html[data-theme="light"] .testimonial-card:hover,
html[data-theme="light"] .machine-showcase:hover,
html[data-theme="light"] .contact-form:hover {
    background: #ffffff;
    border-color: rgba(230, 57, 70, 0.3);
}
html[data-theme="light"] .product-item:hover { background: #ffffff; }

/* Headings (light) */
html[data-theme="light"] .section-header h2,
html[data-theme="light"] .digital-services .section-header h2,
html[data-theme="light"] .machines .section-header h2,
html[data-theme="light"] .testimonials .section-header h2,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .product-item h3,
html[data-theme="light"] .process-step h4,
html[data-theme="light"] .feature-item h4,
html[data-theme="light"] .founder-info h3,
html[data-theme="light"] .samples-heading h3,
html[data-theme="light"] .why-us-content h2,
html[data-theme="light"] .digital-card h3,
html[data-theme="light"] .machine-caption h3,
html[data-theme="light"] .testimonial-author h4 { color: var(--dark); }

/* Body text (light) */
html[data-theme="light"] .section-header p,
html[data-theme="light"] .digital-services .section-header p,
html[data-theme="light"] .machines .section-header p,
html[data-theme="light"] .testimonials .section-header p,
html[data-theme="light"] .service-card > p,
html[data-theme="light"] .product-item p,
html[data-theme="light"] .process-step p,
html[data-theme="light"] .feature-item p,
html[data-theme="light"] .founder-info p,
html[data-theme="light"] .why-us-desc,
html[data-theme="light"] .digital-card > p,
html[data-theme="light"] .samples-heading p,
html[data-theme="light"] .machine-caption p,
html[data-theme="light"] .testimonial-card > p,
html[data-theme="light"] .testimonial-author span { color: var(--gray); }

/* Lists (light) */
html[data-theme="light"] .service-features li,
html[data-theme="light"] .digital-features li,
html[data-theme="light"] .machine-caption ul li,
html[data-theme="light"] .dstrip-item { color: #444; }

/* Component tweaks (light) */
html[data-theme="light"] .digital-icon { border-color: rgba(0, 0, 0, 0.1); }
html[data-theme="light"] .process-step .step-number { border-color: #ffffff; }
html[data-theme="light"] .samples-block { border-color: rgba(0, 0, 0, 0.12); }
html[data-theme="light"] .portfolio-note { background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(244, 162, 97, 0.05)); border-color: rgba(230, 57, 70, 0.25); }
html[data-theme="light"] .portfolio-note p { color: var(--secondary); }
html[data-theme="light"] .founder-section .founder-card { border-color: rgba(0, 0, 0, 0.08); }

/* Contact info card (light) */
html[data-theme="light"] .contact-info {
    background: linear-gradient(160deg, #ffffff 0%, #eef1f7 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--dark);
}
html[data-theme="light"] .contact-info h3,
html[data-theme="light"] .info-item h4 { color: var(--dark); }
html[data-theme="light"] .contact-info > p,
html[data-theme="light"] .info-item p { color: var(--gray); }
html[data-theme="light"] .contact-info .info-item i,
html[data-theme="light"] .contact-info .social-links a { background: #eef1f7; color: var(--primary); }
html[data-theme="light"] .contact-info .social-links a:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }

/* Form fields (light) */
html[data-theme="light"] .form-group label { color: var(--dark); }
html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group select,
html[data-theme="light"] .form-group textarea { background: #ffffff; border-color: var(--light-gray); color: #333; }

/* Success message (light) */
html[data-theme="light"] .success-message { background: linear-gradient(135deg, #d4edda, #c3e6cb); color: #155724; }

/* Footer (light) */
html[data-theme="light"] .footer { background: #f0f2f7; color: var(--dark); }
html[data-theme="light"] .footer-grid { border-color: rgba(0, 0, 0, 0.1); }
html[data-theme="light"] .footer-col > p,
html[data-theme="light"] .footer-col ul li a,
html[data-theme="light"] .footer-contact li { color: #5a6270; }
html[data-theme="light"] .footer-col h4,
html[data-theme="light"] .footer-logo .logo-text { color: var(--dark); }
html[data-theme="light"] .footer-social a { background: #e2e6ef; color: var(--dark); }
html[data-theme="light"] .footer-social a:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
html[data-theme="light"] .footer-bottom { color: #8a919d; }

/* Smooth theme switch */
body, .navbar, .service-card, .digital-card, .testimonial-card,
.product-item, .feature-item, .process-step, .contact-form,
.footer, .machines, .testimonials, .digital-services { transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease; }

/* Mobile nav panel (light) */
@media (max-width: 768px) {
    html[data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.99);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.12);
        border-left: 1px solid rgba(0, 0, 0, 0.06);
    }
    html[data-theme="light"] .nav-links a { color: var(--dark) !important; }
    html[data-theme="light"] .nav-links a:hover { color: var(--primary) !important; }
}

/* ==========================================================
   DIGITAL MARKETING EXPERIENCE SECTION
   ========================================================== */
.dm-experience {
    padding: 100px 0;
    background: #0c0c16;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.dm-experience::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.07), transparent 70%);
    top: -160px;
    right: -140px;
    pointer-events: none;
}

.dm-exp-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dm-exp-media { position: relative; padding: 0 10px 30px 0; }

.dm-exp-img-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-exp-img-card {
    position: absolute;
    right: -14px;
    bottom: -6px;
    width: 45%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid #0c0c16;
    box-shadow: var(--shadow-lg);
}

.dm-exp-badge {
    position: absolute;
    top: -22px;
    left: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(230, 57, 70, 0.5);
    z-index: 3;
    transform: rotate(-3deg);
}

.dm-exp-badge strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.dm-exp-badge span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.dm-exp-content .section-tag { margin-bottom: 14px; }

.dm-exp-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.dm-exp-content > p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.dm-exp-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.dm-exp-list li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    align-items: flex-start;
}

.dm-exp-list li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.8rem;
}

.dm-exp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.dm-exp-stat { text-align: center; }

.dm-exp-stat h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.dm-exp-stat p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

@media (max-width: 992px) {
    .dm-exp-grid { grid-template-columns: 1fr; gap: 64px; }
    .dm-exp-img-card { right: 0; }
}

@media (max-width: 480px) {
    .dm-exp-content h2 { font-size: 1.8rem; }
    .dm-exp-stats { grid-template-columns: 1fr; }
    .dm-exp-badge { top: -18px; left: 12px; padding: 10px 14px; transform: none; }
    .dm-exp-img-card { position: static; margin-top: 18px; width: 100%; border: none; }
    .dm-exp-media { padding: 0; }
}

/* Light theme overrides */
html[data-theme="light"] .dm-experience { background: #ffffff; border-top-color: rgba(0, 0, 0, 0.06); }
html[data-theme="light"] .dm-exp-content h2 { color: var(--dark); }
html[data-theme="light"] .dm-exp-content > p,
html[data-theme="light"] .dm-exp-stat p { color: var(--gray); }
html[data-theme="light"] .dm-exp-list li { color: #444; }
html[data-theme="light"] .dm-exp-stats { background: #f5f7fb; border-color: rgba(0, 0, 0, 0.08); }
html[data-theme="light"] .dm-exp-img-main { border-color: rgba(0, 0, 0, 0.08); }
html[data-theme="light"] .dm-exp-img-card { border-color: #ffffff; }

/* ==========================================================
   WHO WE ARE SECTION (digital marketing)
   ========================================================== */
.dm-about {
    padding: 100px 0;
    background: #11111c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.dm-about::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
    bottom: -180px;
    left: -140px;
    pointer-events: none;
}

.dm-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dm-about-text .section-tag { margin-bottom: 14px; }

.dm-about-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.dm-about-text > p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

.dm-about-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dm-about-benefit {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: var(--transition);
}

.dm-about-benefit:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateX(6px);
}

.dm-about-benefit-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(244, 162, 97, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.dm-about-benefit h4 {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.dm-about-benefit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.dm-about-side {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 34px;
    backdrop-filter: blur(12px);
}

.dm-about-side h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-about-side h3 i { color: var(--primary); }

.dm-about-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.dm-about-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.dm-about-services li:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateX(4px);
}

.dm-about-services li i { color: var(--gold); font-size: 0.75rem; }

@media (max-width: 992px) {
    .dm-about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .dm-about-text h2 { font-size: 1.8rem; }
    .dm-about-side { padding: 24px; }
}

/* Light theme overrides */
html[data-theme="light"] .dm-about { background: #ffffff; border-top-color: rgba(0, 0, 0, 0.06); }
html[data-theme="light"] .dm-about-text h2,
html[data-theme="light"] .dm-about-side h3,
html[data-theme="light"] .dm-about-benefit h4 { color: var(--dark); }
html[data-theme="light"] .dm-about-text > p,
html[data-theme="light"] .dm-about-benefit p { color: var(--gray); }
html[data-theme="light"] .dm-about-benefit,
html[data-theme="light"] .dm-about-services li { background: #ffffff; border-color: rgba(0, 0, 0, 0.08); }
html[data-theme="light"] .dm-about-benefit:hover { background: #f5f7fb; }
html[data-theme="light"] .dm-about-services li { color: #333; }
html[data-theme="light"] .dm-about-services li:hover { background: rgba(230, 57, 70, 0.08); }
html[data-theme="light"] .dm-about-side { background: #f5f7fb; }
html[data-theme="light"] .dm-about-benefit-icon { border-color: rgba(0, 0, 0, 0.1); }