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

        :root {
            --color-white: #FFFFFF;
            --color-dark: #1A1A1A;
            --color-coral: #FFC8BA;
            --color-light-grey: #999999;
        }

        body {
            font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-weight: 300;
            font-size: 18px;
            color: var(--color-dark);
            background: var(--color-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            background: var(--color-white);
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo {
            display: block;
            height: 48px;
            width: 144px;
            flex-shrink: 0;
        }

        .logo img {
            height: 100%;
            width: 100%;
            display: block;
            object-fit: contain;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav a {
            color: var(--color-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .btn-primary {
            background: var(--color-coral);
            color: var(--color-white);
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 200, 186, 0.4);
        }

        .btn-contact {
            background: #F6A192;
            color: #141414;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(246, 161, 146, 0.4);
        }

        /* Hero Section */
        .hero {
            height: 700px;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 40px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            width: 100%;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-dark);
            grid-column: 1 / span 7;
            align-self: center;
            justify-self: center;
        }

        .hero-plus {
            grid-column: 8 / span 5;
            width: 100%;
            aspect-ratio: 1;
            max-width: 100%;
            align-self: center;
            justify-self: center;
            perspective: 1000px;
        }

        .plus-container {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
        }

        @keyframes rotatePlus {
            0% {
                transform: rotateY(0deg);
            }
            50% {
                transform: rotateY(180deg);
            }
            100% {
                transform: rotateY(360deg);
            }
        }

        .plus-front,
        .plus-back {
            position: absolute;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 0;
            backface-visibility: hidden;
        }

        .plus-back {
            transform: rotateY(180deg);
        }

        .plus-square {
            width: 100%;
            height: 100%;
            background-color: var(--color-dark);
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .plus-front .plus-square:nth-child(1),
        .plus-back .plus-square:nth-child(1) {
            grid-column: 2;
            grid-row: 1;
        }

        .plus-front .plus-square:nth-child(2),
        .plus-back .plus-square:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }

        .plus-front .plus-square:nth-child(3),
        .plus-back .plus-square:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }

        .plus-front .plus-square:nth-child(4),
        .plus-back .plus-square:nth-child(4) {
            grid-column: 3;
            grid-row: 2;
        }

        .plus-front .plus-square:nth-child(5),
        .plus-back .plus-square:nth-child(5) {
            grid-column: 2;
            grid-row: 3;
        }

        /* Services Grid */
        .services-grid-wrapper {
            width: 100%;
            background-color: #F6A192;
        }

        .services-grid {
            padding: 80px 40px;
            width: 100%;
            box-sizing: border-box;
        }

        /* On larger monitors, center case studies and align with other sections */
        @media (min-width: 1921px) {
            .services-grid {
                max-width: 1400px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .service-card {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }

        .service-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1);
            transition: transform 0.3s ease-out;
            z-index: 0;
        }

        .service-card:hover .service-card-bg {
            transform: scale(1.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #5C5656;
            mix-blend-mode: multiply;
            z-index: 1;
            pointer-events: none;
        }

        .service-card-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 30px;
            z-index: 2;
            color: var(--color-white);
            text-align: center;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 0;
            text-align: center;
            position: relative;
            display: inline-block;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-white);
            transition: width 0.4s ease-out;
        }

        .service-card:hover h3::after {
            width: 100%;
        }

        .service-card p {
            font-size: 14px;
            opacity: 0.9;
            text-align: center;
        }

        .service-card-logo {
            max-width: 120px;
            max-height: 40px;
            object-fit: contain;
            margin: 24px auto 0;
            display: block;
            opacity: 0.95;
        }

        .service-card-logos {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .service-card-logos.vertical {
            flex-direction: column;
            gap: 10px;
        }

        .service-card-logos img {
            max-width: 120px;
            max-height: 40px;
            object-fit: contain;
            opacity: 0.95;
        }

        .service-card-logos.vertical img:nth-child(2) {
            max-width: 180px;
            max-height: 60px;
        }

        /* Grid Layout for Cards */
        .card-1 { grid-column: span 4; }
        .card-2 { grid-column: span 5; }
        .card-3 { grid-column: span 3; }
        .card-4 { grid-column: span 5; }
        .card-5 { grid-column: span 7; }
        .card-6 { grid-column: span 4; }
        .card-7 { grid-column: span 4; }
        .card-8 { grid-column: span 4; }
        .card-9 { grid-column: span 6; }
        .card-10 { grid-column: span 6; }

        /* Two Column Sections */
        .section {
            padding: 80px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        #our-clients.section {
            padding-left: 0;
            padding-right: 0;
            max-width: 100%;
        }

        #our-clients .section-content {
            padding-left: 40px;
            padding-right: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        #about.section {
            height: 1000px;
            padding: 0 40px;
            display: flex;
            align-items: center;
        }

        .section-content {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            align-items: start;
        }

        #about .section-content {
            align-items: start;
            width: 100%;
        }

        #about .section-title {
            margin-top: 0;
            padding-top: 0;
            align-self: start;
        }

        #about .section-text {
            margin-top: 0;
            padding-top: 0;
            align-self: start;
        }

        #about .section-text p:first-child {
            margin-top: 0;
            padding-top: 0;
        }

        .services-section-wrapper .section-title {
            margin: 0;
            padding: 0;
            align-self: start;
            grid-column: 1 / span 2;
        }

        .services-section-wrapper .services-list {
            margin: 0;
            padding: 0;
            align-self: start;
        }

        .services-section-wrapper .services-list li:first-child {
            margin-top: 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--color-dark);
            grid-column: 1 / span 3;
            align-self: start;
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        .section.dark {
            background: var(--color-dark);
        }

        .services-section-wrapper {
            width: 100%;
            background-color: #141414;
            overflow: visible;
            position: relative;
        }

        .cube-container {
            position: absolute;
            left: calc(50% - 700px + (10/12 * (1400px - 11 * 20px)) + 10 * 20px);
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            perspective: 1000px;
            z-index: 10;
        }

        @media (max-width: 1480px) {
            .cube-container {
                left: calc(100% - 300px);
            }
        }

        @media (max-width: 1600px) {
            .cube-container {
                display: none;
            }
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotateCube 20s infinite linear;
            transition: transform 0.8s ease-in-out;
        }

        .cube.rotating-to-service {
            animation: none !important;
        }

        .cube.show-social-media {
            animation: none;
            transform: rotateX(0deg) rotateY(180deg);
        }

        .cube.show-content-strategy {
            animation: none;
            transform: rotateX(0deg) rotateY(0deg);
        }

        .cube.show-corporate-communications {
            animation: none;
            transform: rotateX(0deg) rotateY(-90deg);
        }

        .cube.show-photography-videography {
            animation: none;
            transform: rotateX(90deg) rotateY(0deg);
        }

        .cube.show-digital-advertising {
            animation: none;
            transform: rotateX(-90deg) rotateY(0deg);
        }

        @keyframes rotateCube {
            0% {
                transform: rotateX(0deg) rotateY(0deg);
            }
            100% {
                transform: rotateX(360deg) rotateY(360deg);
            }
        }

        .cube-face {
            position: absolute;
            width: 300px;
            height: 300px;
            background-size: cover;
            background-position: center;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .cube-face.front {
            transform: rotateY(0deg) translateZ(150px);
        }

        .cube-face.back {
            transform: rotateY(180deg) translateZ(150px);
        }

        .cube-face.right {
            transform: rotateY(90deg) translateZ(150px);
        }

        .cube-face.left {
            transform: rotateY(-90deg) translateZ(150px);
        }

        .cube-face.top {
            transform: rotateX(90deg) translateZ(150px);
        }

        .cube-face.bottom {
            transform: rotateX(-90deg) translateZ(150px);
        }

        .services-section-wrapper .section {
            background: transparent;
            position: relative;
            overflow: visible;
        }

        .services-section-wrapper .section-content {
            position: relative;
        }

        .services-section-wrapper .section.dark {
            background: transparent;
        }

        .section.dark .section-title {
            color: var(--color-white);
        }

        .section-text {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--color-dark);
            text-align: justify;
            grid-column: 4 / span 6;
            align-self: start;
            margin: 0;
            padding: 0;
        }

        .section-text p {
            margin-top: 0;
        }

        .section-text p:first-child {
            margin-top: 0;
            padding-top: 0;
        }

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

        .work-with-us-text {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--color-dark);
            grid-column: 1 / span 5;
            align-self: start;
            margin: 0;
            padding: 0;
        }

        .work-with-us-text a {
            color: inherit;
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .work-with-us-text a:hover {
            opacity: 0.7;
        }

        .contact-form {
            grid-column: 7 / span 6;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

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

        .contact-form input,
        .contact-form textarea {
            font-family: 'Lexend', sans-serif;
            font-size: 16px;
            font-weight: 300;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: var(--color-dark);
            background: var(--color-white);
            transition: border-color 0.3s;
        }

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

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .form-disclaimer {
            font-family: 'Lexend', sans-serif;
            font-size: 12px;
            font-weight: 300;
            color: var(--color-dark);
            margin: 0;
            text-align: left;
            flex-shrink: 0;
        }

        .btn-submit {
            font-family: 'Lexend', sans-serif;
            font-size: 16px;
            font-weight: 400;
            background: #F6A192;
            color: #141414;
            padding: 12px 32px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s, box-shadow 0.3s;
            flex-shrink: 0;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(246, 161, 146, 0.4);
        }

        /* Services List */
        .services-list {
            list-style: none;
            grid-column: 3 / span 7;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 20px;
            align-self: start;
        }

        .services-list li {
            margin-bottom: 30px;
            grid-column: 1 / span 7;
            display: block;
        }

        .service-link {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 20px;
            align-items: start;
            text-decoration: none;
            color: inherit;
            width: 100%;
        }

        .service-icon {
            color: var(--color-coral);
            font-size: 48px;
            font-weight: 300;
            line-height: 1;
            grid-column: 1;
            align-self: start;
            text-align: right;
            justify-self: end;
            transition: transform 0.3s ease;
        }

        .services-list li:hover .service-icon {
            transform: translateX(8px);
        }

        .service-item-content {
            grid-column: 2 / span 6;
        }

        .service-item-content h4 {
            font-family: 'Lexend', sans-serif;
            font-size: 36px;
            font-weight: 300;
            color: var(--color-white);
            margin-bottom: 8px;
            transition: text-decoration 0.3s ease;
        }

        .services-list li:hover .service-item-content h4 {
            text-decoration: underline;
        }

        .service-item-content p {
            font-size: 18px;
            font-weight: 300;
            color: var(--color-light-grey);
            line-height: 1.6;
        }

        /* Clients Section */
        .clients-content {
            grid-column: 1 / span 12;
            width: 100%;
            overflow: visible;
        }

        .clients-logos {
            overflow: hidden;
            padding: 0;
            margin-top: 64px;
            margin-bottom: 60px;
            width: 100%;
            position: relative;
        }

        .clients-logos-wrapper {
            display: flex;
            gap: 200px;
            will-change: transform;
        }

        .clients-logos-wrapper.animated {
            animation: scroll-logos 20s linear infinite;
        }

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


        .client-logo {
            height: auto;
            width: auto;
            max-height: none;
            max-width: none;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: opacity 0.3s;
            flex-shrink: 0;
            object-fit: contain;
        }

        .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .testimonials-section {
            grid-column: 2 / span 10;
            margin-top: 150px;
            display: flex;
            flex-direction: column;
        }

        .testimonials-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 30px;
        }

        .testimonials-container {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .testimonial-item {
            display: block;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }

        .testimonial-item.active {
            opacity: 1;
            transform: translateX(0);
            position: absolute;
        }

        .testimonial-item.prev {
            opacity: 0;
            transform: translateX(-30px);
        }

        .quote {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--color-dark);
            text-align: justify;
            margin: 0 0 20px 0;
        }

        .quote-attribution {
            text-align: right;
            font-size: 16px;
            font-weight: 300;
            font-family: 'Lexend', sans-serif;
            color: var(--color-dark);
            margin-top: 0;
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 30px;
        }

        .testimonial-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #141414;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .testimonial-indicator.active {
            background-color: #F6A192;
        }

        /* Footer */
        footer {
            background: var(--color-dark);
            color: var(--color-white);
            padding: 80px 0 20px;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            flex: 1;
            width: 100%;
            align-items: start;
        }

        .footer-nav-wrapper {
            grid-column: 1 / span 4;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 12px;
            white-space: nowrap;
        }

        .footer-nav a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s;
            display: block;
        }

        .footer-nav a:hover {
            opacity: 0.7;
        }

        .social-icons {
            display: flex;
            gap: 36px;
            align-items: center;
        }

        .social-icons a {
            display: inline-block;
            text-decoration: none;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            cursor: pointer;
            transition: filter 0.3s;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .social-icons a:hover .social-icon {
            filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(1352%) hue-rotate(310deg) brightness(102%) contrast(98%);
        }

        .newsletter {
            grid-column: 8 / span 5;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .newsletter h4 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--color-white);
            align-self: flex-start;
        }

        .newsletter-form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0;
            margin-bottom: 12px;
            width: 100%;
        }

        .newsletter-input {
            padding: 12px 16px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
            background: var(--color-white);
        }

        .newsletter-submit {
            background: var(--color-white);
            border: none;
            padding: 12px;
            width: 48px;
            height: 48px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-submit svg {
            width: 20px;
            height: 20px;
            fill: var(--color-dark);
        }

        .back-to-top {
            color: var(--color-white);
            text-decoration: none;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
            grid-column: 6 / span 2;
            justify-self: center;
        }

        .back-to-top:hover {
            opacity: 0.7;
        }

        .back-to-top svg {
            width: 16px;
            height: 16px;
            fill: var(--color-white);
        }

        .newsletter-disclaimer {
            font-size: 12px;
            color: var(--color-light-grey);
            align-self: flex-start;
            text-align: left;
        }

        /* Brevo newsletter form – keep “Subscribe to our newsletter” look */
        .newsletter .sib-form,
        .newsletter #sib-form-container,
        .newsletter #sib-container {
            background: transparent !important;
            border: none !important;
            max-width: none !important;
            padding: 0 !important;
            text-align: left !important;
        }
        .newsletter #sib-form {
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            gap: 0 20px;
            align-items: end;
        }
        .newsletter #sib-form .sib-input { grid-column: 1; grid-row: 1; }
        .newsletter #sib-form .sib-form-block:has(.sib-form-block__button) { grid-column: 2; grid-row: 1; }
        .newsletter #sib-form .sib-optin { grid-column: 1 / -1; grid-row: 2; margin-top: 12px; }
        .newsletter .sib-form-block .sib-text-form-block {
            display: none !important;
        }
        .newsletter #sib-container .sib-form-block {
            padding: 0 !important;
            margin-bottom: 12px;
        }
        .newsletter #sib-container .form__label-row { display: contents; }
        .newsletter #sib-container .entry__label { display: none !important; }
        .newsletter #sib-container .entry__specification { display: none !important; }
        .newsletter #sib-container .entry__error { display: none !important; }
        .newsletter #sib-container .sib-input .sib-form-block,
        .newsletter #sib-container .sib-optin .sib-form-block { margin-bottom: 0; }
        .newsletter #sib-container input[type="text"]:not(.input--hidden),
        .newsletter #sib-container input[type="email"] {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: 100% !important;
            min-width: 180px !important;
            height: 48px !important;
            padding: 0 16px !important;
            border: none !important;
            border-radius: 4px !important;
            font-size: 14px !important;
            font-family: 'Lexend', sans-serif !important;
            background: var(--color-white) !important;
            color: var(--color-dark) !important;
            box-sizing: border-box !important;
        }
        .newsletter #sib-form-container,
        .newsletter #sib-container,
        .newsletter .sib-input {
            display: block !important;
            visibility: visible !important;
        }
        .newsletter #sib-container .sib-input .form__entry,
        .newsletter #sib-container .sib-optin .form__entry { margin-bottom: 0; }
        .newsletter #sib-container .sib-input .entry__field {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0;
        }
        .newsletter #sib-container .sib-form-block__button,
        .newsletter #sib-container button[form="sib-form"] {
            font-size: 14px !important;
            font-family: 'Lexend', sans-serif !important;
            color: var(--color-dark) !important;
            background: var(--color-white) !important;
            border: none !important;
            padding: 0 20px !important;
            width: auto !important;
            min-width: 48px !important;
            height: 48px !important;
            border-radius: 4px !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-sizing: border-box !important;
        }
        .newsletter #sib-container .sib-form-block__button svg,
        .newsletter #sib-container button[form="sib-form"] svg {
            width: 20px !important;
            height: 20px !important;
            fill: var(--color-dark) !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }
        .newsletter #sib-container .sib-form-block__button .sib-hide-loader-icon,
        .newsletter #sib-container button[form="sib-form"] .sib-hide-loader-icon {
            display: block !important;
            opacity: 1 !important;
        }
        .newsletter #sib-container .sib-form-block__button .progress-indicator__icon:not(.sib-hide-loader-icon),
        .newsletter #sib-container button[form="sib-form"] .progress-indicator__icon:not(.sib-hide-loader-icon) {
            display: none !important;
        }
        .newsletter #sib-container .sib-form-block__button::after,
        .newsletter #sib-container button[form="sib-form"]::after {
            content: 'Subscribe';
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .newsletter #sib-container .sib-form-block__button svg,
        .newsletter #sib-container button[form="sib-form"] svg {
            display: none !important;
        }
        .newsletter #sib-container .sib-input .entry__field::before,
        .newsletter #sib-container .sib-input .entry__field::after,
        .newsletter #sib-container .sib-optin::before,
        .newsletter #sib-container .sib-optin::after {
            display: none !important;
        }
        .newsletter #sib-container .sib-optin label {
            font-size: 12px !important;
            color: var(--color-light-grey) !important;
            font-family: 'Lexend', sans-serif !important;
            display: flex !important;
            align-items: flex-start !important;
            gap: 8px !important;
        }
        .newsletter #sib-container .sib-optin input[type="checkbox"] {
            margin-top: 2px;
            width: 16px !important;
            height: 16px !important;
            min-width: 16px;
            flex-shrink: 0;
            appearance: auto;
            -webkit-appearance: checkbox;
            accent-color: #F6A192;
        }
        .newsletter #sib-container .sib-optin .checkbox_tick_positive {
            display: none !important;
        }
        .newsletter #sib-container .input--hidden { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
        .newsletter .newsletter-message--error,
        .newsletter .newsletter-message--success {
            font-size: 14px;
            margin-bottom: 12px;
            padding: 10px 12px;
            border-radius: 4px;
        }
        .newsletter .newsletter-message--error { color: #661d1d; background: #ffeded; }
        .newsletter .newsletter-message--success { color: #085229; background: #e7faf0; }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            align-items: center;
            font-size: 12px;
            color: var(--color-light-grey);
            width: 100%;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 1400px;
            padding-left: 40px;
            padding-right: 40px;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            grid-column: 1;
        }

        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 20px;
            grid-column: 9 / span 4;
            justify-content: flex-end;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .footer-bottom-right a {
            margin-left: 0;
        }

        .footer-bottom a {
            color: var(--color-light-grey);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--color-white);
        }

        .back-to-top {
            cursor: pointer;
            transition: color 0.3s;
        }

        .back-to-top:hover {
            color: var(--color-white);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                height: 700px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .section-content {
                grid-template-columns: repeat(12, 1fr);
            }

            .section-title {
                grid-column: 1 / span 3;
                margin-bottom: 20px;
            }

            .section-text {
                grid-column: 4 / span 6;
            }

            .services-list {
                grid-column: 1 / span 12;
            }

            .service-icon {
                grid-column: 1;
            }

            .service-item-content {
                grid-column: 2 / span 9;
            }

            .clients-content {
                grid-column: 1 / span 12;
            }

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

            .card-1, .card-2, .card-3, .card-6, .card-7, .card-8 {
                grid-column: span 6;
            }

            .card-4, .card-5, .card-9, .card-10 {
                grid-column: span 12;
            }

            .footer-content {
                grid-template-columns: repeat(12, 1fr);
                gap: 20px;
            }

            .footer-nav {
                grid-column: 1;
            }

            .newsletter {
                grid-column: 8 / span 5;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            nav {
                gap: 20px;
                flex-wrap: wrap;
            }

            .hero {
                height: 700px;
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 36px;
                grid-column: 1 / span 12;
            }

            .hero-plus {
                display: none;
            }

            .services-grid, .section {
                padding: 40px 20px;
            }

            .services-grid-wrapper {
                margin-bottom: 40px;
            }

            #about {
                margin-top: 40px;
            }

            #about.section {
                height: auto;
                min-height: auto;
                padding: 40px 20px;
                display: block;
                align-items: flex-start;
            }

            .cube-container {
                display: none;
            }

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

            .card-1, .card-2, .card-3, .card-4, .card-5, 
            .card-6, .card-7, .card-8, .card-9, .card-10 {
                grid-column: span 12;
            }

            .work-with-us-text {
                grid-column: 1 / span 12;
                margin-bottom: 30px;
            }

            .contact-form {
                grid-column: 1 / span 12;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
