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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #005885, #003d5c);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0077b5;
    border: 2px solid #0077b5;
}

.btn-secondary:hover {
    background: #0077b5;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #0077b5;
    border: 2px solid #0077b5;
}

.btn-outline:hover {
    background: #0077b5;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0077b5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight {
    color: #0077b5;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0077b5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-guarantee {
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin: 0 auto 2rem auto;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 1000px;
}

.section-description {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problems Section */
.problems {
    background: #f8fafc;
    padding: 50px 0;
}

.problems-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.problem-card {
    background: white;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #0077b5;
}

.problem-icon {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 6300;
    margin-bottom: 0.3rem;
}

.problem-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.problems-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.problems-intro p {
    font-size: 1.2rem;
    color: #64748b;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.problems-explanation {
    margin-bottom: 2.5rem;
}

.problems-explanation h3 {
    text-align: center;
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reasons-list {
    max-width: 900px;
    margin: 0 auto;
}

.reasons-list p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.1rem;
}

.consequences-section {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.consequences-section h3 {
    text-align: center;
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.consequences-list p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Dashboard Section */
.dashboard-section {
    background: #ffffff;
    padding: 4rem 0 6rem 0;;
    
    border: none;
}

.dashboard-section .container {
    position: relative;
}

.dashboard-image {
    width: 80%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 115px;
    z-index: 99999;
}

.dashboard-widget {
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-head {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dashboard-title {
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #111827;
    font-size: 1.2rem;
}

.dashboard-subtitle {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-body {
    padding: 16px 20px;
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.dashboard-kpi {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    padding: 8px;
    background: #fafafa;
}

.dashboard-kpi .lbl {
    font-size: 10px;
    color: #6b7280;
    font-weight: 600;
}

.dashboard-kpi .val {
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.dashboard-hr {
    height: 1px;
    background: rgba(17, 24, 39, 0.08);
    margin: 14px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 8px;
}

.dashboard-insights {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.dashboard-insight {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    padding: 5px;
    background: #f8fafc;
    font-size: 11px;
    color: #111827;
}

.dashboard-insight .ok {
    color: #16a34a;
}

.dashboard-insight .bad {
    color: #dc2626;
}

/* What You Get Section */
.what-you-get-section {
    background: #ffffff;
    padding: 80px 0;
}

.what-you-get-section .section-description {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits & Product Section - Dominant Block */
.benefits-product {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0 4rem 0;
}

.core-benefit {
    text-align: center;
    margin-bottom: 4rem;
}

.core-benefit .section-title {
    font-size: 2.8rem;
    color: #1e293b;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
}

.subsection-title {
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

/* How It Works - Process List */
.how-it-works {
    margin-bottom: 4rem;
}

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

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.step-number {
    background: #0077b5;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.process-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.process-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* What You Get - Benefits Grid */
.what-you-get {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Extra Advantages */
.extra-advantages {
    max-width: 800px;
    margin: 0 auto;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.advantage-item p {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Client Process Section */
.client-process {
    background: #ffffff;
    padding: 4rem 0;
}

.client-steps {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.client-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.client-step .step-number {
    background: #0077b5;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.client-step h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.client-step p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.client-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-highlight {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-highlight h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-highlight li {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.benefit-highlight li:last-child {
    margin-bottom: 0;
}

/* Offer Section */
.offer {
    background: #ffffff;
    padding: 4rem 0;
}

.offer-content {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.offer-process {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.offer-process .process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 300px;
    text-align: left;
}

.offer-process .step-number {
    background: #0077b5;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.offer-process .process-step-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.offer-process .process-step-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.offer .primary-cta {
    text-align: center;
    margin: 2rem 0;
}

.wins-reminder {
    text-align: center;
    margin-bottom: 4rem;
}

.wins-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.win-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
}

.win-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-after-click {
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 300px;
    text-align: left;
}

.step-number {
    background: #0077b5;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.process-step-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.primary-cta {
    text-align: center;
    margin: 3rem 0;
}

.call-benefits {
    max-width: 800px;
    margin: 0 auto;
}

.call-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.call-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.call-benefit-item .benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.call-benefit-item p {
    color: #1e293b;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.problem-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #64748b;
    font-size: 1rem;
}

.problems-text {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    font-style: italic;
}

/* Statistics Section */
.statistics {
    background: #0077b5;
    color: white;
}

.stat-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.stat-text {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Why Problems Section */
.why-problems {
    background: white;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.reason {
    text-align: center;
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.reason p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Consequences Section */
.consequences {
    background: #fef2f2;
}

.consequences-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.consequence-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.consequence-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.consequence-content h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.consequence-content p {
    color: #64748b;
}

/* Solution Section */
.solution {
    background: white;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0077b5;
}

.step-number {
    background: #0077b5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
}

.result {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.result h3 {
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.result-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit p {
    color: #1e293b;
    font-weight: 500;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.offer-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.offer-card {
    background: white;
    color: #1e293b;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.offer-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.offer-guarantee {
    font-size: 1.1rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 2rem;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 50px 0;
    color: #1e293b;
}

.form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0077b5;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-privacy {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-result {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    color: #0077b5;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .dashboard-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .reasons {
        grid-template-columns: 1fr;
    }
    
    .solution-steps {
        grid-template-columns: 1fr;
    }
    
    .result-benefits {
        grid-template-columns: 1fr;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .offer-content {
        padding: 2rem 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .dashboard-kpis {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-grid {
        display: block;
    }
    
    .reasons-list p,
    .consequences-list p {
        margin-bottom: 0.4rem;
    }
    
    .consequences-section {
        padding: 1.5rem 1rem;
    }
    
    .reason-item,
    .consequence-item {
        padding: 1.25rem;
    }
    
    .problem-card {
        padding: 1.25rem 1rem;
    }
    
    .problems {
        padding: 40px 0;
    }
    
    .client-step {
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .client-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-highlight {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form {
        padding: 1.5rem 1rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
