/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --benck-green: #6de067;
    --dark-green: #5bc952;
    --light-green: #e8fae7;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    color: var(--medium-gray);
    font-size: 1.125rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--benck-green);
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--dark-gray) !important;
    color: var(--white) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(109, 224, 103, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(109, 224, 103, 0.1);
    border: 1px solid rgba(109, 224, 103, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-badge span {
    color: var(--benck-green);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--benck-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: var(--benck-green);
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--benck-green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-dashboard {
    width: 100%;
    max-width: 520px;
    position: relative;
}

/* Main Dashboard Window */
.dashboard-window {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(109, 224, 103, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(109, 224, 103, 0.15);
    animation: windowFloat 6s ease-in-out infinite;
    transform: rotateX(2deg) rotateY(-3deg);
    transform-style: preserve-3d;
}

@keyframes windowFloat {
    0%, 100% { transform: rotateX(2deg) rotateY(-3deg) translateY(0); }
    50% { transform: rotateX(1deg) rotateY(-2deg) translateY(-8px); }
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.window-dots span:first-child { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:last-child { background: #28c840; }

.window-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.window-content {
    display: flex;
    min-height: 280px;
}

.dashboard-sidebar {
    width: 48px;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: var(--benck-green);
    box-shadow: 0 4px 12px rgba(109, 224, 103, 0.4);
}

.dashboard-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    gap: 12px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-trend {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.stat-trend.up {
    background: rgba(109, 224, 103, 0.15);
    color: var(--benck-green);
}

.chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
}

.mini-chart {
    width: 100%;
    height: 60px;
}

.chart-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawChart 2s ease forwards 0.5s;
}

@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.float-notification {
    top: 5%;
    right: -15%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatNotif 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes floatNotif {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-6px) translateX(4px); }
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--benck-green), var(--dark-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-text strong {
    font-size: 0.8rem;
    color: var(--black);
    font-weight: 600;
}

.notif-text span {
    font-size: 0.7rem;
    color: var(--medium-gray);
}

.float-widget {
    bottom: 15%;
    left: -10%;
    padding: 14px 18px;
    min-width: 160px;
    animation: floatWidget 5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatWidget {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

.widget-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.widget-tasks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.task-item {
    font-size: 0.75rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-item span {
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
}

.task-item.done {
    color: var(--dark-green);
}

.task-item.done span {
    background: var(--benck-green);
    border-color: var(--benck-green);
    position: relative;
}

.task-item.done span::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.float-badge {
    bottom: 5%;
    right: -5%;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--black), #222);
    border: 1px solid rgba(109, 224, 103, 0.3);
    animation: floatBadge 4.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.float-badge svg {
    width: 16px;
    height: 16px;
    color: var(--benck-green);
}

.float-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--benck-green);
    white-space: nowrap;
}

/* Clients/Trust Bar */
.trust-bar {
    background: var(--light-gray);
    padding: 3rem 0;
}

.trust-bar .container {
    text-align: center;
}

.trust-bar p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logos span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Problems Section */
.problems {
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--benck-green);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.problem-card:hover {
    border-color: var(--benck-green);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: var(--benck-green);
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    color: var(--black);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(109, 224, 103, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services .section-header {
    color: var(--white);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--benck-green);
    transform: translateY(-4px);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--benck-green);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--benck-green);
    border-radius: 50%;
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-visual {
    position: relative;
}

.benefits-image {
    background: linear-gradient(135deg, var(--benck-green) 0%, var(--dark-green) 100%);
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefits-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='%23000000' fill-opacity='0.05'%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");
}

.benefits-image-text {
    font-size: 4rem;
    font-weight: 700;
    color: var(--black);
    z-index: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--light-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark-green);
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 1rem;
}

/* Testimonial Section */
.testimonial {
    background: var(--light-gray);
    padding: 6rem 0;
}

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

.testimonial-quote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--benck-green);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--benck-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Process Section */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--benck-green) 0%, rgba(109, 224, 103, 0.3) 100%);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--benck-green);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: var(--benck-green);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
}

.cta h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--dark-gray);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--black);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--benck-green);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--benck-green);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-social a:hover svg {
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--benck-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }

    .hero-dashboard {
        max-width: 380px;
    }
    
    .float-notification {
        right: -5%;
        top: 0;
    }
    
    .float-widget {
        left: -5%;
    }
    
    .float-badge {
        right: 0;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

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

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

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

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        order: -1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-element {
        display: none;
    }
    
    .hero-dashboard {
        max-width: 100%;
    }
    
    .dashboard-window {
        transform: none;
        animation: none;
    }
}
