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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Promotional Banner */
.promo-banner {
    padding: 12px 0;
    width: 100%;
    transition: background-color 0.3s ease;
}

.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.promo-text {
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.register-link {
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.register-link:hover {
    text-decoration: underline;
}

/* Main Navigation */
.main-nav {
    border-bottom: 1px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 30px;
    
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    flex-shrink: 0;
    font-size: 32px;
    color: #25D366;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link.dropdown {
    cursor: pointer;
}

.chevron-down {
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link:hover .chevron-down {
    color: #14B8A6;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-trial {
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-trial:hover {
    transform: translateY(-1px);
}

.arrow-right {
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.flag-icon {
    flex-shrink: 0;
}

.language-selector span {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.chevron-up {
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-left: 10px;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.theme-toggle i {
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px;
}

.hero-text {
    max-width: 700px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.typing-text {
    display: inline-block;
    min-height: 1.2em;
    border-right: 3px solid;
    padding-right: 8px;
    animation: blink 1s infinite;
    color: #FFD700;
}

@keyframes blink {
    0%, 49% {
        border-color: currentColor;
    }
    50%, 100% {
        border-color: transparent;
    }
}

.highlight-orange {
    color: #FFD700;
    display: inline;
    transition: color 0.3s ease;
}

.highlight-white {
    color: white;
    display: inline;
}

.hero-subheadline {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #14B8A6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    background-color: #0D9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 60px 0;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.trusted-by-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.brands-logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.brands-logos:hover {
    animation-play-state: paused;
}

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

.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-8px);
}

.brand-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none;
}

/* Ultimate WhatsApp Suite Section */
.ultimate-suite-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 20%, #FFFFFF 80%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.ultimate-suite-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(224, 242, 254, 0.5) 100%);
    pointer-events: none;
}

.suite-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.suite-title {
    font-size: 48px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 16px;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.suite-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    transition: color 0.3s ease;
}

.suite-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.suite-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.suite-card:hover {
    transform: translateY(-8px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    border: none;
    outline: none;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border: none;
    outline: none;
}

.suite-card:hover .card-image {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 0px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.card-badge-green {
    background-color: #14B8A6;
}

.card-badge-blue {
    background-color: #3B82F6;
}

.card-badge-orange {
    background-color: #F59E0B;
}

.card-content {
    padding: 32px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: transparent;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.card-description {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    transition: color 0.3s ease;
    font-weight: 400;
}

.card-link {
    color: #14B8A6;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: fit-content;
}

.card-link:hover {
    color: #0D9488;
    gap: 12px;
}

.card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

/* Features Gallery Section */
.features-gallery-section {
    padding: 20px 0 0;
    background: transparent;
    background-image: radial-gradient(at center center, rgba(189, 220, 255, 0.8) 0%, #fff 50%);
    position: relative;
}

.features-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.57;
    pointer-events: none;
}

/* Second Section with gradient at bottom right */
.feature-section-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    margin-bottom: 40px;
    background-image: radial-gradient(at bottom right, rgba(189, 220, 255, 0.8) 0%, #fff 50%);
    padding: 0;
    position: relative;
}

.feature-section-wrapper-top-right {
    background-image: radial-gradient(at top right, rgba(189, 220, 255, 0.8) 0%, #fff 50%);
    margin-top: 20px;
}

.feature-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.57;
    pointer-events: none;
}

.feature-column-main-left {
    padding: 0;
}

.feature-column-main-right {
    padding: 0 0 0 20px;
}

.feature-inner-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
}

.feature-inner-pink {
    background-color: #fff0f9;
    border-radius: 15px;
    padding: 15px 0 0 15px;
    margin-top: 0;
    margin-bottom: 0;
}

.feature-inner-blue {
    background-color: #dae6ff;
    border-radius: 15px;
    padding: 15px 0 0 15px;
    margin-top: 20px;
    margin-bottom: 0;
}

.feature-inner-yellow {
    background-color: #fff2da;
    border-radius: 15px;
    padding: 25px 0 0 15px;
    margin-top: 0;
    margin-bottom: 0;
}

.feature-inner-gray {
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 15px 0 0 15px;
    margin-top: 20px;
    margin-bottom: 0;
}

.feature-inner-full {
    padding: 15px 0 30px 15px;
}

.feature-inner-full .feature-badge-image {
    width: 19%;
}

.feature-inner-full .feature-icon-wrapper {
    margin: -55px 0 0;
}

.feature-inner-full .feature-image-wrapper {
    margin: 5px 0 -10px;
    padding: 0;
}

.feature-inner-full .feature-main-img {
    width: 100%;
    object-fit: contain;
}

.feature-inner-gray .feature-inner-right-col .feature-image-wrapper {
    margin: -50px 0 0;
}

.feature-inner-gray .feature-inner-right-col .feature-main-img {
    height: 260px;
    object-fit: contain;
    object-position: center center;
}

/* Customer Lifecycle Section */
.customer-lifecycle-section {
    padding: 70px 0;
    background: transparent;
    position: relative;
}

.lifecycle-content {
    text-align: center;
    max-width: 1250px;
    margin: 0 auto;
}

.lifecycle-subtitle {
    font-family: "proxima-nova", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: #05a68b;
    margin-bottom: 10px;
}

.lifecycle-title {
    font-family: "proxima-nova", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
    margin-bottom: 50px;
}

.lifecycle-image-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.lifecycle-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* What Sets Interakt Apart Section */
.interakt-apart-section {
    width: 100%;
}

.apart-header {
    text-align: center;
    padding: 80px 0 0;
}

.apart-title {
    font-family: "proxima-nova", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

/* Stats Section */
.apart-stats-section {
    background-color: rgba(240, 240, 240, 0.5);
    padding: 30px 0;
    margin-top: 0;
}

.stats-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    align-items: stretch;
}

.stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(5, 166, 139, 0.19);
    padding: 0;
    text-align: center;
}

.stat-box:last-child {
    border-right: none;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.stat-value {
    font-family: "proxima-nova", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #05a68b;
    line-height: 1;
    margin: 0 0 9px 0;
    padding: 0;
}

.stat-value span {
    display: block;
}

.stat-label {
    font-family: "proxima-nova", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #6f6f6f;
    margin: 0;
    padding: 0;
}

/* CTA Platform Section */
.cta-platform-section {
    background-color: #004c3d;
    padding: 64px 0;
    text-align: center;
}

.cta-platform-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-platform-title {
    font-family: "proxima-nova", Sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: var(--e-global-color-25b034f, #fff);
    margin-bottom: 30px;
}

.cta-platform-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-demo-small {
    display: inline-block;
    padding: 16px 26px;
    font-family: "proxima-nova", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: #000;
    background-color: #d3ffc8;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-demo-small:hover {
    background-color: #b8f0a8;
    transform: translateY(-2px);
}

.btn-trial-large {
    display: inline-block;
    padding: 14px 24px;
    font-family: "proxima-nova", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: #d3ffc8;
    background-color: transparent;
    border: 2px solid #d3ffc8;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-trial-large:hover {
    background-color: #d3ffc8;
    color: #004c3d;
    transform: translateY(-2px);
}

/* Integrations Section */
.integrations-section {
    background: transparent;
    background-image: radial-gradient(at bottom right, rgba(189, 220, 255, 0.8) 0%, #fff 50%);
    padding: 70px 0 40px;
    position: relative;
}

.integrations-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.integrations-title {
    font-family: "proxima-nova", Sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: #000;
    margin-bottom: 40px;
}

/* Mobile Carousel */
.integrations-carousel-mobile {
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px 0;
}

@media (min-width: 769px) {
    .integrations-carousel-mobile {
        display: none;
    }
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-integrations 30s linear infinite;
    width: fit-content;
}

.carousel-slide {
    flex-shrink: 0;
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-integrations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 14 - 20px * 13));
    }
}

/* Desktop Image */
.integrations-image-desktop {
    display: none;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .integrations-image-desktop {
        display: block;
    }
}

.integrations-image-desktop img {
    width: 100%;
    max-width: 1552px;
    height: auto;
    object-fit: contain;
}

/* Button */
.integrations-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-explore-integrations {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    font-family: "proxima-nova", Sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4em;
    color: #fff;
    background-color: #05a68b;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-integrations:hover {
    background-color: #048a73;
    transform: translateY(-2px);
}

.button-icon {
    display: inline-flex;
    align-items: center;
}

.button-icon i {
    font-size: 16px;
}

.button-text {
    display: inline-block;
}

/* Footer Badges Section (Desktop Only) */
.footer-badges-section {
    display: none;
    padding: 0;
    background-color: transparent;
}

@media (min-width: 1025px) {
    .footer-badges-section {
        display: block;
    }
}

.badges-wrapper {
    display: flex;
    width: 100%;
}

.badge-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
}

.badge-section-meta {
    background-color: #b8e6d3; /* Light blue-green */
}

.badge-section-whatsapp {
    background-color: #25D366; /* Vibrant green */
}

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

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 40px;
    height: auto;
    display: block;
}

.badge-icon svg .cls-1 {
    fill: url(#linear-gradient);
}

.badge-icon svg .cls-2 {
    fill: url(#linear-gradient-2);
}

.badge-icon svg .cls-3 {
    fill: #0064e0;
}

.badge-section-meta .badge-icon i {
    font-size: 40px;
    color: #0064e1;
}

.badge-section-whatsapp .badge-icon i {
    font-size: 40px;
    color: #004c3d; /* Dark green */
}

.badge-section-meta .badge-text {
    font-family: "proxima-nova", Sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 22px;
    color: #004c3d; /* Dark teal */
}

.badge-section-whatsapp .badge-text {
    font-family: "proxima-nova", Sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 22px;
    color: #004c3d; /* Dark green */
}

.badge-text strong {
    font-weight: 700;
}

/* Main Footer Section (Desktop Only) */
.main-footer {
    display: none;
    background-color: #004c3d;
    padding: 50px 0 30px;
    color: #fff;
}

@media (min-width: 1025px) {
    .main-footer {
        display: block;
    }
}

.footer-main-wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logo-icon {
    font-size: 32px;
    color: #fff;
}

.footer-logo-text {
    font-family: "proxima-nova", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-g2-badges img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-product-by {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.product-by-text {
    font-family: "proxima-nova", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.gomatix-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.footer-column-title {
    font-family: "proxima-nova", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-nav-menu li {
    margin-bottom: 12px;
}

.footer-nav-item {
    font-family: "proxima-nova", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-nav-item:hover {
    color: #fff;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-app-stores {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-item img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-bottom-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-locations {
    font-family: "proxima-nova", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-locations a {
    color: #fff;
    text-decoration: none;
}

.footer-locations a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-family: "proxima-nova", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-bottom-right {
    flex-shrink: 0;
}

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

.social-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon-item i {
    font-size: 18px;
    color: #fff;
}

.feature-inner-left-col {
    position: relative;
}

.feature-inner-right-col {
    position: relative;
}

.feature-badge-mobile {
    display: block;
}

.feature-badge-desktop {
    display: none;
}

@media (min-width: 769px) {
    .feature-badge-mobile {
        display: none;
    }
    
    .feature-badge-desktop {
        display: block;
    }
}

.feature-inner-right-col .feature-badge-image-wrapper {
    margin: 0 -10px 0 0;
    text-align: right;
}

.feature-inner-right-col .feature-badge-image {
    width: 35%;
}

.feature-inner-right-col .feature-image-wrapper {
    margin: -40px 0 0 -50px;
    text-align: left;
}

.feature-inner-right-col .feature-main-img {
    width: 100%;
    height: 294px;
    object-fit: contain;
    object-position: center center;
}

.feature-inner-blue .feature-inner-right-col .feature-image-wrapper {
    margin: -50px 0 0;
}

.feature-inner-blue .feature-inner-right-col .feature-main-img {
    height: 280px;
}

.feature-inner-yellow .feature-badge-image {
    width: 19%;
}

.feature-inner-yellow .feature-icon-wrapper {
    margin: -65px 0 0;
    padding: 10px 0 0;
}

.feature-inner-yellow .feature-image-wrapper {
    margin: 0 0 -10px;
    padding: 10px 0 0;
}

.feature-inner-yellow .feature-main-img {
    width: 100%;
    height: 425px;
    object-fit: contain;
    object-position: center center;
}

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

.features-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #14B8A6;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card-special-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    margin-bottom: 40px;
}

.feature-column {
    position: relative;
}

.feature-column-left {
    padding-right: 20px;
}

.feature-column-right {
    padding-left: 0;
}

.feature-inner-section {
    border-radius: 15px;
    padding: 15px 0 15px 15px;
    position: relative;
}

.feature-inner-left {
    background-color: #e5ffef;
}

.feature-inner-right {
    background-color: #f0f0f0;
}

.feature-badge-image-wrapper {
    text-align: right;
    margin: -10px -20px 0 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.feature-badge-image {
    width: 15%;
    height: auto;
    display: inline-block;
}

.feature-icon-wrapper {
    text-align: left;
    margin: -55px 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: auto;
    height: auto;
    display: inline-block;
}

.feature-column-right .feature-badge-image {
    width: 25%;
}

.feature-column-right .feature-icon-wrapper {
    margin: -55px 0 0;
}

.feature-column-right .feature-secondary-img {
    width: 90%;
    margin: 0 -35px -43px 0;
}

.feature-card-right .feature-content {
    order: 1;
}

.feature-card-right .feature-image-wrapper {
    order: 2;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.feature-card-special .feature-image-wrapper {
    min-height: auto;
}

.feature-gif {
    display: inline-block;
    vertical-align: middle;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease-in-out;
}

.feature-main-img {
    display: inline-block;
    vertical-align: middle;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease-in-out;
}

.feature-inner-section .feature-title {
    margin-top: 0;
    margin-bottom: 16px;
}

.feature-inner-section .feature-description {
    margin-bottom: 20px;
}

.feature-image-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.feature-secondary-img {
    display: inline-block;
    vertical-align: middle;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    width: 90%;
    object-fit: contain;
    transition: opacity 0.25s ease-in-out;
    margin: 0 -35px -43px 0;
}

.feature-badge-blue {
    background-color: #3B82F6;
}

.feature-badge-orange {
    background-color: #F59E0B;
}

.feature-badge-yellow {
    background-color: #F59E0B;
}

.feature-badge-green {
    background-color: #14B8A6;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #121627;
    line-height: 1.3;
    margin: 0;
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.main-content p {
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-actions {
        gap: 16px;
    }
    
    .btn-trial {
        padding: 9px 18px;
        font-size: 14px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .language-selector span {
        display: none;
    }
    
    .language-selector .chevron-up {
        display: none;
    }
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .apart-title {
        font-size: 40px;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 0 0 50%;
        border-right: 2px solid rgba(5, 166, 139, 0.19);
        border-bottom: 2px solid rgba(5, 166, 139, 0.19);
        padding: 20px;
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-bottom: none;
    }

    .stat-value {
        font-size: 36px;
    }

    .cta-platform-title {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-headline {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .suite-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .suite-title {
        font-size: 36px;
    }
    
    .suite-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ultimate-suite-section {
        padding: 60px 0;
    }
    
    .suite-header {
        margin-bottom: 40px;
    }
    
    .suite-title {
        font-size: 32px;
    }
    
    .suite-subtitle {
        font-size: 16px;
    }
    
    .suite-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-image-wrapper {
        height: 240px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 10px 20px;
        gap: 16px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: inherit;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid;
        border-color: rgba(0, 0, 0, 0.1);
        justify-content: space-between;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-actions {
        gap: 10px;
        margin-left: auto;
    }
    
    .btn-trial {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-trial .arrow-right {
        display: none;
    }
    
    .theme-toggle {
        margin-left: 0;
        padding: 6px;
    }
    
    .language-selector {
        padding: 4px 8px;
    }
    
    .language-selector span {
        display: none;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .main-content h1 {
        font-size: 36px;
    }
    
    .main-content p {
        font-size: 18px;
    }
    
    .trusted-by-section {
        padding: 40px 0;
    }
    
    .trusted-by-heading {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .brands-logos {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .brand-img {
        max-width: 100px;
        max-height: 50px;
    }

    .features-gallery-section {
        padding: 0 15px;
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-title {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 18px;
    }

    .feature-card-special-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .feature-column-left {
        padding-right: 0;
    }

    .feature-column-right {
        padding-left: 0;
    }

    .feature-inner-section {
        padding: 0;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .feature-badge-image-wrapper {
        margin: 0 -20px 0 0;
    }

    .feature-badge-image {
        width: 25%;
    }

    .feature-icon-wrapper {
        margin: -50px 0 0;
    }

    .feature-title {
        font-size: 25px;
    }

    .feature-description {
        margin: -10px 0 0;
    }

    .feature-section-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .feature-column-main-left {
        padding: 0;
    }

    .feature-column-main-right {
        padding: 0;
    }

    .feature-inner-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-inner-pink,
    .feature-inner-blue {
        padding: 10px 10px 0;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .feature-inner-yellow {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .feature-inner-full {
        padding: 10px 10px 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .feature-inner-gray {
        padding: 10px 10px 0;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .feature-inner-full .feature-badge-image {
        width: 25%;
    }

    .feature-inner-full .feature-icon-wrapper {
        margin: -50px 0 0;
    }

    .feature-inner-full .feature-image-wrapper {
        margin: 0;
        padding: 20px 0 0;
    }

    .feature-inner-full .feature-main-img {
        height: 232px;
        object-fit: fill;
    }

    .feature-inner-gray .feature-inner-right-col .feature-image-wrapper {
        margin: 0;
        padding: 20px 0 0;
    }

    .feature-inner-gray .feature-inner-right-col .feature-main-img {
        height: 265px;
        object-fit: cover;
    }

    .feature-inner-right-col .feature-badge-image-wrapper {
        margin: 0 -20px 0 0;
    }

    .feature-inner-right-col .feature-badge-image {
        width: 25%;
    }

    .feature-inner-right-col .feature-image-wrapper {
        margin: 0;
        padding: 20px 0 0;
    }

    .feature-inner-right-col .feature-main-img {
        height: 269px;
    }

    .feature-inner-blue .feature-inner-right-col .feature-image-wrapper {
        margin: 0;
        padding: 20px 0 0;
    }

    .feature-inner-blue .feature-inner-right-col .feature-main-img {
        height: 265px;
        object-fit: cover;
    }

    .feature-inner-yellow .feature-badge-image {
        width: 25%;
    }

    .feature-inner-yellow .feature-icon-wrapper {
        margin: -50px 0 0;
    }

    .feature-inner-yellow .feature-image-wrapper {
        margin: 0 0 -5px;
        padding: 0;
    }

    .feature-inner-yellow .feature-main-img {
        height: 232px;
        object-fit: fill;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .customer-lifecycle-section {
        padding: 50px 0;
    }

    .lifecycle-subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .lifecycle-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .lifecycle-image-wrapper {
        padding: 0 15px;
    }

    /* What Sets Interakt Apart - Mobile */
    .apart-header {
        padding: 50px 0 0;
    }

    .apart-stats-section {
        padding: 20px 0;
    }

    .apart-title {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .stat-box {
        flex: 1;
        border-right: none;
        border-bottom: 2px solid rgba(5, 166, 139, 0.19);
        padding: 20px;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* CTA Platform Section - Mobile */
    .cta-platform-section {
        padding: 50px 0;
    }

    .cta-platform-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .cta-platform-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 20px;
    }

    .btn-demo-small,
    .btn-trial-large {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Integrations Section - Mobile */
    .integrations-section {
        padding: 50px 0 30px;
    }

    .integrations-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .carousel-slide {
        width: 200px;
        height: 80px;
    }

    .btn-explore-integrations {
        padding: 12px 20px;
        font-size: 16px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
        min-height: auto;
    }

    .feature-card-right .feature-content {
        order: 2;
    }

    .feature-card-right .feature-image-wrapper {
        order: 1;
    }

    .feature-content {
        padding-top: 0;
    }

    .feature-image-wrapper {
        min-height: 250px;
        padding: 0;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 15px;
    }

    .feature-badge {
        top: 0;
        right: 0;
        padding: 6px 14px;
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        font-size: 28px;
    }

    .features-gallery-section {
        padding: 50px 0;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .feature-image-wrapper {
        min-height: 200px;
        padding: 10px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .btn-trial {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .btn-trial .arrow-right {
        display: none;
    }
    
    .promo-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .register-link {
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .main-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-headline {
        font-size: 24px;
    }
    
    .hero-subheadline {
        font-size: 14px;
    }
    
    .promo-banner {
        padding: 10px 0;
    }
    
    .promo-text {
        font-size: 11px;
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .nav-links {
        width: 100%;
        left: -100%;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .btn-trial {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .theme-toggle {
        padding: 5px;
    }
    
    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .language-selector {
        padding: 3px 6px;
    }
    
    .flag-icon {
        width: 18px;
        height: 18px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .main-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .main-content p {
        font-size: 15px;
    }
    
    .trusted-by-section {
        padding: 24px 0;
    }
    
    .trusted-by-heading {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 12px;
    }
    
    .brands-logos {
        gap: 24px;
        animation-duration: 18s;
    }
    
    .brand-img {
        max-width: 70px;
        max-height: 35px;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

