* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(231, 76, 60, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

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

.red,
.section-tag {
    color: #e74c3c;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.logo span {
    font-size: 1.4rem;
}

.logo b {
    color: #e74c3c;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

nav {
    display: none;
    gap: 2rem;
}

nav a {
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #e74c3c;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -4px);
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 1rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:active {
    color: #e74c3c;
    background: #f8f8f8;
}

.hero {
    margin-top: 80px;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.55)),
        radial-gradient(
            circle at 80% 20%,
            rgba(231, 76, 60, 0.5),
            transparent 32%
        ),
        #000;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 55%,
        rgba(231, 76, 60, 0.18) 55%,
        rgba(231, 76, 60, 0.18) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-tag,
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-tag {
    color: #ff9999;
}

.hero h1 {
    color: #fff;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about,
.services,
.why {
    padding: 5rem 0;
}

.about {
    background: #f3f3f3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-left {
    background: #000;
    color: #fff;
    padding: 2rem 1.5rem;
}

.about-left h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.about-left p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #e74c3c;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    transition: 0.3s;
}

.service-item:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon,
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: 0.3s;
}

.service-item:hover .service-icon,
.card:hover .card-icon {
    background: #e74c3c;
    color: #fff;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.service-content p {
    font-size: 0.875rem;
    color: #666;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #000;
}

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

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e5e5;
    transition: 0.3s;
}

.card:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1rem;
    color: #e74c3c;
    margin: 1rem 0 0.75rem;
    text-transform: uppercase;
}

.card p {
    color: #666;
    font-size: 0.875rem;
    font-weight: 300;
}

.formats {
    padding: 5rem 0;
    background: #000;
}

.section-header.light h2,
.section-header.dark h2 {
    color: #fff;
}

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

.format-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
    transition: 0.3s;
}

.format-card:hover {
    border-color: #e74c3c;
    transform: translateY(-4px);
}

.format-card span {
    display: inline-block;
    color: #e74c3c;
    font-weight: 900;
    margin-bottom: 1rem;
}

.format-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.format-card p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.why {
    background: #f3f3f3;
}

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

.why-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #e74c3c;
}

.why-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-item p {
    color: #666;
    font-weight: 300;
}

.process {
    padding: 5rem 0;
    background: #000;
}

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

.process-step {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.process-step span {
    color: #e74c3c;
    font-weight: 900;
}

.process-step h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.contact {
    padding: 5rem 0;
    background: #000;
    color: #fff;
    border-top: 1px solid #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 300;
}

.contact-value a {
    color: #e74c3c;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #ff6b5b;
}

.contact-form {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 0.5rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group button {
    width: 100%;
    padding: 0.875rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group button:hover {
    background: #c0392b;
}

.form-message {
    color: #fff;
    font-weight: 700;
    margin-top: 1rem;
}

footer {
    padding: 2.5rem 0;
    background: #000;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.footer-text {
    color: #999;
    font-size: 0.875rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #999;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

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

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

    .contact-form {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero {
        padding: 8rem 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .about-left {
        padding: 3rem;
        padding-top: 4rem;
        clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
    }

    .format-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .format-card.large {
        grid-column: span 3;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .format-card.large {
        grid-column: span 1;
    }

    .format-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 70px;
    }

    .hero {
        margin-top: 70px;
        min-height: 560px;
        padding: 4rem 0;
    }

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

    .about,
    .services,
    .formats,
    .why,
    .process,
    .contact {
        padding: 3rem 0;
    }

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

    h2 {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }
}

.logo img {
    height: 45px;
    width: auto;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.projects {
    padding: 5rem 0;
    background: #000;
}

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

.project-card {
    min-height: 260px;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25)),
        #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.3s;
}

.project-card:hover {
    border-color: #e74c3c;
    transform: translateY(-4px);
}

.project-card span {
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.project-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-card p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.projects-button {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Geography section */
.geography {
    padding: 5rem 0;
    background: #0a0a0a;
    border-top: 3px solid #e74c3c;
}

.geo-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 3rem;
}

.geography-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    align-items: center;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.country-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    flex-shrink: 0;
}

.country-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* SPRLD Group section */
.group {
    padding: 5rem 0;
    background: #f3f3f3;
}

.group-intro {
    color: #555;
    font-size: 1rem;
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.group-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.group-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #e74c3c;
    transition: 0.3s;
}

.group-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.group-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.group-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.group-card p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.group-mission {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.group-mission h4 {
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.group-mission p {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 300;
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .group-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .group-mission {
        padding: 4rem 3rem;
    }
}

@media (max-width: 480px) {
    .geography,
    .group {
        padding: 3rem 0;
    }
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f0f0f0;
    border-radius: 6px;
    padding: 3px;
    margin-left: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 4px;
    color: #666;
    transition: 0.2s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.lang-btn.active {
    background: #e74c3c;
    color: #fff;
}

.lang-btn:hover:not(.active) {
    background: #e0e0e0;
    color: #000;
}

.mobile-lang-switcher {
    margin: 0.75rem 1rem;
    justify-content: center;
    align-self: stretch;
}

.production-link {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border: 2px solid #e74c3c;
    border-radius: 999px;

    color: #e74c3c !important;
    font-weight: 700;

    transition: 0.3s;
}

.production-link:hover {
    background: #e74c3c;
    color: white !important;
}

.production-link span {
    transition: 0.3s;
}

.production-link:hover span {
    transform: translate(3px, -3px);
}
