/* Font Face Declarations */
@font-face {
    font-family: "TWK Lausanne";
    src: url("./fonts/TWKLausanne-400.woff2") format("woff2"),
         url("./fonts/TWKLausanne-400.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TWK Lausanne";
    src: url("./fonts/TWKLausanne-500.woff2") format("woff2"),
         url("./fonts/TWKLausanne-500.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TWK Lausanne";
    src: url("./fonts/TWKLausanne-600.woff2") format("woff2"),
         url("./fonts/TWKLausanne-600.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TWK Lausanne";
    src: url("./fonts/TWKLausanne-700.woff2") format("woff2"),
         url("./fonts/TWKLausanne-700.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TWK Lausanne";
    src: url("./fonts/TWKLausanne-900.woff2") format("woff2"),
         url("./fonts/TWKLausanne-900.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "TWK Lausanne", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "TWK Lausanne", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #f7f7f7;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background-color: rgba(247, 247, 247, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-placeholder {
    display: none;
}

.header-placeholder.visible {
    display: block;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 80px;
}

.nav-link {
    font-size: 18px;
    color: #333;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #000;
}

.nav-link.underline {
    text-decoration: underline;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    font-size: 15px;
    color: #666;
}

.header-link:hover {
    color: #000;
}

.header-link.highlight {
    color: #333;
    font-weight: 500;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #c92a2a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.btn-login::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn-login:hover {
    background-color: #a82222;
}

.btn-login:hover::after {
    transform: translateX(40px);
    opacity: 0;
}

/* Hero Section */
.hero {
    padding: 160px 0 160px 0;
    background-color: #f7f7f7;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 620px;
    margin-top: -60px;
}

.hero-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 16px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    color: #6b7280;
    padding: 5px 18px 5px 5px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-tag:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.hero-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #991b1b;
}

.hero-tag-icon svg {
    width: 12px;
    height: 12px;
}

.hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c92a2a;
    color: #fff;
    padding: 16px 80px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.btn-primary::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn-primary:hover {
    background-color: #a82222;
}

.btn-primary:hover::after {
    transform: translateX(60px);
    opacity: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.hero-image img {
    position: absolute;
    left: 0;
	margin-top: -50px;
	margin-left: -40px;
    width: 160%;
    max-width: none;
    transform-origin: left center;
}

.hero-image video {
    position: absolute;
    left: 0;
	margin-top: -50px;
	margin-left: -80px;
    width: 175%;
    max-width: none;
    transform-origin: left center;
}

/* Phone Mockup */
.phone-mockup {
    width: 240px;
    height: 480px;
    background-color: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    position: relative;
}

.phone-mockup.large {
    width: 280px;
    height: 560px;
}

.phone-mockup.small {
    width: 180px;
    height: 360px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 28px;
    overflow: hidden;
}

.hero-phone-screen {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.payment-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 40px 20px;
}

.contactless-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.contactless-icon svg {
    width: 100%;
    height: 100%;
    color: #1a1a1a;
}

.payment-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.cancel-btn {
    background: linear-gradient(to right, #c92a2a 0%, #c92a2a 50%, #770f1e 100%);
    background-size: 200% 100%;
    background-position: right center;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: background-position 0.4s ease;
}

.cancel-btn:hover {
    background-position: left center;
}

/* Business Types Section */
.business-types {
    background-color: #f7f7f7;
    padding: 40px 0 80px 0;
    border-radius: 0 0 40px 40px;
    margin-top: -40px;
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}

.business-types .container {
    max-width: 1300px;
    padding: 0 24px;
}

.business-types .section-subtitle {
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

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

.business-list {
    display: flex;
    gap: 60px;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.business-list span {
    color: #9c9c9c;
    font-size: 32px;
    font-weight: 600;
    white-space: nowrap;
}

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

/* Features Main Section */
.features-main {
    padding: 120px 0 100px 0;
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 100px;
    line-height: 1.3;
}

.features-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.features-list {
    flex: 1;
    max-width: 50%;
}

.features-headline {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.hand-underline {
    position: relative;
    display: inline-block;
}

.hand-underline::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q 10 4, 20 8 T 40 8 T 60 8 T 80 8 T 100 8' stroke='%23c92a2a' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #1a1a1a;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    color: #c92a2a;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid #c92a2a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
}

.features-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 50%;
}

.features-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 30px 0 80px 0;
    text-align: center;
    background-color: #fff;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 24px;
}

/* Funkce Section */
.funkce-section {
    padding: 140px 0 120px 0;
    background-color: #f1f4f7;
    position: relative;
}

.funkce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #fff;
    border-radius: 0 0 40px 40px;
}

.funkce-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.funkce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.funkce-card {
    text-align: center;
}

.funkce-image {
    margin-bottom: 24px;
}

.funkce-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.funkce-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.funkce-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

.funkce-hidden {
    display: none;
}

.funkce-grid.expanded .funkce-hidden {
    display: block;
}

.funkce-more-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    color: #666;
    display: none;
}

.funkce-more-text.visible {
    display: block;
}

.funkce-toggle-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-show-all {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-show-all::after {
    content: '↓';
    font-size: 16px;
    transition: transform 0.3s ease;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.btn-show-all:hover {
    border-color: #999;
    background: #f5f5f5;
}

.btn-show-all.expanded::after {
    animation: bounce-arrow-up 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow-up {
    0%, 100% {
        transform: rotate(180deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(4px);
    }
}

/* Comparison Section */
.comparison-section {
    background-color: #2a2a2a;
    padding: 100px 0 140px 0;
}

.comparison-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.comparison-subtitle {
    font-size: 18px;
    color: #999;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.comparison-column {
    text-align: center;
}

.comparison-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.comparison-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.comparison-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #4a4a4a;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    font-size: 14px;
    color: #999;
}

.comparison-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.comparison-value.comparison-check {
    color: #4ade80;
    font-size: 20px;
}


/* CTA Register Section */
.cta-register-section {
    background-color: #1a1a1a;
    padding: 140px 0;
    padding-top: 120px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.cta-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
	margin-top: 40px;
}

.cta-register-left {
    color: #fff;
}

.cta-register-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 16px;
}

.cta-register-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 32px;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #4ade80;
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #4ade80;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-boxes {
    display: flex;
    gap: 16px;
    margin: 40px 0;
}

.pricing-box {
    flex: 1;
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
}

.pricing-box-highlight {
    border: 2px solid #4ade80;
}

.pricing-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.pricing-price-large span {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

.cta-bottom-text {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-top: 40px;
}

.cta-register-right {
    background-color: #fff;
    border-radius: 16px;
    padding: 48px 40px;
}

[data-leads-form] {
    min-height: 750px;
}

[data-leads-form] iframe {
    width: 100% !important;
    min-height: 720px !important;
    height: auto !important;
    border: none;
    display: block;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 16px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input::placeholder {
    color: #aaa;
}

.btn-register {
    background-color: #c92a2a;
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.btn-register:hover {
    background-color: #a82222;
}

.form-note-small {
    font-size: 13px;
    color: #888;
    text-align: center;
}

.form-note-small a {
    color: #888;
    text-decoration: underline;
}

.form-terms {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.form-terms a {
    color: #666;
    text-decoration: underline;
}

.form-terms a:hover {
    color: #333;
}

.faq-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.faq-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
    text-align: left;
}

.faq-question:hover {
    background-color: #333;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before {
    content: '›';
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
    display: block;
    color: #999;
}

.faq-item.active .faq-icon::before {
    content: '×';
    font-size: 24px;
    color: #999;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 18px;
    color: #999;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
}

.payment-logos {
    height: 32px;
    width: auto;
}

.footer-right {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 8px;
    color: #1a1a1a;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-contact {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-separator {
    color: #444;
    margin: 0 12px;
}

.footer-legal {
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 24px 0 32px 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #c92a2a;
}

.hero-stat-label {
    font-size: 14px;
    color: #666;
}

.hero-guarantee {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
}

/* Why TAPYGO Section */
.why-tapygo {
    padding: 120px 0;
    background-color: #fff;
}

.why-tapygo-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.why-tapygo-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-tapygo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-card-image {
    width: 100%;
    height: 200px;
    margin: 0 0 24px 0;
    background-color: #f1f4f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c92a2a;
}

.why-card-image svg {
    width: 80px;
    height: 80px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.why-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.why-tapygo-cta {
    text-align: center;
    margin-top: 48px;
}

/* Main Features Section */
.main-features {
    padding: 120px 0 0 0;
    background-color: #fff;
}

.main-features-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.main-features-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-detail:last-child {
    margin-bottom: 0;
}

.feature-detail-reverse {
    direction: rtl;
}

.feature-detail-reverse > * {
    direction: ltr;
}

.feature-detail-image {
    width: 100%;
}

.feature-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.feature-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-detail-content > p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-detail-list {
    list-style: none;
}

.feature-detail-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.feature-detail-list li:last-child {
    margin-bottom: 0;
}

.feature-detail-icon {
    color: #c92a2a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-detail-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Features Carousel Section */
.features-carousel-section {
    margin-top: 100px;
    padding: 60px 0;
    overflow: hidden;
}

.features-carousel-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.features-carousel-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 10px 0;
}

.features-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.features-carousel-wrapper:active {
    cursor: grabbing;
}

.features-carousel-wrapper.dragging {
    scroll-behavior: auto;
}

.features-carousel {
    display: flex;
    gap: 24px;
    animation: scroll-left 90s linear infinite;
    width: max-content;
    padding: 0 24px;
}

.features-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.feature-carousel-card {
    flex: 0 0 320px;
    background-color: #f1f4f7;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-carousel-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-carousel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-carousel-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-carousel-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Customer Stories Section - Carousel */
.customer-stories {
    padding: 100px 0 80px 0;
    background-color: #f7f7f7;
    overflow: hidden;
}

.customer-stories-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.stories-slider-container {
    margin: 0 auto;
    position: relative;
    overflow: visible;
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.stories-slider {
    position: relative;
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}

.story-slide {
    flex: 0 0 600px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    cursor: pointer;
    position: relative;
}

.story-slide.active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
    z-index: 5;
}

.story-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: opacity 0.6s ease;
    border-radius: 16px;
    z-index: 1;
}

.story-slide.active::before {
    opacity: 0;
}


.story-slide:hover:not(.active) {
    opacity: 0.6;
    transform: scale(0.88);
}

.story-slide-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}

.story-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.story-slide-content {
    text-align: left;
    opacity: 0.4;
    transition: opacity 0.6s ease;
    pointer-events: none;
    position: relative;
    z-index: 0;
}

.story-slide.active .story-slide-content {
    opacity: 1;
    pointer-events: auto;
}

.story-quote {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-category {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
}


/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background-color: #f1f4f7;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.stat-highlight-item {
    text-align: center;
    padding: 32px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-highlight-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c92a2a;
    margin-bottom: 8px;
}

.stat-highlight-label {
    display: block;
    font-size: 14px;
    color: #666;
}

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

.testimonial-real-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-real-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-real-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-real-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5e5e5;
    overflow: hidden;
}

.testimonial-real-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-real-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-real-business {
    font-size: 13px;
    color: #666;
}

/* Pricing Transparency Section */
.pricing-transparency {
    padding: 120px 0;
    background-color: #fff;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-column {
    background-color: #fafafa;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.pricing-recommended {
    border-color: #4ade80;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ade80;
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.pricing-price-big {
    margin-bottom: 32px;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #4ade80;
    font-weight: 700;
    margin-right: 8px;
}

.cross-icon {
    color: #999;
    margin-right: 8px;
}

.feature-disabled {
    color: #999;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-pricing:hover {
    background-color: #333;
}

.btn-pricing-highlight {
    background-color: #c92a2a;
}

.btn-pricing-highlight:hover {
    background-color: #a82222;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 12px;
}

.total-cost {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f1f4f7;
    border-radius: 16px;
}

.total-cost h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.cost-breakdown {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-total {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid #1a1a1a;
}

.cost-label {
    font-size: 15px;
    color: #333;
}

.cost-value {
    font-size: 18px;
    font-weight: 600;
    color: #c92a2a;
}

.cost-note {
    font-size: 13px;
    color: #666;
    margin-top: 16px;
    text-align: center;
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 120px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.roi-calculator .section-label {
    color: #999;
}

.roi-calculator .section-title {
    color: #fff;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 48px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator-input-group label {
    display: block;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.calculator-input-group input {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
}

.calculator-input-group input:focus {
    outline: none;
    border-color: #4ade80;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-results h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
}

.calculator-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #444;
}

.result-label {
    font-size: 15px;
    color: #ccc;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #4ade80;
}

.result-value-big {
    font-size: 32px;
}

.calculator-results .btn-primary {
    margin-top: 32px;
}


/* Feature Categories */
.feature-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.feature-category-btn svg {
    width: 20px;
    height: 20px;
}

.feature-category-btn:hover {
    border-color: #c92a2a;
    color: #c92a2a;
}

.feature-category-btn.active {
    background-color: #c92a2a;
    border-color: #c92a2a;
    color: #fff;
}

.feature-category-content {
    display: none;
}

.feature-category-content.active {
    display: block;
}

/* Security Section */
.security-section {
    padding: 120px 0;
    background-color: #fff;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.security-card {
    text-align: center;
    padding: 32px 24px;
    background-color: #fafafa;
    border-radius: 12px;
}

.security-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: #4ade80;
}

.security-icon svg {
    width: 100%;
    height: 100%;
}

.security-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.integration-partners {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #f1f4f7;
    border-radius: 12px;
}

.integration-partners h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.integration-partners p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.integration-logo {
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Hardware Section */
.hardware-section {
    padding: 120px 0;
    background-color: #f1f4f7;
}

.hardware-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.hardware-option {
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.hardware-recommended {
    border-color: #4ade80;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.15);
}

.hardware-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ade80;
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hardware-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #c92a2a;
}

.hardware-image svg {
    width: 100%;
    height: 100%;
}

.hardware-option h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hardware-price {
    margin-bottom: 24px;
}

.price-big {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c92a2a;
}

.price-small {
    font-size: 16px;
    color: #666;
}

.hardware-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.hardware-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.btn-hardware {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-hardware:hover {
    background-color: #333;
}

.btn-hardware-primary {
    background-color: #c92a2a;
}

.btn-hardware-primary:hover {
    background-color: #a82222;
}

.hardware-note {
    font-size: 13px;
    color: #666;
    margin-top: 16px;
}

.hardware-comparison-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background-color: #fff;
    border-radius: 12px;
}

.hardware-comparison-note p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Getting Started Timeline */
.getting-started-section {
    padding: 120px 0;
    background-color: #fff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-color: #e5e5e5;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #c92a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.timeline-checklist {
    list-style: none;
}

.timeline-checklist li {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
}

.getting-started-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.getting-started-text {
    font-size: 20px;
    margin-bottom: 24px;
    color: #333;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    margin: 24px 0;
}

.trust-badge {
    flex: 1;
    padding: 16px;
    background-color: #2a2a2a;
    border-radius: 8px;
    text-align: center;
}

.trust-badge strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.trust-badge span {
    display: block;
    font-size: 12px;
    color: #999;
}

/* Form Improvements */
.form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.form-group select {
    width: 100%;
    padding: 18px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
    font-family: inherit;
    background-color: #fff;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-note-small {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 8px;
}

.form-note-small a {
    color: #c92a2a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .funkce-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

    .features-content {
        flex-direction: column;
        align-items: center;
    }

    .features-list {
        max-width: 100%;
    }

    .cta-register-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-register-left {
        text-align: center;
    }

    .cta-benefits li {
        justify-content: center;
    }

    /* New responsive styles */
    .why-tapygo-grid {
        grid-template-columns: 1fr;
    }

    .stats-highlight {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-real {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .calculator-container {
        grid-template-columns: 1fr;
    }

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

    .hardware-options {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }

    .feature-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-detail-reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .hero-content {
        max-width: 100%;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-image img,
    .hero-image video {
        width: 100%;
        max-width: 100%;
        transform: translateX(0);
        margin-top: 32px;
    }

    .business-list {
        gap: 20px;
    }

    .business-list span {
        font-size: 18px;
    }

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

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .cta-register-section {
        padding: 60px 0;
    }

    .cta-register-title {
        font-size: 26px;
    }

    .cta-register-right {
        padding: 32px 24px;
    }

    /* New responsive styles */
    .stats-highlight {
        grid-template-columns: 1fr;
    }

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

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-number {
        font-size: 18px;
    }

    .feature-categories {
        gap: 8px;
    }

    .feature-category-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .why-tapygo-title {
        font-size: 32px;
    }

    .why-tapygo-subtitle {
        font-size: 16px;
    }

    .why-card-image {
        width: 100%;
        height: 160px;
    }

    .why-card-image svg {
        width: 60px;
        height: 60px;
    }

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

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

    .feature-detail-content h3 {
        font-size: 24px;
    }

    .feature-detail-content > p {
        font-size: 16px;
    }

    .feature-detail {
        margin-bottom: 60px;
    }

    .features-carousel-title {
        font-size: 24px;
    }

    .feature-carousel-card {
        flex: 0 0 280px;
    }

    .features-carousel-section {
        margin-top: 60px;
    }

    .customer-stories-title {
        font-size: 36px;
    }

    .story-quote {
        font-size: 16px;
    }

    .stories-slider-container {
        padding: 0 40px;
    }

    .stories-slider {
        padding-left: 100px;
    }

    .story-slide {
        flex: 0 0 500px;
    }

    .story-arrow-prev {
        left: 10px;
    }

    .story-arrow-next {
        right: 10px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact a {
        font-size: 13px;
    }

    .footer-separator {
        display: block;
        visibility: hidden;
        height: 4px;
    }

    .footer-legal {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0;
    }

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

    .btn-primary {
        padding: 18px 40px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .phone-mockup.large {
        width: 220px;
        height: 440px;
    }

    .feature-carousel-card {
        flex: 0 0 240px;
    }

    .customer-stories {
        padding: 60px 0 80px 0;
    }

    .customer-stories-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stories-slider-container {
        padding: 0 20px;
    }

    .stories-slider {
        padding-left: 0;
        justify-content: center;
    }

    .story-slide {
        flex: 0 0 calc(100vw - 80px);
        max-width: 500px;
    }

    .story-slide:not(.active) {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .story-slide::before {
        display: none;
    }

    .story-slide-image {
        margin-bottom: 24px;
    }

    .story-quote {
        font-size: 15px;
    }

    .story-slide-content {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-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;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    padding: 80px 24px 40px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav-list li {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #c92a2a;
}

.btn-mobile-cta {
    display: inline-block;
    background-color: #c92a2a;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    text-align: center;
    margin-top: 16px;
    border: none;
}

/* Mobile Responsive - Show hamburger, hide desktop nav */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    /* Hero section - video above text */
    .hero-container {
        flex-direction: column-reverse;
    }

    .hero-image {
        position: relative;
        width: 100%;
        margin-bottom: 32px;
    }

    .hero-image video {
        position: relative;
        width: 100%;
        margin: 0;
        left: auto;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Fix customer stories / testimonials on mobile */
    .stories-slider-container {
        overflow: hidden;
        width: 100%;
    }

    .stories-slider {
        display: flex;
        flex-direction: column;
        gap: 24px;
        transform: none !important;
        padding: 0;
    }

    .story-slide {
        flex: none;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        transform: scale(1);
        position: relative;
    }

    .story-slide::before {
        display: none;
    }

    .story-slide-content {
        opacity: 1;
        pointer-events: auto;
    }

    .story-slide:not(.active) {
        display: none;
    }

    .story-slide.active {
        display: block;
    }

    .customer-stories {
        padding: 60px 0;
    }
}
