:root {
    --primary-color: #00abc4;
    --secondary-color: #003975;
    --text-color: #333;
    --white: #ffffff;
    --max-width: 1460px;
    --transition: all 0.3s ease;
}

@font-face {
    font-family: 'Eurostile Bold';
    src: url('../fonts/Eurostile-Bold.eot');
    src: url('../fonts/Eurostile-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Eurostile-Bold.woff') format('woff'), url('../fonts/Eurostile-Bold.svg#webfont') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile.eot');
    src: url('../fonts/Eurostile.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Eurostile.woff') format('woff'),
        url('../fonts/Eurostile.svg#webfont') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

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

html,
body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
}


h2 strong,
h3 strong,
euro-bold {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;

}

h1,
h2,
h3,
.euro,
.nav-links {
    font-family: 'Eurostile', 'Arial', sans-serif;
}

h2 {
    font-family: 'Eurostile',
        'Arial',
        sans-serif;
}

a {
    outline: none
}

.blue-primary {
    color: var(--secondary-color);
}

.blue-secondary {
    color: var(--primary-color);
}

.text-align-right {
    text-align: right !important;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 22px 30px rgba(0, 0, 0, 0.1);
    padding: 25px 0;

    transition: width 0.5s ease-out, background-color 0.5s ease-out;
}

.logo div {
    width: 80vw;
    height: 26px;
}

.main-header .main-logo-scrolled,
.header-scrolled .main-logo {
    display: none
}

.header-scrolled .main-logo-scrolled {
    display: block !important;
    background: url(../img/PostZam-logo2.svg) no-repeat;
    background-size: contain
}

.main-logo {

    padding: 0;
    background: url(../img/PostZam-logo2.svg) no-repeat;
    background-size: contain
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    font-size: 16px
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: normal;

}

.nav-links.active a {
    color: var(--white);
    text-decoration: none;
    font-weight: normal;

}



.header-scrolled .hamburger span {
    background: var(--white)
}

.nav-links a:hover {
    opacity: 0.7
}

.nav-links a.active {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
}

/* --- Hero --- */
.hero {

    display: flex;
    align-items: center;
    color: var(--secondary-color);
    position: relative;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.1;
    position: relative;
    z-index: 9
}

.hero-tagline {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 0px;
    font-family: 'Eurostile', 'Arial', sans-serif;
}

.hero .btn {
    font-size: 20px
}

.hero-1 {
    background: url('../img/hero-1m.jpg') no-repeat top center/cover;
}

.hero-2 {
    background: url('../img/hero-2m.jpg') no-repeat top center/cover;
}

.hero-3 {
    background: url('../img/hero-3m.jpg') no-repeat top center/cover;
}

.hero-4 {
    background: url('../img/hero-4m.jpg') no-repeat top center/cover;
}

.hero-5 {
    background: url('../img/hero-5m.jpg') no-repeat top center/cover;
}

.hero-content {

    width: 100%;
    padding: 30px 30px 11vh;
    text-align: center
}

.hero-content.container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 20%);
    margin-bottom: 0px;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 180px;
    left: 0;
    z-index: 0;
    width: calc(50% + 150px);
    height: 130px;

}

/*hero slideshow*/
.hero-slider {
    position: relative;
    height: 90vh;
    /* Adjusted height for Postzam layout */
    width: 100%;
    overflow: hidden;
}

.hero-slider h1 {
    margin-bottom: 15px
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}


.slider-dots {
    position: absolute;
    bottom: 120px;
    /* Positioned above the overlapping cards */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: none
}

.dot.active {
    background: var(--primary-color);
}


/* --- Card Gallery --- */
.card-gallery {

    position: relative;
    z-index: 10;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(223, 223, 223, 1) 100%);
}

.gallery-grid {

    display: inline-grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
}


.card {

    border-radius: 25px;
    background-color: var(--secondary-color);
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 4px solid #cfcfcf;
    cursor: pointer;

    color: var(--white);
}

.card-thumb {
    height: 27vh;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.card-1 {
    background-image: url(../img/demo-1.jpg)
}

.card-2 {
    background-image: url(../img/demo-2.jpg)
}

.card-3 {
    background-image: url(../img/demo-3.jpg)
}

.card-4 {
    background-image: url(../img/demo-4.jpg)
}

.card-5 {
    background-image: url(../img/demo-5.jpg)
}


.card-overlay {
    text-align: center;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 20px 15px;
}

.card-overlay p {
    font-size: 18px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2
}

.card-overlay .view-demo-btn {
    font-size: 22px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    color: var(--white);
    text-decoration: none;
    border: none;
    margin: -55px auto 20px;
}

.view-demo-btn {
    background: url(../img/play-btn.png) no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
    display: block;
    cursor: pointer;

}

.promo-card {
    background: url(../img/promo-card.png) no-repeat center;
    background-size: contain;
    border: none !important;
    position: relative;
    overflow: visible;
    flex: 0 0 230px;

}

.promo-card p {
    font-size: 13px;
    color: #737373;
    position: absolute;
    bottom: -25px;
    text-align: center;
    width: 100%
}

.feature-text {
    padding: 40px 30px;
}

.feature-text h2 {
    font-size: 36px;
    line-height: 1.3
}

.feature-text p {
    font-size: 16px;
    line-height: 2 !important
}

.enterprise.pizza .btn {
    width: 80%;
    display: block;
    font-size: 20px;
    padding: 8px 20px;
    border: 5px solid #ffff;
    margin: 50px auto 0px;
    text-align: center
}

.feature-text .btn {
    width: 80%;
    display: block;
    font-size: 22px;
    padding: 8px 20px;
    border: 5px solid #ffff;
    margin: 50px auto -70px;
    text-align: center
}

/* --- Enterprise Section --- */
.enterprise {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 100px 0 80px;
    flex-direction: column;
}

.enterprise-image,
.enterprise-content {
    width: 100%;
    padding: 0 30px
}

.enterprise-image img {
    max-width: 100%;


}

.enterprise-content h3 {
    font-size: 36px;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px
}

.enterprise-content ol,
.enterprise-content ul {
    margin-left: 25px
}

.enterprise-content ol li::marker {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;

    color: var(--primary-color);
}

.enterprise-content ul li::marker {
    color: var(--primary-color);
}

.enterprise-content ul li {
    font-size: 18px;
    line-height: 1.8
}

.video-cta {
    background: url(../img/video-1m.jpg) no-repeat #eee;
    background-size: cover;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-cta .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}


.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

/* 1. The Container: Creates the 16:9 space */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* This creates the 16:9 ratio (9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
    background: #000;
    /* Black background while video loads */
}

/* 2. The Iframe: Stretches to fill that space */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 3. The Modal Content: Controls the maximum size on desktop */
.modal-content {
    position: relative;
    width: 90%;
    /* Uses 90% of screen width on mobile */
    max-width: 1200px;
    /* Prevents it from being too huge on large monitors */
    margin: 0 auto;
}


.portrait.modal-content {
    width: 50% !important;
    max-width: 400px;
    /* portrait width */

}

.portrait .video-container {
    position: relative;
    padding-top: 177.78%;
    /* 9:16 portrait aspect ratio */
    overflow: hidden;
    padding-bottom: 0 !important
}

.portrait .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keeps portrait fill */

}


.main-footer {
    position: relative;
    z-index: 9;
    background: var(--white);
    border-top: 5px solid #fff;
    box-shadow: 0 -40px 40px rgba(0, 0, 0, 0.2);
}

.footer-nav {
    display: block;
    text-align: center;
    padding: 30px;
    gap: 30px;

}

.footer-nav p {
    font-size: 12px;
    color: #B5B5B5;
    letter-spacing: 0.8px;
    opacity: 1;
    font-family: 'Eurostile', 'Arial', sans-serif;

}

.footer-nav a {
    font-size: 12px;
    color: #888888;
    text-decoration: none
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 20px 0
}

.footer-links a {
    font-size: 18px;
    font-family: 'Eurostile', 'Arial', sans-serif;
    color: var(--secondary-color);
    text-decoration: none
}

.footer-links a:hover {
    opacity: 0.7
}

.footer-logo {
    height: 48px;
    width: 56px;
    background: url(../img/footer-logo.png) no-repeat;
    background-size: contain;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 7px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    border: 5px solid #fff;
    font-weight: bold;
    transition: var(--transition);
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.4);
}

.play-btn {
    cursor: pointer;
}

.play-btn2 {
    background: url(../img/watch-btn.png) no-repeat center;
    background-size: contain;
    z-index: 9;
    display: block;
    width: 80%;
    height: 52px;
    border: none !important
}





/* Sticky Blur/Shadow Effect */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /* Slightly transparent deep navy */
    backdrop-filter: blur(10px);
    padding: 25px 0;
    /* Shrinks slightly on scroll */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Hamburger Icon Styling */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}




/* Mobile Menu Visibility */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        /* Shown when toggled */
    }

}

/* Pricing page */
.man-phone {
    background: url(../img/phone.png) 0 90%/contain no-repeat;
    height: 360px;
    width: 100%;


}

.pricing .hero .container {
    display: flex;
    width: 100%;
    gap: 0px;
    flex-direction: column;
}

.pricing .hero {

    display: flex;
    align-items: flex-start;
}

.pricing .hero h1 {
    font-size: 40px;
    line-height: 1.3;
    margin: 40px 20px;
}

/* Cards */
.pricing-wrapper {
    padding-bottom: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(223, 223, 223, 0.5) 100%);

}

.pricing-header {
    background: var(--secondary-color);
    padding: 70px 30px;
}

.pricing-card-content {
    background: var(--white);
    padding: 50px 30px;
    color: #000
}

.pricing-grid {
    margin-top: -70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    z-index: 999;
    position: relative;
}

.pricing-card {
    background: var(--white);
    overflow: hidden;
    padding-bottom:50px;
    border-radius: 35px;
    text-align: left;
    border: 5px solid #CFCFCF
}


.pricing-card h3 {
    font-size: 30px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    line-height: 1;
    color: var(--white)
}

.enterprise-bar h4 {
    font-size: 42px;
    font-family: 'Eurostile', 'Arial', sans-serif;
    line-height: 1.2;
    letter-spacing: 0.7px;
}

.post-count strong {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
}

.modal-overlay .btn {
    font-size: 24px;
    margin: 20px auto;
    justify-content: center;
    line-height: 1.2;

}

.modal-content {
    text-align: center;
}

.post-count,
.price-line {
    color: var(--white);
    font-size: 22px;
    font-family: 'Eurostile', 'Arial', sans-serif;
    line-height: 1.2
}

.btn-select-container {
    display: flex;
    justify-content: center;
    margin: -30px auto !important;
}

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    border: 5px solid var(--white);
    padding: 5px 20px;
    border-radius: 90px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;

    text-decoration: none;
    transition: var(--transition);
}


.btn-select:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.4);

}

.feature-list {
    margin-left: 20px;
    padding: 0;
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
}



.feature-list li {
    padding: 8px 0;
}


.enterprise-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 30px;
    border-radius: 35px;
    text-align: left;
    border: 5px solid #CFCFCF;
    margin: 20px 0;
}

.enterprise-bar p {
    font-size: 19px;

}

/* Platforms Section */
.platforms-grid {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 40px;
    padding: 60px 0
}

.features-section h4,
.platforms-grid h4 {
    font-size: 38px;
    color: var(--secondary-color);
    font-family: 'Eurostile', 'Arial', sans-serif;
    margin-bottom: 20px;
    line-height: 1.2
}

.features-section {
    padding-top: 60px
}

.icon-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 85px;
    height: 85px;

}

.icon-fb {
    background: url(../img/icon-fb.jpg) no-repeat top/contain
}

.icon-yt {
    background: url(../img/icon-yt.png) no-repeat top/contain
}

.icon-ig {
    background: url(../img/icon-ig.png) no-repeat top/contain
}

.icon-tk {
    background: url(../img/icon-tk.png) no-repeat top/contain
}

.icon-li {
    background: url(../img/icon-li.png) no-repeat top/contain
}

.icon-pt {
    background: url(../img/icon-pt.png) no-repeat top/contain
}

.icon-x {
    background: url(../img/icon-x.png) no-repeat top/contain
}

.icon-th {
    background: url(../img/icon-th.png) no-repeat top/contain
}

.icon-bs {
    background: url(../img/icon-bs.png) no-repeat top/contain
}

.icon-rd {
    background: url(../img/icon-rd.png) no-repeat top/contain
}

.icon-sc {
    background: url(../img/icon-sc.png) no-repeat top/contain
}

.platform-text {
    font-size: 18px;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;

}

.feature-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 5px solid #CFCFCF;
}

.feature-img {
    height: 250px;
}

.feature-img.img-1 {
    background: url(../img/inclusion-1.jpg) no-repeat top/cover
}

.feature-img.img-2 {
    background: url(../img/inclusion-2.jpg) no-repeat top/cover
}

.feature-img.img-3 {
    background: url(../img/inclusion-3.jpg) no-repeat top/cover
}

.feature-img.img-4 {
    background: url(../img/inclusion-4.jpg) no-repeat top/cover
}

.feature-caption {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.feature-caption p {
    margin: 0;
    font-size: 18px;

}

/* Promo Banner */
.lightning-promo {
    position: relative;
    background-color: #fff;
    /* The right side remains white */
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    margin: 0px auto 0;
    z-index: 1;

    flex-direction: column;
}

.man-point {
    background: url(../img/point.png) center/contain no-repeat;
    height: 300px;
    width: 100%
}

/*
.lightning-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: calc(50% + 150px);
    height: 100%;
    background-color: var(--primary-color)
}*/

.promo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px 380px;
    background: var(--primary-color) url(../img/inclusion-logo-m.png) no-repeat bottom right;
    background-size: contain;
    z-index: 1;
    width: 100%
}

.promo-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}



/* Contact page */

.contact-section {
    font-family: Arial, sans-serif;
    padding: 0px 20px 0;
    overflow: hidden;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
    margin: 0 auto;
}

.contact .contact-section h1 {
    font-size: 40px;
    line-height: 1.3;
    margin: 50px 0 20px;
    color: var(--secondary-color)
}

.contact-form {
    flex: 1;

}

.contact-form form {
    background: #E6E6E6;
    border: 4px solid #CFCFCF;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}



.contact-form input,
.contact-form select,
.contact-form textarea {
    font-size: 18px;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-bottom: 17px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;

}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder,
.select-wrapper option:first-child,
.select-wrapper option[value=""] {
    color: #8F8F8F !important
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper select {
    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;


    width: 100%;

}


.select-wrapper::after {
    content: url('../img/select-icon.svg');
    position: absolute;
    right: 1px;
    top: 2px;
    transform: translateY(-1px);
    pointer-events: none;
    width: 42px;
    height: 42px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {

    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: 5px solid var(--white);
    padding: 5px 50px;
    border-radius: 90px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Eurostile Bold',
        'Arial',
        sans-serif;
    text-decoration: none;
    transition: var(--transition);
    justify-content: flex-end;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.4);
}

.form-row {
    display: flex;
    gap: 10px;

}

.submit-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-group {
    flex: 1;

}

.contact-info {
    margin-top: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 4px solid #CFCFCF;
}

.contact-info p:first-child {
    font-family: 'Eurostile',
        'Arial',
        sans-serif;
    font-size: 28px;
}

.man-laptop {

    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/laptop.png) bottom/contain no-repeat;
}



.contact-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.contact-footer a {
    color: #0073e6;
    text-decoration: none;
}

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

/* Checkout */
.checkout,
.thankyou {
    background: linear-gradient(0deg, #003267, #095c7d);
    min-height: 100vh
}

.checkout-container {
    margin: 80px auto;
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-sizing: border-box;
    border: 5px solid #d4d4d4
}

.checkout-form {
    display: flex;
    flex-wrap: wrap;

}

.form-column {
    flex-shrink: 1;
    min-width: 300px;

}

.checkout .form-column {
    padding: 40px 20px;
}

.form-column:nth-child(2) {
    background: #e5e5e5;
    flex: 1;
}

.checkout-form h2 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.2
}

/* Plan Selection Styling */
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
}

.plan-card {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.plan-card input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    accent-color: var(--secondary-color);
}

.plan-name {

    font-size: 20px;
    line-height: 1.3;
    text-align: left;
    font-family: 'Eurostile', 'Arial', sans-serif;
}

.plan-name strong {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
}

/* The "Selected" Glow Effect 
.plan-card.selected {
    background: linear-gradient(90deg, #00ffff, #00f2ff);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}
*/
/* Total Box */
.total-box {
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    display: flex;
    margin-left: 15px;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
    letter-spacing: -1px;
    line-height: 1.2
}

/* Form Inputs */
.input-group {
    margin-bottom: 0px;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box !important;
    font-family: 'Eurostile', 'Arial', sans-serif;
}

.input-group label:first-child {
    padding: 0 0 0 10px
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    font-size: 20px;
    padding: 20px 0 0 10px
}

.checkout input[type="text"],
.checkout input[type="email"] {
    width: 100%;
    padding: 15px 10px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    outline: none;
    font-family: 'Eurostile', 'Arial', sans-serif;
    margin-bottom: 10px
}

.input-row {
    display: flex;

    gap: 10px;
    margin-bottom: 20px;
}

.input-row input {
    flex: 1;
}

/* Payment Button */
.pay-button-container {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    margin-top: 50px;
}

.pay-button {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    padding: 18px 20px;
    border-radius: 56px;
    font-size: 20px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    cursor: pointer;
    border: 5px solid var(--primary-color);
    margin: auto;
    text-align: center
}

.pay-button:hover {
    filter: brightness(1.1);
}

/* Footer Text */
.security-text {
    text-align: center;
    font-size: 15px;
    color: var(--secondary-color);
    margin-top: 10px;
}



.form-column {
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 100%
}

.checkout .container {
    max-width: 1280px
}

/* Thank you */
.success-container {
    margin: 80px auto;
    background: #e5e5e5;
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-sizing: border-box;
    border: 5px solid #d4d4d4;
    padding: 40px 20px 20px;


}

.success-container h1 {
    color: var(--secondary-color);
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px
}

.success-container .intro {
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
}

.setup-box {
    margin: 40px 0
}

.success-container input[type="tel"],
.success-container input[type="text"],
.success-container input[type="email"] {
    width: 100%;
    padding: 15px 10px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    outline: none;
    font-family: 'Eurostile', 'Arial', sans-serif;

}

.success-container .input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.success-container label {
    font-size: 18px;
    outline: none;
    font-weight: bold
}

.btn-send {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0px 20px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer
}

.btn-send:hover {
    filter: brightness(1.1);
}

.btn-launch {
    background: #fff;
    color: var(--secondary-color);
    border: none;
    padding: 18px 40px;
    border-radius: 56px;
    font-size: 30px;
    font-family: 'Eurostile Bold', 'Arial', sans-serif;
    cursor: pointer;
    border: 5px solid var(--primary-color);
    margin: auto;
    text-align: center;

    width: 100%
}

.statement {
    text-align: center;
    font-size: 15px;
    color: var(--secondary-color);
    margin-top: 10px;
    margin-bottom: 30px;
}

.enterprise.pizza .enterprise-image {
    background: url(../img/pizza.png) no-repeat bottom;
    background-size: contain;
    min-height: 290px
}

.enterprise.pizza .btn {
    font-size: 22px;
    padding: 5px 30px;
    margin-top: 20px;

}

.autopost-text {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 20px 0;
    text-align: center;
    color: var(--secondary-color)
}

/* Breaks */
.mobile-break {
    display: inline;
}

.desktop-break {
    display: block;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .platforms-grid {
        flex-direction: column;
    }

    .promo-flex {
        flex-direction: column;
        text-align: center;
    }

    .promo-bolt {
        display: none;
        /* Hide large bolt element on mobile for space */
    }

    .form-row {
        flex-direction: column;
    }
}



/* --- Responsive --- */
@media (max-width: 1023px) {

    .mobile-break {
        display: block;
    }

    .desktop-break {
        display: inline;
    }



    .enterprise.pizza {
        display: flex;
        padding: 60px 0 0px !important;
        gap: 10px
    }

    .enterprise.pizza .enterprise-image {
        order: 2 !important;
        background-position: center;
    }

    .enterprise.pizza .enterprise-content {
        order: 1 !important;

    }

    .man-laptop {
        height: 300px;
        width: 100%
    }
}

@media (max-width: 769px) {
    .nav-links {
        display: none;
    }


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


    .slide {

        display: flex;
        align-items: flex-end;

    }

    .total-box {
        margin-top: 20px
    }


}

@media (max-width: 600px) {
    .hero {
        display: flex;
        align-items: flex-end;
    }

    .portrait.modal-content {
        width: 90% !important;
        max-width: 400px;
        /* portrait width */

    }

}

/*--tablet---*/
@media (min-width: 767px) {
    .logo div {
        width: 400px;
        height: 36px;
    }


    .hero-content {
        /*background: linear-gradient(270deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.85) 60%);
        */
        width: 100%;
        padding: 40px 30% 40px 30px;
        text-align: left
    }

    .gallery-grid {

        display: inline-grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .card-thumb {
        height: 32vh;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .card-overlay {

        padding: 30px 35px;
    }


    .feature-text p {
        font-size: 16px;
        line-height: 2.5 !important;
    }

    .feature-text .btn {
        width: 240px;

        font-size: 24px;
        padding: 5px 10px;
        border: 5px solid #ffff;
        margin: 80px auto -70px;
        text-align: center
    }

    .enterprise-content ul li {
        font-size: 22px;
        line-height: 2.2
    }

    .enterprise-content ol li {
        font-size: 22px;
        line-height: 2.2
    }

    .enterprise-content h3 {
        font-size: 40px;
    }

    .enterprise-content .btn {
        font-size: 22px;
        padding: 5px 30px;
        margin: 20px 0 0;
        width: 300px;
        text-align: center;
    }

    .enterprise.pizza .btn {
        font-size: 22px;
        padding: 5px 30px;
        margin: 20px 0 0;
        width: 240px
    }

    .video-cta {
        min-height: 350px;

    }

    .play-btn2 {

        width: 356px;
        height: 82px;

    }

    .footer-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px;
        gap: 30px;

    }

    .footer-links {
        margin: 0;
        gap: 25px;

    }

    .form-column {
        padding: 70px 50px
    }

    .pricing .hero .container {
        display: flex;
        width: 100%;
        gap: 0px;
        flex-direction: row;
    }

    .pricing-grid {
        margin-top: -60px;
        display: grid;
        grid-template-columns: repeat(2, minmax(240px, 1fr));

    }

    .platforms-grid {
        display: flex;
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 0px;
        padding: 60px 0
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 20px;

    }

    .promo-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 20px;
        background: var(--primary-color) url(../img/inclusion-logo.png) no-repeat right/contain;
        z-index: 1;
        margin: 20px;
        width: 100%
    }

    .promo-text h2 {

        max-width: 60%;

    }


    .checkout-form h2 {
        font-size: 30px;
    }

    .plan-name {
        font-size: 24px;
    }

    .plan-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .checkout-form h2 {
        font-size: 30px;
    }

    .total-box {

        margin-left: 50px;

        font-weight: 700;
        font-size: 24px;

    }

    .input-group label {

        margin-bottom: 8px;

        font-size: 24px;
    }

    .checkout input[type="text"],
    .checkout input[type="email"] {
        width: 100%;
        padding: 15px 20px;
        border-radius: 12px;
        border: none;
        font-size: 24px;
    }

    .pay-button {

        padding: 18px 40px;
        border-radius: 56px;
        font-size: 30px;
    }

    .input-group label:first-child {
        padding: 0 0 0 20px;
    }

    .success-container {

        padding: 60px 60px 20px;


    }

    .success-container input[type="tel"],
    .success-container input[type="text"],
    .success-container input[type="email"] {

        padding: 15px 20px;

        font-size: 24px;


    }

    .hero-content.container {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.85) 50%);

    }

    .lightning-promo {
        display: flex;
        flex-direction: column;
    }

}

/*--desktop---*/
@media (min-width: 1024px) {
/*
    .logo div {
        width: 680px;
        height: 50px;
    }
*/
    .nav-links {

        gap: 30px;
        font-size: 16px
    }


    .nav-links li {
        width: 90px;
        text-align: center
    }

    .hero-content.container {
        background: none !important;
        /*margin-bottom: 180px;*/
    }


    .hero-content {
        padding: 60px 30px;
        /*background: linear-gradient(270deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.85) 60%);
        */

    }

    .pricing .hero-content {
        padding: 40px 30vw 30px 20px;
        margin-bottom: 180px
    }

    .pricing .hero .container {
        justify-content: space-between;
    }

    .pricing .hero-content::before {
        content: "";
        position: absolute;
        top: 180px;
        left: 0;
        z-index: 0;
        width: calc(50% + 150px);
        height: 130px;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 20%);
    }

    .man-phone {

        height: 400px;
        width: 400px;


    }



    .home .hero-content.container {
        margin-bottom: 160px
    }

    .home .hero-content::before {
        content: "";
        position: absolute;
        top: 220px;
        left: 0;
        z-index: 0;
        width: calc(50% + 150px);
        height: 230px;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 20%);
    }

    /*.hero h1 {
        font-size: 50px;
        line-height: 1.1;
        margin-bottom: 10px
    }

    .hero-tagline {
        font-size: 28px;
        line-height: 1.1;
        z-index: 99;
        position: relative
    }*/

    .hero .btn {
        font-size: 24px;
        position: relative;
        z-index: 99
    }

    .card-gallery {
        padding-top: 40px
    }

    .gallery-grid {

        display: flex;
        gap: 10px;
    }

    .card {

        border-radius: 25px;

        flex: 1;
        position: relative;

        border: 5px solid #cfcfcf;


        color: var(--white);
    }

    .card-thumb {
        height: 300px;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .promo-card {

        margin-left: 20px
    }

    .feature-text h2 {
        font-size: 40px;
        line-height: 1.3
    }


    .enterprise {
        display: flex;
        gap: 0px;
        align-items: center;
        padding: 120px 0;
        flex-direction: row;
    }

    .enterprise-image {
        width: 65%;
        padding-right: 0;
    }

    .enterprise.pizza {
        padding: 0;
        align-items: flex-end;
    }

    .enterprise.pizza .enterprise-image {
        width: 40%;
        min-height: 390px;
    }

    .enterprise.pizza .enterprise-content {
        width: 60%;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .enterprise-image img {
        max-width: 100%;


    }

    .enterprise-content {
        width: 44%
    }

    .video-cta {
        background: var(--secondary-color);
        align-items: center;
    }

    .video-cta .container {
        width: 100%;
        display: flex;
        align-items: center;
        min-height: 380px;
        justify-content: flex-start;
        background: url(../img/video-1.jpg) no-repeat var(--secondary-color);
        background-size: cover;

    }

    .play-btn2 {

        width: 456px;
        height: 82px;
        margin-left: 110px;
    }

    .footer-links a {
        font-size: 24px;

    }

    .pricing .hero {
        height: 640px;
        padding-top: 50px;
    }

    .pricing .hero h1 {
        font-size: 40px;
        line-height: 1.3;
        margin: 120px 0 0 40px;
    }

    .autopost-text {
        font-size: 24px;
        font-weight: bold;
        padding: 20px 40px 0;
        text-align: center;
        color: var(--secondary-color)
    }

    .pricing-grid {
        margin-top: -260px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;

    }

    .lightning-promo {
        flex-direction: row;
    }

    .platforms-grid {
        display: flex;
        justify-content: space-between;
        gap: 100px;
        margin-bottom: 40px;
        padding: 60px 0 0
    }

    .platform-column:nth-child(1) {
        width: 70%;
        flex-grow: 1
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 20px;

    }

    .promo-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 90px 80px;
        background: var(--primary-color) url(../img/inclusion-logo.png) no-repeat right/contain;
        z-index: 1;

        margin: 0 auto !important
    }

    .promo-text h2 {
        font-size: 42px;
        font-weight: normal;
        max-width: 980px;
        line-height: 1.2;
        margin: 0;
    }



    .success-container {
        margin: 80px auto;

        width: 50%;


        padding: 60px 60px 20px;
    }

    .man-point {
        height: 400px;
        width: 400px
    }

    .contact-form form {
        padding: 60px 130px 60px 50px
    }

    .contact .contact-section h1 {
        font-size: 40px;
        line-height: 1.3;
        margin: 50px 0 20px;
        color: var(--secondary-color)
    }

    .contact-info {
        padding: 20px 50px;
    }

    .contact-section {

        padding: 0px 50px 0;

    }

    .contact-container {
        flex-direction: row;
        align-items: flex-end;
    }

    .man-laptop {
        flex: 1;
        height: 600px
    }

    .contact-info {

        margin-bottom: 80px;

    }
}