/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Nunito:wght@400;600;700;800&family=Onest:wght@400&display=swap');

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffc947;
    color: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    height: 720px;
    /* Full viewport height for the landing block */
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 53px 60px 0 60px;
    /* Matching top padding from design */
}

.nav-links {
    display: flex;
    gap: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #000;
}

.btn-apply {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 200px;
    /* Fixed width from design */
    padding: 0 16px;
    background-color: #ffc947;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-apply:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.7);
}

/* Hero Section */
.hero {
    display: flex;
    padding: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
    /* approximate top offset */
    max-width: 800px;
}

.logo-large {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.logo-img {
    width: 42px;
    /* Approx from design 41.667px */
    height: 50px;
    display: block;
}

.hero-title {
    font-family: 'Onest', sans-serif;
    font-size: 78px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 72px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-start {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 32px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.1s ease;
}

.btn-start:hover {
    transform: scale(1.02);
}

.contact-text {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    color: #000;
}

/* Side Payment Logos */
.side-logos {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    /* Rotate to match design */
    align-items: center;
}

.side-logo-item {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    /* Assuming white or light logos based on contrast, or specific svg needed */
    /* For text emulation */
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0;
}

/* To match the specific logos in the screenshot (Apple Pay, Mastercard, etc) better */
/* Since I don't have individual SVGs, I will use text/simple styling or the provided big assets if applicable. 
   The provided context had imgFrame4 and imgUnion. I will place the main card image. */

.hero-image-container {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-33%);
    width: 608px;
    pointer-events: none;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Side Logos specific styling */
.side-bar {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    height: 437px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.payment-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    width: 100%;
    background-color: #1a1a1a;
    font-family: 'Onest', sans-serif;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.features-inner-container {
    width: 100%;
    max-width: 1440px;
    margin: 58px auto;
    display: flex;
    position: relative;
    padding: 0;
}

.features-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Left padding, allowing space for CTA on right */
    padding-right: 240px;
    /* Make space for the absolute CTA block */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-number-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific background shapes for numbers */
.feature-bg-rect {
    background-color: #5d5f5f;
    border: 2px solid #777b7b;
}

/* Shape 1: Simple rect bottom right */
.rect-1 {
    width: 34px;
    height: 48px;
    position: relative;
    right: 5px;
    bottom: 2px;
}

/* Shape 2: 'L' shape imitation using pseudo elements or complex borders? 
   Let's approximate the 'stepped' look from screenshot. 
   It looks like two rectangles. */
.rect-2 {
    position: relative;
    right: -35px;
    bottom: 10px;
}

/* Shape 3: Simple rect */
.rect-3 {
    width: 34px;
    height: 45px;
    position: relative;
    right: -22px;
    bottom: 21px;
}

.feature-number {
    position: relative;
    z-index: 2;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: #ffc947;
    line-height: 1;
}

.feature-text {
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    font-family: 'Onest', sans-serif;
}

/* CTA Block - Adjusted to match screenshot */
.cta-block {
    position: absolute;
    right: 0;
    top: -58px;
    width: 200px;
    display: flex;
    flex-direction: column;
}

.cta-label {
    background-color: #ffc947;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    height: 70px;
    position: relative;
}

.cta-label>span {
    position: absolute;
    right: 22px;
    top: 39px;
}

.cta-arrow-container {
    background-color: #ffc947;
    width: 78px;
    height: 78px;
}

.cta-arrow {
    width: 73px;
    height: auto;
}

/* Product & Infrastructure Section */
.product-section {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Onest', sans-serif;
}

.product-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 1200px;
    /* Approximate based on design */
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 996px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.product-tag {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
}

.product-title {
    font-size: 62px;
    font-weight: 400;
    line-height: normal;
    max-width: 914px;
    margin: 0;
}

.product-description {
    font-size: 20px;
    line-height: 1.6;
    max-width: 988px;
    margin: 0;
}

.product-map-container {
    position: absolute;
    left: 120px;
    top: 282px;
    width: 1200px;
    height: 790px;
    z-index: 1;
}

.product-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.product-cta-btn {
    position: absolute;
    bottom: 220px;
    /* Approximate position */
    background-color: #ffc947;
    color: #000;
    border: none;
    padding: 16px 48px;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    z-index: 3;
    transition: background-color 0.2s;
}

.product-cta-btn:hover {
    background-color: #eebb33;
}

/* Industries Section */
.industries-section {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 120px;
    font-family: 'Onest', sans-serif;
}

.industries-container {
    max-width: 1440px;
    margin: 0 auto;
}

.industries-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.industries-tag {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    width: fit-content;
}

.industries-title {
    font-size: 62px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.industries-description {
    font-size: 20px;
    line-height: 1.6;
    max-width: 740px;
    margin: 0;
}

.highlight-text {
    color: #ffc947;
}

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

.connection-lines {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-37%, -50%);
    width: 100%;
    max-width: 1021px;
    height: auto;
    max-height: 888px;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    z-index: 2;
    max-width: 334px;
    height: 206px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    transition: transform 0.2s, background 0.2s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.card-label {
    color: #FFC947;
    font-family: Onest;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.6px;
}

.card-title {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150.2%;
    color: #fff;
}

.card-desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    color: #FFF;
    margin-top: 22px;
}

.card-6 {
    justify-content: space-between;
    align-items: flex-start;
}

.card-apply-btn {
    background-color: #ffc947;
    color: #000;
    border: none;
    padding: 14px 32px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
    width: 100%;
    max-width: 200px;
}

.card-apply-btn:hover {
    background-color: #eebb33;
}

/* CTA Section */
.cta-section {
    width: 100%;
    background-color: #ffc947;
    color: #000;
    padding: 120px 0;
    font-family: 'Onest', sans-serif;
}

.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-badge {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 48px;
    background-color: #ffc947;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-badge-logo {
    height: 50px;
    width: 41px;
    display: inline-block;
}

.cta-title {
    font-size: 62px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 32px;
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 740px;
    margin: 0 0 80px;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 80px;
    max-width: 868px;
    width: 100%;
}

.cta-card {
    background-color: #ffc947;
    border: 1px solid #000;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    min-height: 237px;
    justify-content: center;
    transition: transform 0.2s;
}

.cta-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.7);
}

.cta-card-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
}

.cta-card-desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.cta-explore-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 16px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
    min-width: 240px;
    height: 48px;
}

.cta-explore-btn:hover {
    background-color: #222;
}

/* Integration Section */
.integration-section {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 0 0 120px;
    font-family: 'Onest', sans-serif;
    position: relative;
}

.integration-wave {
    width: 100%;
    height: 80px;
    background: #ffc947;
    position: relative;
}

.integration-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.integration-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 120px 0;
}

.integration-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.integration-tag {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    width: fit-content;
}

.integration-title {
    font-size: 62px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.integration-card {
    border: 1px solid #efefef;
    border-radius: 5px;
    padding: 48px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 619px;
    transition: border-color 0.2s;
}

.integration-card:hover {
    border-color: #ffc947;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-main-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.card-main-subtitle {
    font-size: 18px;
    color: #ffc947;
    font-weight: 500;
    margin: 0;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px;
}

.api-code-block {
    background-color: #000;
    border-radius: 8px;
    padding: 24px;
    margin-top: auto;
}

.api-code-block code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.dashboard-preview {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.white-label-placeholder {
    margin-top: auto;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.card-arrow {
    background-color: #ffc947;
    color: #000;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-top: 24px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.card-arrow:hover {
    background-color: #eebb33;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0 80px;
    font-family: 'Onest', sans-serif;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.footer-content {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

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

.footer-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-tag {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    width: fit-content;
}

.footer-title {
    font-size: 62px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-cta-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-box-text {
    flex: 1;
}

.cta-box-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffc947;
    margin: 0 0 8px;
}

.cta-box-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-box-icon {
    background-color: #ffc947;
    color: #000;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    color: #FFF;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 24px */
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.contact-label {
    font-weight: 500;
}

/* Footer Form */
.footer-form-container {
    flex-shrink: 0;
    width: 480px;
}

.footer-form {
    background-color: #ffc947;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.7);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #000;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-disclaimer {
    font-size: 13px;
    color: #000;
    line-height: 1.4;
    margin: 24px 0;
    text-align: center;
}

.form-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.2s;
}

.form-submit-btn:hover {
    background-color: #222;
}

/* Copyright Bar */
.copyright-bar {
    width: 100%;
    background-color: #ffc947;
    padding: 40px 0;
}

.copyright-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.copyright-text {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

/* Mobile View Toggle */
.mobile-view {
    display: none;
}

@media (max-width: 990px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
        background-color: #1a1a1a;
        color: #fff;
        min-height: 100vh;
        overflow-x: hidden;
    }
}

/* Base Mobile Styles */
.m-container {
    padding: 0;
    /* Full width sections */
}

/* Mobile Header */
.m-header {
    background-color: #000;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.m-logo-icon {
    width: 24px;
    height: auto;
}

/* Mobile Hero */
.m-hero {
    background-color: #ffc947;
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    border-radius: 0 0 24px 24px;
    margin-bottom: 60px;
}

.m-hero-title {
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 110%;
    color: #000;
    margin-bottom: 40px;
    width: 100%;
}

.m-hero-image {
    width: 100%;
    max-width: 320px;
    margin-bottom: 40px;
}

.m-hero-image img {
    width: 100%;
    height: auto;
}

.m-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.m-btn-start {
    background-color: #000;
    color: #fff;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.m-btn-apply {
    background-color: transparent;
    color: #000;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}


/* Mobile Features */
.m-features {
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
}

.m-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 320px;
    /* Limit width to keep it looking good */
}

.m-feature-number-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.m-feature-bg-rect {
    background-color: #5d5f5f;
    border: 2px solid #777b7b;
}

.m-rect-1 {
    width: 24px;
    height: 33px;
    position: absolute;
    right: 0px;
    top: 13px;
}

.m-rect-2 {
    position: absolute;
    transform: scale(0.7);
    left: -14px;
    top: -14px;
    z-index: 1;
}

.m-rect-3 {
    width: 25px;
    height: 34px;
    position: absolute;
    left: 10px;
    top: -5px;
}

.m-feature-number {
    position: relative;
    z-index: 2;
    font-family: 'Onest', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffc947;
    line-height: 1;
    letter-spacing: -2px;
}

.m-feature-text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

/* Mobile Product section */
.m-product {
    padding: 0 24px 60px;
    text-align: center;
}

.m-tag-container {
    text-align: center;
}

.m-tag {
    border: 1px solid #fff;
    padding: 12px 16px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-bottom: 24px;
    font-family: 'Onest', sans-serif;
    border-radius: 5px;
}

.m-section-title {
    font-family: 'Onest', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400;
    text-align: center;
}

.m-section-desc {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #dcdcdc;
    margin-bottom: 32px;
}

.m-product-map {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.m-btn-yellow {
    background-color: #ffc947;
    color: #000;
    border: none;
    height: 48px;
    width: 100%;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
}

.m-industries {
    padding: 0 0 80px;
    text-align: center;
}

.m-industries .m-tag,
.m-industries .m-section-title,
.m-industries .m-section-desc {
    margin-left: 24px;
    margin-right: 24px;
}

.m-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 32px;
}

.m-cards-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow-x: auto;
    padding: 0 24px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: auto;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.m-cards-carousel.active-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    /* Disable snapping while dragging for smoother movement */
}

.m-cards-carousel.active-dragging .m-industry-card {
    pointer-events: none;
    /* Prevent clicking/selecting inside cards while dragging */
}

.m-cards-carousel::-webkit-scrollbar {
    display: none;
}

.m-carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.m-carousel-pagination .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background 0.3s;
}

.m-carousel-pagination .dot.active {
    background: #ffc947;
    width: 20px;
    border-radius: 4px;
}

.m-industry-card {
    min-width: 280px;
    /* Fixed width for cards */
    max-width: 320px;
    background: #2a2a2a;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    height: 206px;
    /* Taller to fit content nicely */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    /* Snap to start */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.m-industry-card.card-last {
    /* Special styling for the 'You Card' if needed, mostly background */
    background: linear-gradient(90deg, #535454 0%, #828282 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.m-card-label {
    color: #ffc947;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.m-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: normal;
}

.m-card-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

/* Mobile Why Us */
.m-why {
    background-color: #ffc947;
    color: #000;
    padding: 60px 24px;
    border-radius: 24px 24px 0 0;
}

.m-why-badge {
    border: 1px solid #000;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 32px;
    background: #ffc947;
    box-shadow: 2px 2px 0 0 #000;
}

.m-why-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400;
}

.m-why-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Mobile Integration */
.m-integration {
    padding: 60px 24px;
    background-color: #1a1a1a;
}

.m-int-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.m-int-tab {
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.m-int-tab.active {
    background: #ffc947;
    color: #000;
}

.m-int-card {
    border: 1px solid #333;
    padding: 24px;
    border-radius: 8px;
}

.m-code {
    background: #000;
    padding: 16px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    color: #ccc;
    margin-top: 24px;
    overflow-x: auto;
}

.m-dashboard-preview {
    margin-top: 24px;
    width: 100%;
}

.m-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.m-white-label-preview {
    margin-top: 24px;
    border: 1px dashed #ffc947;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}

/* Mobile Footer */
.m-footer {
    padding: 60px 24px;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

.m-footer-form input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 0 16px;
    font-family: 'Inter', sans-serif;
}

.m-copyright {
    text-align: center;
    padding: 24px;
    background-color: #1a1a1a;
    color: #666;
    font-size: 12px;
}