/* 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: hsla(217.26,90.48%,20.59%,1);
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: hsla(217.26,90.48%,20.59%,1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: hsla(217.26,90.48%,20.59%,1);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #071a70 0%, #4b9ba2 100%);
    color: white;
    text-align: center;
}

.hero-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width:70%; 
    min-height:400px; 
    display:flex; 
    align-items:center;
    justify-content:center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 2rem 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #17a2b8;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #148ea1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

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

.features-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.features-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.features-intro h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(45, 67, 103);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.service-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 2rem;
    text-align: center;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.service-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.service-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 0.5rem;
}

.service-feature p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.why-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 2rem;
}

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

.why-content p {
    font-size: 1.2rem;
    color: rgb(45, 67, 103);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #071a70 0%, #4b9ba2 100%); */
    background: #082a4e;
    color: white;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding-bottom: 40px;
    background:#082a4e; 
    color: white;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #071a70 0%, #4b9ba2 100%);
    color: white;
    text-align: center;
}

.page-header .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 70%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 2rem 0;
}

.page-header p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    /* max-width: 800px; */
    margin: 0 auto 1rem;
}

/* Services Page Styles */

.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgb(45, 67, 103);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: rgb(45, 67, 103);
    border-bottom: 1px solid #f0f0f0;
}

.service-card li:last-child {
    border-bottom: none;
}

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

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.feature-item p {
    color: rgb(45, 67, 103);
}

/* Pricing Page Styles */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1.5rem;
    position: relative;
}

.pricing-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    border-radius: 2px;
}

.pricing-intro p {
    font-size: 1.3rem;
    color: rgb(45, 67, 103);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #007bff;
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.2);
}

.pricing-card.featured::before {
    height: 6px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.pricing-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: rgb(45, 67, 103);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.property-limit {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.limit-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.limit-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.period {
    font-size: 1rem;
    color: rgb(45, 67, 103);
    font-weight: 500;
    opacity: 0.8;
}

.pricing-header p {
    color: rgb(45, 67, 103);
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.feature-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: rgb(45, 67, 103);
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1rem;
}

.pricing-features li:not(:last-child) {
    border-bottom: 1px solid #f8f9fa;
}

.pricing-cta {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

.pricing-cta .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.enterprise-note {
    text-align: center;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.enterprise-note p {
    font-size: 1.1rem;
    color: rgb(45, 67, 103);
    line-height: 1.6;
    margin: 0;
    margin: 0 auto;
}

.discount-banner {
    margin: 3rem auto;
    max-width: 1400px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    border-radius: 20px;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
}

.discount-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.discount-text {
    flex: 1;
}

.discount-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.discount-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.discount-cta {
    flex-shrink: 0;
}

.discount-cta .cta-button {
    background: white;
    color: #007bff;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.discount-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Key Differentiator Section */
.differentiator-section {
    padding: 80px 0;
    background: white;
}

.differentiator-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 3rem;
    position: relative;
}

.differentiator-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    border-radius: 2px;
}

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

.differentiator-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.differentiator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.differentiator-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.differentiator-item p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Cost Savings Section */
.cost-savings-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.savings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.savings-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.savings-text p {
    font-size: 1.1rem;
    color: rgb(45, 67, 103);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.savings-text .footnote {
    font-size: 0.9rem;
    color: rgb(45, 67, 103);
    opacity: 0.8;
    font-style: italic;
    margin-top: 2rem;
}

.savings-chart {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.chart-container {
    width: 100%;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    text-align: center;
    margin-bottom: 2rem;
}

.chart-bars {
    margin-bottom: 2rem;
}

.chart-metric {
    margin-bottom: 2rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    min-height: 40px;
}

.bar.simple-rent {
    background: linear-gradient(135deg, #007bff, #4b9ba2);
}

.bar.alternative {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.bar-label {
    flex: 1;
}

.bar-value {
    font-weight: 700;
    font-size: 1rem;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(45, 67, 103);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.simple-rent {
    background: linear-gradient(135deg, #007bff, #4b9ba2);
}

.legend-color.alternative {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.chart-explanation {
    text-align: center;
}

.chart-explanation p {
    font-size: 1rem;
    color: rgb(45, 67, 103);
    line-height: 1.6;
    margin: 0;
}

.chart-explanation strong {
    color: #007bff;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 3rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #4b9ba2);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.faq-item h4::before {
    content: 'Q:';
    position: absolute;
    left: -1rem;
    color: #007bff;
    font-weight: 800;
    font-size: 1.1rem;
}

.faq-item p {
    color: rgb(45, 67, 103);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: rgb(45, 67, 103);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgb(45, 67, 103);
    font-weight: 500;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: 1.2rem;
    color: rgb(45, 67, 103);
    max-width: 800px;
    margin: 0 auto;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: rgb(45, 67, 103);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 0.5rem;
}

.member-role {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 3rem;
}

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

.reason-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reason-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.reason-item p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.2rem;
    color: rgb(45, 67, 103);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.method-icon {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.method-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 0.5rem;
}

.method-details p {
    color: rgb(45, 67, 103);
    margin-bottom: 0.25rem;
}

.office-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.office-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 1rem;
}

.office-info p {
    color: rgb(45, 67, 103);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 0.5rem;
}

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

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgb(45, 67, 103);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: hsla(217.26,90.48%,20.59%,1);
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-intro h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-feature {
        min-height: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Page Header */
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header .container {
        max-width: 90%;
        min-height: 300px;
        padding: 0 15px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }
    
    .page-header p {
        font-size: 1.1rem;
        margin: 0 auto 0.8rem;
    }

    /* Services Page */
    .services-intro h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-feature {
        min-height: auto;
    }

    /* Pricing Page */
    .pricing-intro h2 {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        margin: 0;
        border-radius: 16px;
    }
    
    .pricing-header {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .property-limit {
        padding: 1rem;
        margin: 0.8rem 0;
        border-radius: 12px;
    }
    
    .limit-number {
        font-size: 2.5rem;
    }
    
    .limit-text {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2rem;
        margin: 1rem 0 0.3rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .pricing-header p {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
    
    .pricing-features {
        padding: 1.2rem;
    }
    
    .feature-highlight h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.2rem;
    }
    
    .pricing-features li::before {
        font-size: 0.9rem;
    }
    
    .pricing-cta {
        padding: 0 1.2rem 1.5rem;
    }
    
    .pricing-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .enterprise-note {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .enterprise-note p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .discount-banner {
        margin: 2rem auto;
        padding: 0.5rem 2.5rem;
        border-radius: 16px;
    }
    
    .discount-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .discount-icon {
        font-size: 2.5rem;
    }
    
    .discount-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .discount-text p {
        font-size: 1rem;
    }
    
    .discount-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .differentiator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentiator-item {
        padding: 2rem 1.5rem;
    }

    /* About Page */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .mission-section h2 {
        font-size: 2rem;
    }

    .team-section h2 {
        font-size: 2rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-faq h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .faq-item h4 {
        font-size: 1.2rem;
        padding-left: 0.8rem;
    }
    
    .faq-item h4::before {
        left: -0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-intro h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
        padding-left: 0.6rem;
    }
    
    .faq-item h4::before {
        left: -0.6rem;
        font-size: 0.9rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
    
    .pricing-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .pricing-intro p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-intro {
        margin-bottom: 3rem;
    }
    
    .pricing-card {
        margin: 0;
        border-radius: 12px;
    }
    
    .pricing-header {
        padding: 1.2rem 1rem 1rem;
    }
    
    .plan-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .property-limit {
        padding: 0.8rem;
        margin: 0.6rem 0;
        border-radius: 10px;
    }
    
    .limit-number {
        font-size: 2.2rem;
    }
    
    .limit-text {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1.8rem;
        margin: 0.8rem 0 0.2rem;
    }
    
    .currency {
        font-size: 1.1rem;
    }
    
    .period {
        font-size: 0.85rem;
    }
    
    .pricing-header p {
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }
    
    .pricing-features {
        padding: 1rem 0.8rem;
    }
    
    .feature-highlight h4 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
        padding-left: 1rem;
    }
    
    .pricing-features li::before {
        font-size: 0.85rem;
    }
    
    .pricing-cta {
        padding: 0 0.8rem 1.2rem;
    }
    
    .pricing-cta .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .enterprise-note {
        margin-top: 1.5rem;
        padding: 1.2rem;
        border-radius: 10px;
    }
    
    .enterprise-note p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .differentiator-section h2 {
        font-size: 2rem;
    }
    
    .differentiator-item {
        padding: 1.5rem 1rem;
    }
    
    .differentiator-item h4 {
        font-size: 1.2rem;
    }
    
    .differentiator-item p {
        font-size: 1rem;
    }
    
    .savings-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .savings-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .savings-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .savings-chart {
        padding: 2rem;
        border-radius: 12px;
    }
    
    .chart-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .metric-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .bar {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-height: 35px;
    }
    
    .bar-value {
        font-size: 0.9rem;
    }
    
    .chart-legend {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    .chart-explanation p {
        font-size: 0.95rem;
    }
    
    .savings-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .savings-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .savings-chart {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .chart-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .bar {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        min-height: 30px;
    }
    
    .bar-value {
        font-size: 0.85rem;
    }
    
    .chart-legend {
        gap: 1rem;
        margin-bottom: 1.2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .chart-explanation p {
        font-size: 0.9rem;
    }
    
    .discount-banner {
        margin: 1.5rem auto;
        padding: 0.5rem 2.5rem;
        border-radius: 12px;
    }
    
    .discount-content {
        gap: 1rem;
    }
    
    .discount-icon {
        font-size: 2rem;
    }
    
    .discount-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .discount-text p {
        font-size: 0.9rem;
    }
    
    .discount-cta .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header .container {
        max-width: 95%;
        min-height: 250px;
        padding: 0 10px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .page-header p {
        font-size: 1rem;
        margin: 0 auto 0.6rem;
    }
} 