* { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --red: #D7323F;
            --red-dark: #A1262F;
            --red-glow: rgba(215, 50, 63, 0.4);
            --beige: #EAD8C9;
            --beige-light: #F5EDE5;
            --dark: #1A1210;
            --dark-mid: #2C2220;
            --dark-brown: #402E2C;
            --cream: #FFF9F5;
            --white: #ffffff;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.0;
            overflow-x: hidden;
        }

        /* ═══════════════ NOISE OVERLAY ═══════════════ */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ═══════════════ SCROLL REVEAL ═══════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════ HEADER ═══════════════ */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 48px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--red);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        header.scrolled {
            padding: 10px 48px;
            box-shadow: 0 8px 40px rgba(26,18,16,0.12);
        }

        .logo {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: rotate(-5deg) scale(1.08);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            font-family: 'Titan One', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--dark-brown);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after { width: 100%; }

        .lang-btn {
            width: 36px; height: 36px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--beige);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            border-color: var(--red);
            transform: scale(1.1);
        }

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

        /* ═══════════════ HERO ═══════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--dark);
            position: relative;
            overflow: hidden;
            padding: 120px 48px 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 700px; height: 700px;
            background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroGlow 6s ease-in-out infinite alternate;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -300px; left: -100px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(234,216,201,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroGlow 8s ease-in-out infinite alternate-reverse;
        }

        @keyframes heroGlow {
            0% { transform: scale(1) translate(0,0); opacity: 0.6; }
            100% { transform: scale(1.3) translate(30px, -20px); opacity: 1; }
        }

        /* Diagonal lines pattern */
        .hero-pattern {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 60px,
                rgba(215,50,63,0.03) 60px,
                rgba(215,50,63,0.03) 61px
            );
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            width: 100%;
            align-items: center;
        }

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

        .hero-badge {
            display: inline-block;
            font-family: 'Titan One', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--red);
            background: rgba(215,50,63,0.12);
            padding: 8px 20px;
            border-radius: 100px;
            border: 1px solid rgba(215,50,63,0.3);
            margin-bottom: 32px;
            animation: fadeSlideIn 0.6s ease-out 0.2s backwards;
        }

        .hero h1 {
            font-family: 'Titan One', sans-serif;
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 0.95;
            letter-spacing: 3px;
            margin-bottom: 32px;
            animation: fadeSlideIn 0.6s ease-out 0.4s backwards;
        }

        .hero h1 span {
            color: var(--red);
            display: block;
            text-shadow: 0 0 80px var(--red-glow);
        }

        .hero-desc {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--beige);
            opacity: 0.9;
            margin-bottom: 24px;
            max-width: 520px;
            animation: fadeSlideIn 0.6s ease-out 0.6s backwards;
            text-align:justify
        }

        .hero-tagline {
            font-family: 'Titan One', sans-serif;
            font-size: 1.4rem;
            color: var(--red);
            margin: 40px 0;
            padding-left: 20px;
            border-left: 4px solid var(--red);
            animation: fadeSlideIn 0.6s ease-out 0.7s backwards;
       
        }

        .hero-disclaimer {
            background: #EAC3A2;
            border: 1px solid rgba(234,216,201,0.12);
            padding: 24px;
            border-radius: 12px;
            margin: 40px 0;
            animation: fadeSlideIn 0.6s ease-out 0.8s backwards;
        }

        .hero-disclaimer p {
            color: var(--red);
            font-size: 1rem;
            font-weight: 500;
	    text-align: center;
            font-weight: bold;
        }

        .hero-disclaimer p:first-child { margin-bottom: 8px; }

        .hero-disclaimer strong {
            color: var(--red);
            font-family: 'Titan One', sans-serif;
        }

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

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeSlideIn 0.8s ease-out 0.5s backwards;
        }

        .hero-logo-big {
            width: 575px;
            height: auto;
            filter: drop-shadow(0 20px 60px rgba(215,50,63,0.3));
            animation: logoFloat 4s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(10px) rotate(-1deg); }
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            border: 2px dashed rgba(215,50,63,0.2);
            border-radius: 50%;
            animation: spinSlow 30s linear infinite;
        }

        @keyframes spinSlow { to { transform: rotate(360deg); } }

        .cta-row {
            display: flex;
            gap: 16px;
            margin-top: 40px;
            animation: fadeSlideIn 0.6s ease-out 1s backwards;
        }

        .btn {
            font-family: 'Titan One', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 16px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-red {
            background: var(--red);
            color: var(--white);
            box-shadow: 0 4px 24px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
        }

        .btn-red:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
            background: var(--red-dark);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(234,216,201,0.3);
        }

        .btn-outline:hover {
            border-color: var(--red);
            color: var(--red);
            transform: translateY(-4px);
        }

        /* ═══════════════ BANNER ═══════════════ */
        .banner-section {
            padding: 120px 48px;
            background: var(--white);
            text-align: center;
            position: relative;
        }

        .banner-title {
            font-family: 'Titan One', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--dark);
            margin-bottom: 16px;
        }

        .banner-title span {
            color: var(--red);
            position: relative;
        }

        .banner-img {
            max-width: 100%;
            width: 900px;
            margin: 50px auto 0;
            display: block;
            border-radius: 16px;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .banner-img:hover {
            transform: scale(1.02) translateY(-8px);
        }

        /* ═══════════════ FEATURES ═══════════════ */
        .features {
            padding: 120px 48px;
            background: #EC7373;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--beige) 50%, transparent 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            font-family: 'Titan One', sans-serif;
            font-size: 1.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Titan One', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--dark);
            letter-spacing: -1px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #EAC3A2;
            padding: 48px 36px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(234,216,201,0.5);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

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

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

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 64px rgba(26,18,16,0.1);
            border-color: var(--beige);
        }

        .feature-icon {
            width: 150px;
            height: 150px;
            margin: 0 auto 28px;
            object-fit: contain;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(-5deg);
        }

        .feature-card h3 {
            font-family: 'Titan One', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--dark-brown);
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.8;
        }

        /* ═══════════════ TEAM ═══════════════ */
        .team {
            padding: 120px 48px;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .team::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 80px,
                rgba(215,50,63,0.02) 80px,
                rgba(215,50,63,0.02) 81px
            );
        }

        .team .section-label { color: var(--red); }
        .team .section-title { color: #dbdbdb; }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            text-align: center;
            transition: all 0.4s ease;
            cursor: default;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 3px solid var(--dark-brown);
            transition: all 0.4s ease;
        }

        .team-member:hover .member-img-wrap {
            border-color: var(--red);
            box-shadow: 0 16px 48px rgba(215,50,63,0.25);
        }

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

        .team-member:hover .member-img-wrap img {
            transform: scale(1.08);
        }

        .member-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(26,18,16,0.6), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-member:hover .member-img-wrap::after {
            opacity: 1;
        }

        .team-member h3 {
            font-family: 'Titan One', sans-serif;
            font-size: 1.9rem;
            color: #dbdbdb;
            margin-bottom: 6px;
        }

        .team-member p {
            font-size: 0.9rem;
            color: var(--beige);
            opacity: 0.7;
            font-style: italic;
        }

        /* ═══════════════ CTA / CONTACT ═══════════════ */
        .contact {
            padding: 120px 48px;
            background: var(--white);
            position: relative;
        }

        .contact-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-left {
            position: relative;
        }

        .contact-left h2 {
            font-family: 'Titan One', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--dark);
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .contact-left h2 span { color: var(--red); }

        .contact-left p {
            font-size: 1.1rem;
            color: var(--dark-brown);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .contact-right {
            background: var(--dark);
            padding: 48px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-right::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 150px; height: 150px;
            background: radial-gradient(circle, var(--red-glow), transparent);
            border-radius: 50%;
        }

        .contact-right h3 {
            font-family: 'Titan One', sans-serif;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 8px;
            position: relative;
        }

        .contact-right p {
            color: var(--beige);
            opacity: 0.8;
            margin-bottom: 32px;
            position: relative;
        }

        .contact-email {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--red);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 24px;
            background: rgba(215,50,63,0.08);
            border-radius: 12px;
            border: 1px solid rgba(215,50,63,0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .contact-email:hover {
            background: rgba(215,50,63,0.15);
            transform: translateX(8px);
        }

        .social-row {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            position: relative;
        }

        .social-icon {
            width: 48px; height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(234,216,201,0.08);
            border: 1px solid rgba(234,216,201,0.12);
            color: var(--beige);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--red);
            border-color: var(--red);
            color: var(--white);
            transform: translateY(-4px) rotate(-5deg);
        }

        /* ═══════════════ FOOTER ═══════════════ */
        footer {
            background: var(--dark);
            padding: 40px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--dark-mid);
        }

        footer p {
            color: var(--beige);
            opacity: 0.5;
            font-size: 0.85rem;
        }

        .footer-logo {
            height: 40px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .footer-logo:hover { opacity: 1; }

        /* ═══════════════ MARQUEE ═══════════════ */
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            background: var(--red);
            padding: 14px 0;
        }

        .marquee-inner {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }

        .marquee-inner span {
            font-family: 'Titan One', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #dbdbdb;
            margin-right: 60px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

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

        @media (max-width: 768px) {
            header { padding: 12px 20px; }
            .hero { padding: 100px 24px 60px; }
            .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .hero-desc { margin: 0 auto 24px; }
            .hero-tagline { text-align: left; }
            .hero-visual { order: -1; padding-top: 40px;}
            .hero-logo-big { width: 220px; }
            .hero-visual::before { width: 260px; height: 260px; }
            .cta-row { justify-content: center; flex-wrap: wrap; }
            .features { padding: 80px 24px; }
            .features-grid { grid-template-columns: repeat(1, 1fr); }
            .team { padding: 80px 24px; }
            .team-grid { grid-template-columns: repeat(1, 1fr); gap: 24px; }
            .contact { padding: 80px 24px; }
            .contact-inner { grid-template-columns: 1fr; gap: 40px; }
            .banner-section { padding: 80px 24px; }
            footer { flex-direction: column; gap: 16px; text-align: center; }
            .nav-link { display: none; }
        }

        /* ═══════════════ CUSTOM SCROLLBAR ═══════════════ */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }