.hero {
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--cyan-500) 100%);
    color: var(--white);
    padding: 5rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--blue-50);
    max-width: 48rem;
    margin: 0 auto;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue-200);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-blue { background-color: #dbeafe; }
.icon-cyan { background-color: #cffafe; }
.icon-green { background-color: #d1fae5; }
.icon-indigo { background-color: #e0e7ff; }
.icon-orange { background-color: #fed7aa; }
.icon-rose { background-color: #fecdd3; }

.icon {
    width: 2rem;
    height: 2rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 1rem;
}

.card p {
    color: var(--muted);
    line-height: 1.75;
}

.benefits-section {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--cyan-500) 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    color: var(--white);
}

.benefits-section h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-item h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--blue-50);
}

.contact-section {
    margin-top: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.info-card {
    width: 100%;
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue-200);
    margin-bottom: 1.5rem;
}

.info-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    transform: scale(1.025);
    cursor: pointer;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-inner {
    background-color: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.info-card h3 {
    font-weight: bold;
    color: var(--text);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-card a {
    word-wrap: break-word;
    word-break: break-all;
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.quote-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.quote-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.quote-box ul {
    list-style: none;
    padding: 0;
}

.quote-box li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.form-container-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue-200);
    height: auto;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.form-container p {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--muted);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--blue-600) 0%, var(--cyan-500) 100%);
    color: var(--pure-white);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background-color: currentColor;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.spinner {
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: var(--pure-white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.toast.error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}