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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7CB342;
}

.btn-nav {
    background: linear-gradient(135deg, #25D366, #20b954);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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.1'%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") repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-benefits {
    text-align: left;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.benefit i {
    color: #4ade80;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.2em;
}

.hero-cta {
    margin-top: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366, #20b954);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
    font-size: 1.4em;
    padding: 20px 50px;
}

.cta-note {
    margin-top: 15px;
    font-size: 1em;
    color: #ffd700;
    font-weight: 600;
}

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

.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #558B2F;
    font-weight: bold;
}

/* Responsive section titles */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6em;
    }
}

.section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problems Section */
.problems {
    background: #f8fafc;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Responsive layout for problem cards */
@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 25px;
    }
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card i {
    font-size: 3em;
    color: #ef4444;
    margin-bottom: 20px;
}

.problem-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #7CB342, #558B2F);
    color: white;
    text-align: center;
}

.solution .section-title {
    color: white;
}

.solution-text {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive text sizing for solution section */
@media (max-width: 768px) {
    .solution-text {
        font-size: 1em;
        line-height: 1.6;
        padding: 0 15px;
    }
}

/* Target Section */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Desktop layout optimization for 12 cards */
@media (min-width: 1024px) {
    .target-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}

.target-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: #7CB342;
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.2);
}

.target-card i {
    font-size: 2.5em;
    color: #7CB342;
    margin-bottom: 15px;
}

.target-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.target-card p {
    color: #666;
    line-height: 1.6;
}

/* Business Accordion */
.business-accordion {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-toggle {
    width: 100%;
    background: #7CB342;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-toggle:hover {
    background: #558B2F;
}

.accordion-toggle i {
    transition: transform 0.3s ease;
}

.accordion-toggle.active i {
    transform: rotate(180deg);
}

.accordion-content {
    background: white;
    border-radius: 0 0 10px 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-content.active {
    padding: 30px;
    max-height: 5000px;
}

.accordion-intro {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.business-column ol {
    padding-left: 20px;
}

.business-column li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

/* Features Section */
.features {
    background: #f8fafc;
}

.included-features {
    max-width: 800px;
    margin: 0 auto 50px;
}

.included-list {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.included-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.2em;
    font-weight: 500;
}

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

.included-item i {
    color: #7CB342;
    font-size: 1.3em;
    margin-right: 15px;
    min-width: 20px;
}

.included-item span {
    color: #333;
    line-height: 1.6;
}

.price-highlight {
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.price-highlight h3 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.price-highlight .price {
    font-size: 1.3em;
    font-weight: bold;
}

.price-highlight p {
    font-size: 1.2em;
    opacity: 0.8;
}

/* Segmentation Section */
.segmentation {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
    position: relative;
}

.segmentation::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.1'%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") repeat;
    opacity: 0.1;
}

.segmentation .section-title {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    position: relative;
    z-index: 2;
}

.segmentation-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.segmentation-item {
    margin-bottom: 30px;
}

.segmentation-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.segmentation-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.segmentation-card i {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 15px;
}

.segmentation-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.segmentation-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.segmentation-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333 !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.segmentation-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.segmentation-link i {
    font-size: 1em;
    margin: 0;
}

.segmentation-cta {
    text-align: center;
    margin-top: 40px;
}

.segmentation-note {
    font-size: 1.3em;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.advantage-card i {
    font-size: 2.5em;
    color: #f59e0b;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    background: #f8fafc;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th {
    background: #558B2F;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table tr:hover {
    background: #f3f4f6;
}

.highlight-column {
    background: linear-gradient(135deg, #7CB342, #558B2F) !important;
    color: white !important;
    font-weight: 600;
}

.total-row {
    background: #1f2937 !important;
    color: white;
    font-weight: bold;
}

.total-row .highlight-column {
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #333 !important;
}

/* Savings Calculation */
.savings-calculation {
    margin-top: 60px;
}

.savings-calculation h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #558B2F;
}

.savings-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.savings-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
}

.savings-table th {
    background: #558B2F;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.savings-table td {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.savings-table tr:nth-child(even) {
    background: #f9fafb;
}

.savings-table tr:hover {
    background: #f3f4f6;
}

.savings-highlight {
    text-align: center;
    margin: 40px 0;
}

.savings-card {
    background: linear-gradient(135deg, #7CB342, #558B2F);
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.3);
}

.savings-card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Value Proposition */
.value-proposition {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-proposition h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #558B2F;
}

.value-proposition p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.value-item {
    background: #f1f8e9;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #7CB342;
    font-weight: 500;
}

.value-conclusion {
    font-size: 1.2em;
    font-weight: 600;
    color: #558B2F;
    text-align: center;
    margin-top: 25px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-card {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ef4444;
}

.pricing-header p {
    font-size: 1.1em;
    color: #f59e0b;
    margin-bottom: 30px;
}

.pricing-body {
    margin: 30px 0;
}

.price-main {
    font-size: 3em;
    font-weight: bold;
    color: #558B2F;
    margin-bottom: 10px;
}

.currency {
    font-size: 0.6em;
    vertical-align: top;
}

.period {
    font-size: 0.5em;
    color: #666;
}

.price-breakdown {
    font-size: 1.2em;
    color: #666;
}

.renewal-info {
    font-size: 1em;
    color: #7CB342;
    margin-top: 15px;
    padding: 15px;
    background: #f0f8e8;
    border-radius: 10px;
    border-left: 4px solid #7CB342;
}

.renewal-note {
    font-size: 0.9em;
    color: #558B2F;
    font-style: italic;
}

.bonus-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.bonus-section h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #558B2F;
}

.bonus-list {
    list-style: none;
    text-align: left;
}

.bonus-list li {
    padding: 8px 0;
    font-size: 1.1em;
    color: #7CB342;
    font-weight: 500;
}

/* Order Form Section */
.order-form {
    background: #f8fafc;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.order-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.btn-order {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #20b954);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
}

/* Disclaimer Section */
.disclaimer {
    background: #1f2937;
    color: white;
}

.disclaimer .section-title {
    color: white;
}

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

.disclaimer-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.disclaimer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .disclaimer-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-final-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.final-cta .cta-note {
    margin-top: 20px;
    font-size: 1.1em;
    color: #ffd700;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #4ade80;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #9ca3af;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.4em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .comparison-table-wrapper,
    .savings-table-wrapper {
        font-size: 0.9em;
    }
    
    .comparison-table th,
    .comparison-table td,
    .savings-table th,
    .savings-table td {
        padding: 15px 10px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-content.active {
        padding: 20px;
        max-height: 6000px;
    }
    
    .business-column ol {
        padding-left: 15px;
    }
    
    .business-column li {
        margin-bottom: 5px;
        font-size: 0.9em;
    }
    
    .price-main {
        font-size: 2.5em;
    }
    
    .cta-title {
        font-size: 2em;
    }
    
    .btn-final-cta {
        font-size: 1.2em;
        padding: 18px 35px;
    }
    
    /* Segmentation Mobile Styles */
    .segmentation .section-title {
        font-size: 1.8em;
    }
    
    .segmentation-card {
        padding: 25px;
    }
    
    .segmentation-card h3 {
        font-size: 1.3em;
    }
    
    .segmentation-link {
        font-size: 1em;
        padding: 12px 20px;
    }
    
    .segmentation-note {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .target-grid,
    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form-card {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    /* Segmentation Small Mobile Styles */
    .segmentation .section-title {
        font-size: 1.6em;
    }
    
    .segmentation-card {
        padding: 20px;
    }
    
    .segmentation-card h3 {
        font-size: 1.2em;
    }
    
    .segmentation-card p {
        font-size: 1em;
    }
    
    .segmentation-link {
        font-size: 0.9em;
        padding: 10px 18px;
    }
    
    .segmentation-note {
        font-size: 1em;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for form submission */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
