:root {
    --primary: #2563eb;
    --primary: #f32a22;
    --primary-dark: #1d4ed8;
    --primary-dark: #850000;
    --primary-light: #3b82f6;
    --primary-light: #f32a22;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-light: #fcf8f8 ;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/*body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}*/

.container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

.header-cta {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    /*background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);*/
    background: radial-gradient(circle, rgba(235, 37, 37, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 60px;*/
    align-items: center;
}

.hero-visual__img img{
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: rgba(37, 99, 235, 0.1);*/
    background: rgba(235, 37, 37, 0.1);
    color: var(--primary);
    font-family: arial;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 17rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.hero h1 {
    font-size: 57.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 21rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.6;
    font-size: 16rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.stat-value {
    font-size: 35rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: arial;
}

.stat-label {
    font-size: 17rem;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-image-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-image-content svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-image-content p {
    font-size: 19rem;
    opacity: 0.8;
}

/* Section Styles */
.section:not(#header) {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section h2 {
    font-size: 42rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.section-description {
    font-size: 18rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Screenshots */
.screenshots {
    background: var(--bg-light);
    line-height: 1.5;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.screenshot-image {
    /*aspect-ratio: 16/10;*/
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    position: relative;
    overflow: hidden;
    height: 250px;
}
.screenshot-image a{
    text-decoration: none;
    display: block;
    object-fit: cover;
    height: 250px;
}

.screenshot-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/*
.screenshot-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2394a3b8' fill-opacity='0.2' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}*/

.screenshot-image svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.screenshot-info {
    padding: 20px;
}

.screenshot-info h3 {
    font-size: 17rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.screenshot-info p {
    font-size: 15rem;
    color: var(--text-light);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    /*background: rgba(37, 99, 235, 0.1);*/
    background: rgba(235, 37, 37, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 15rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13rem;
    color: var(--text-light);
}

.feature-addons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-addon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15rem;
    color: var(--text);
}

.feature-addon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Integrations */
.integrations {
    background: var(--bg-dark);
    color: white;
    line-height: 1.5;
}

.integrations .section-header h2 {
    color: white;
}

.integrations .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.integrations-text h3 {
    font-size: 25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.integrations-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 15rem;
}

.integrations-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15rem;
}

.integration-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
}

.integration-item span {
    font-weight: 500;
}

.integrations-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.integration-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.integration-stat-value {
    font-size: 43rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    font-family: sans-serif;
}

.integration-stat-label {
    font-size: 16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audience-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.audience-icon svg {
    width: 32px;
    height: 32px;
}

.audience-card h3 {
    font-size: 16rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Case Study */
.case-study {
    background: var(--bg-light);
    line-height: 1.6;
}

.case-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.case-image {
    /*background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 48px;*/
    position: relative;
    padding: 10px;
}
.case-image img{
    width: 100%;
    height: auto;
    display: block;
}

/*
.case-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}*/

.case-image-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.case-image-content svg {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.case-image-content h3 {
    font-size: 25rem;
    font-weight: 700;
}

.case-content {
    padding: 48px;
}

.case-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.case-content h3 {
    font-size: 27rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.case-features {
    list-style: none;
    margin-bottom: 32px;
    font-size: 17rem;
}

.case-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.case-features li:last-child {
    border-bottom: none;
}

.case-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.case-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.case-meta-item {
    display: flex;
    flex-direction: column;
}

.case-meta-value {
    font-size: 25rem;
    font-weight: 700;
    color: var(--secondary);
}

.case-meta-label {
    font-size: 15rem;
    color: var(--text-light);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
    font-size: 17rem;
}

.case-link:hover {
    gap: 12px;
}

/* Extensions */
.extensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.extension-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
}

.extension-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.extension-icon {
    width: 56px;
    height: 56px;
    /*background: rgba(37, 99, 235, 0.1);*/
    background: rgba(235, 37, 37, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.extension-icon svg {
    width: 28px;
    height: 28px;
}

.extension-content h3 {
    font-size: 19rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.extension-content p {
    font-size: 15rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    background: var(--bg-light);
    line-height: 1.5;
}

.timeline-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.timeline-option {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.timeline-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13rem;
    font-weight: 600;
}

.timeline-badge.popular {
    background: var(--accent);
}

.timeline-option h3 {
    font-size: 23rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    margin-top: 8px;
}

.timeline-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 17rem;
}

.timeline-duration svg {
    width: 20px;
    height: 20px;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-list span {
    font-size: 17rem;
    color: var(--text);
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.package-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: var(--primary);
    position: relative;
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14rem;
    font-weight: 600;
    line-height: 1.6;
}

.package-card:hover {
    box-shadow: var(--shadow-lg);
}

.package-header {
    margin-bottom: 32px;
}

.package-header h3 {
    font-size: 26rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.package-header p {
    color: var(--text-light);
    font-size: 16rem;
    line-height: 1.6;
}

.package-price {
    font-size: 40rem;
    line-height: 1.6;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
}

.package-price span {
    font-size: 18rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.package-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.package-features span {
    font-size: 16rem;
    line-height: 1.5;
}

.package-btn {
    width: 100%;
    justify-content: center;
}

.addons-section {
    margin-top: 64px;
}

.addons-section h3 {
    text-align: center;
    font-size: 27rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 32px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.addon-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.addon-icon svg {
    width: 24px;
    height: 24px;
}

.addon-content h4 {
    font-size: 19rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.addon-content p {
    font-size: 14rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 50rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 19rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-price {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.cta-price-value {
    font-size: 35rem;
    font-weight: 800;
    color: var(--accent);
}

.cta-price-label {
    font-size: 17rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--secondary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
/*.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 32px;
}*/

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual__img{
        margin-bottom: 40px;
    }



    .hero h1 {
        font-size: 57.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .screenshots-grid,
    .features-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-content,
    .case-card,
    .timeline-content,
    .packages-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h1 {
        font-size: 45rem;
    }
    .hero-cta{
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .section:not(#header) {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 35rem;
    }

    .screenshots-grid,
    .features-grid,
    .audience-grid,
    .integrations-list,
    .extensions-grid {
        grid-template-columns: 1fr;
    }

    .integrations-visual {
        grid-template-columns: 1fr;
    }

    .case-content {
        padding: 32px;
    }

    .case-meta {
        flex-direction: column;
        gap: 16px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}