/* custom.css - premium modern property analysis design */
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Fixed at top */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.98) 0%, rgba(0, 119, 182, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 119, 182, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 221, 87, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .3s ease;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffdd57, #ffa726);
    transition: width .3s ease;
    box-shadow: 0 0 10px rgba(255, 221, 87, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffdd57;
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-btn {
    background: linear-gradient(135deg, #ffdd57 0%, #ffa726 100%);
    color: #0a1929;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(255, 221, 87, 0.4);
    border: 2px solid transparent;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 221, 87, 0.6);
    background: linear-gradient(135deg, #ffa726 0%, #ffdd57 100%);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1929 0%, #0d47a1 50%, #0077b6 100%);
    color: #fff;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 221, 87, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 221, 87, 0.2);
    border: 1px solid rgba(255, 221, 87, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffdd57, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn.primary {
    background: linear-gradient(135deg, #ffdd57, #ffa726);
    color: #222;
    box-shadow: 0 8px 25px rgba(255, 221, 87, 0.4);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 221, 87, 0.6);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffdd57, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #0a1929;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Section */
.value-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a1929;
    font-weight: 700;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

.benefit-card strong {
    color: #0077b6;
    font-weight: 700;
}

/* Dashboard Preview Section */
.dashboard-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.dashboard-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.dashboard-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
    border-color: rgba(0, 119, 182, 0.3);
}

.dashboard-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    aspect-ratio: 16 / 10;
}

.dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.dashboard-card:hover .dashboard-image img {
    transform: scale(1.05);
}

.dashboard-info {
    padding: 2rem;
}

.dashboard-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a1929;
    font-weight: 700;
}

.dashboard-info p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.dashboard-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 119, 182, 0.1);
}

.cta-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-note::before {
    content: '✓ ';
    color: #0077b6;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a1929 0%, #0d47a1 100%);
    color: #fff;
}

.process-section .section-title {
    color: #fff;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffdd57, #ffa726);
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #ffdd57;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 1rem;
    border-left: 4px solid #0077b6;
    transition: all .3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.15);
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.check-icon {
    font-size: 1.5rem;
    color: #0077b6;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0a1929;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    margin: 2% auto;
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.4s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.close {
    color: #aaa;
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all .2s;
}

.close:hover,
.close:focus {
    color: #000;
    transform: rotate(90deg);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all .3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.form-message .success {
    color: #155724;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
}

.form-message .error {
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #0a1929;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity .3s;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Navigation - Fixed at top */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 1rem 2rem;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color .3s, transform .2s;
    display: inline-block;
}

.nav a:hover {
    color: #0077b6;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    padding-top: 80px;
    /* Account for fixed nav */
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: .5rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, background .3s, box-shadow .3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn.primary {
    background: #ffdd57;
    color: #222;
    box-shadow: 0 4px 15px rgba(255, 221, 87, 0.4);
}

.btn.primary:hover {
    background: #ffd633;
    box-shadow: 0 6px 20px rgba(255, 221, 87, 0.6);
}

.btn.secondary {
    background: #fff;
    color: #0077b6;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.btn:hover {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 4rem 2rem;
    background: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #0077b6;
}

.features ul {
    list-style: none;
    max-width: 700px;
    margin: auto;
}

.features li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 0.5rem;
    border-left: 4px solid #0077b6;
    transition: transform .2s, box-shadow .2s;
}

.features li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.close {
    color: #aaa;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color .2s;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color .3s, box-shadow .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.form-message .success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 0.5rem;
}

.form-message .error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #222;
    color: #fff;
}

/* Responsive */
@media (max-width:768px) {
    .nav {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-container {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .nav-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .features h2 {
        font-size: 1.8rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-section {
        padding: 4rem 1rem;
    }

    .dashboard-info {
        padding: 1.5rem;
    }

    .dashboard-info h3 {
        font-size: 1.2rem;
    }

    .dashboard-cta {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Calendly Widget Styling */
.calendly-inline-widget {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.calendly-note {
    font-style: italic;
}

/* Responsive adjustments for Calendly */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1% auto;
    }

    .calendly-inline-widget {
        height: 600px !important;
    }
}