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

html {
    scroll-behavior: smooth;
}

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

/* Container */
.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: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Colors */
.text-blue {
    color: #2563EB;
}

.text-orange {
    color: #F97316;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: #F97316;
    color: white;
}

.btn-primary:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: #9CA3AF;
    background-color: #F9FAFB;
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #2563EB;
    font-size: 1.8rem;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563EB;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #E5E7EB;
    z-index: 999;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EBF4FF 0%, #E0E7FF 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-prop i {
    color: #10B981;
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.trust-text {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.mockup-container {
    position: relative;
}

.website-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.website-mockup:hover {
    transform: rotate(0deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #EF4444;
}

.dot.yellow {
    background-color: #F59E0B;
}

.dot.green {
    background-color: #10B981;
}

.mockup-content {
    space-y: 0.75rem;
}

.mockup-bar {
    height: 16px;
    background-color: #DBEAFE;
    border-radius: 4px;
    width: 75%;
}

.mockup-line {
    height: 12px;
    background-color: #E5E7EB;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.mockup-line.short {
    width: 83.33%;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mockup-box {
    height: 80px;
    border-radius: 4px;
}

.mockup-box.orange {
    background-color: #FED7AA;
}

.mockup-box.blue {
    background-color: #DBEAFE;
}

.mobile-mockup {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    width: 96px;
    transform: rotate(-12deg);
    transition: transform 0.3s ease;
}

.mobile-mockup:hover {
    transform: rotate(0deg);
}

.mobile-content {
    space-y: 0.5rem;
}

.mobile-bar {
    height: 8px;
    background-color: #DBEAFE;
    border-radius: 2px;
}

.mobile-line {
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.mobile-line.short {
    width: 75%;
}

.mobile-box {
    height: 32px;
    background-color: #FED7AA;
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.service-icon {
    background-color: #EBF4FF;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #DBEAFE;
}

.service-icon i {
    font-size: 1.5rem;
    color: #2563EB;
}

.service-title {
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #F97316;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
}

.services-cta p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.services-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

.billing-label.active {
    color: #1F2937;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background-color: #2563EB;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(20px);
}

.savings-badge {
    background-color: #D1FAE5;
    color: #065F46;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: none;
}

.savings-badge.show {
    display: inline-block;
}

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

.pricing-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #2563EB;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563EB;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
}

.price-period {
    color: #6B7280;
    margin-left: 0.5rem;
}

.yearly-savings {
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #374151;
}

.plan-features i {
    color: #10B981;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-info {
    margin-top: 4rem;
}

.info-box {
    background-color: #EBF4FF;
    border-radius: 12px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box h3 {
    text-align: center;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

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

.info-item h4 {
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #6B7280;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-icon {
    background-color: #EBF4FF;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-card .card-icon {
    background-color: #EBF4FF;
}

.vision-card .card-icon {
    background-color: #FEF3E2;
}

.card-icon i {
    font-size: 2rem;
}

.mission-card .card-icon i {
    color: #2563EB;
}

.vision-card .card-icon i {
    color: #F97316;
}

.why-leasing {
    margin-bottom: 5rem;
}

.why-leasing h3 {
    text-align: center;
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.why-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit {
    text-align: center;
}

.benefit-number {
    width: 64px;
    height: 64px;
    background-color: #EBF4FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.benefit:nth-child(2) .benefit-number {
    background-color: #FEF3E2;
    color: #F97316;
}

.benefit:nth-child(3) .benefit-number {
    background-color: #D1FAE5;
    color: #10B981;
}

.benefit h4 {
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.benefit p {
    color: #6B7280;
}

.values {
    margin-bottom: 5rem;
}

.values h3 {
    text-align: center;
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

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

.value {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: #EBF4FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 2rem;
    color: #2563EB;
}

.value h4 {
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.value p {
    color: #6B7280;
    font-size: 0.875rem;
}

.stats-section {
    background-color: #2563EB;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.stats-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.stats-section p {
    color: #BFDBFE;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: #BFDBFE;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: #F9FAFB;
    border-radius: 16px;
    padding: 2rem;
}

.contact-form-container h3 {
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.contact-form {
    space-y: 1.5rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #6B7280;
}

.checkbox-group a {
    color: #2563EB;
    text-decoration: underline;
}

.contact-info h3 {
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.contact-methods {
    space-y: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: #EBF4FF;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #2563EB;
    font-size: 1.25rem;
}

.contact-details h4 {
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #374151;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #6B7280;
    font-size: 0.875rem;
}

.alternative-contact {
    background-color: #EBF4FF;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alternative-contact h4 {
    color: #1F2937;
    margin-bottom: 1rem;
}

.alt-contact-methods {
    space-y: 0.75rem;
}

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

.alt-method span {
    color: #6B7280;
}

.trust-box {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
}

.trust-box h4 {
    color: #1F2937;
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.trust-list i {
    color: #10B981;
    margin-right: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4B5563;
    color: white;
}

.footer-contact {
    space-y: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: #9CA3AF;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.newsletter {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

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

.newsletter-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #D1D5DB;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #374151;
    border: 1px solid #4B5563;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #9CA3AF;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

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

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Utility Classes */
.hidden {
    display: none;
}

.show {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus Styles */
*:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

