* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a2a3a;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d1b2a 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.language-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 42, 58, 0.85), rgba(26, 42, 58, 0.9)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Platform Features Section */
.platform-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.platform-icon {
    font-size: 3rem;
    color: var(--primary);
}

.platform-name {
    font-weight: 600;
    color: var(--secondary);
}

.compatibility-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.compatibility-note h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--success);
    font-weight: 500;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-form {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.calculator-form h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.calculate-btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.calculate-btn:hover {
    background: var(--primary-dark);
}

.calculator-results {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.calculator-results h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    color: var(--primary);
}

.result-value.negative {
    color: var(--danger);
}

.result-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.performance-chart {
    margin-top: 30px;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chart-label {
    width: 80px;
    font-weight: 500;
}

.chart-bar-inner {
    flex: 1;
    height: 30px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.chart-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.chart-value {
    width: 60px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Recent Performance Section */
.performance {
    padding: 80px 0;
    background: #f8f9fa;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.month-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.month-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.month-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.month-profit {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--success);
}

.performance-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--gray);
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: white;
}

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

.plan-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-header {
    background: var(--secondary);
    color: white;
    padding: 25px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: rgba(255,255,255,0.7);
}

.plan-body {
    padding: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-features li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

.plan-button {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.plan-button:hover {
    background: var(--primary-dark);
}

/* Pricing Details Section */
.pricing-details {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.price-label {
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    color: var(--primary);
}

.setup-fee {
    background: var(--secondary);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.setup-fee h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Performance Section */
.performance {
    padding: 80px 0;
    background: white;
}

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

.stat-card {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.month-card {
    background: var(--light);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.month-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.month-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.month-profit {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 5px;
}

.month-accuracy {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

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

.highlight-card {
    text-align: center;
    padding: 30px;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.highlight-card h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.6;
}

.verified-results {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d1b2a 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.verified-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.verified-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.verified-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.performance-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Automated Feature Banner */
.automated-feature {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 148, 31, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.automated-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.automated-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.automated-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Plan Automated Badge */
.plan-automated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.plan-automated-badge i {
    color: var(--primary);
}

.plan-automated-badge span {
    color: white;
    font-weight: 500;
}

/* Feature Highlight */
.plan-features .feature-highlight {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.plan-features .feature-highlight i {
    color: var(--success);
    margin-right: 8px;
}