.hero-section { padding: 2rem 2rem 6rem 2rem; display: flex; justify-content: center; align-items: center; }
.hero-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-logo { max-width: 450px; margin-bottom: 2rem; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-content .subtitle { font-size: 1.25rem; color: #6c757d; margin-bottom: 2.5rem; }
html.dark-mode .hero-content .subtitle { color: #adb5bd; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 3rem auto 0; }
.step-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; }
.step h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 3rem auto 0; text-align: left; }
.feature-card { background: var(--bg-light); padding: 2rem; border: 1px solid var(--border-light); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
html.dark-mode .feature-card { background: var(--bg-dark-secondary); border-color: var(--border-dark); }
.feature-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 1rem; }

.team-subtitle { max-width: 600px; margin: 0 auto 3rem; }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 1100px; margin: 0 auto; }
.team-member { width: 180px; display: flex; flex-direction: column; align-items: center; }
.team-member img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 3px solid var(--border-light); }
html.dark-mode .team-member img { border-color: var(--border-dark); }
.team-member h3 { margin-bottom: 0.25rem; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 3rem auto 0; align-items: center; }
.pricing-tier { background: var(--bg-light); padding: 2rem; border: 1px solid var(--border-light); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
html.dark-mode .pricing-tier { background: var(--bg-dark-secondary); border-color: var(--border-dark); }
.pricing-tier.popular { border-color: var(--primary-color); transform: scale(1.05); position: relative; }
.pricing-tier.popular::before { content: 'Most Popular'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: white; padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: bold; }
.pricing-tier .price { font-size: 3rem; font-weight: 700; margin: 1rem 0; display: inline-flex; align-items: flex-start; line-height: 1; }
.pricing-tier .price span { font-size: 1.5rem; font-weight: 600; margin-right: 0.25rem; position: relative; top: 0.25rem; }
.pricing-tier .price-desc { margin-bottom: 2rem; }
.pricing-tier ul { list-style: none; padding: 0; text-align: left; margin-bottom: 2rem; }
.pricing-tier ul li { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-tier ul li .fa-check { color: #28a745; }
.pricing-tier .price-tag { font-size: 2.25rem; font-weight: 700; color: var(--primary-color); margin: 1rem 0; padding: 0.6rem 0; }
.pricing-tier .button.disabled { background-color: #6c757d; cursor: not-allowed; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 800px; margin: 3rem auto 0; text-align: left; }
.contact-card { background: var(--bg-light); padding: 2rem; border: 1px solid var(--border-light); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
html.dark-mode .contact-card { background: var(--bg-dark-secondary); border-color: var(--border-dark); }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.contact-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.contact-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.contact-card p { color: #6c757d; margin-bottom: 1.5rem; }
html.dark-mode .contact-card p { color: #adb5bd; }