:root {
    --color-teal: #0d9488;       
    --color-gold: #f59e0b;       
    --color-coral: #fb7185;      
    --color-mint: #34d399;       
    
    --bg-cream: #fffbf5;         
    --text-dark: #374151;        
    --text-heading: #111827;     
    
    --border-radius-card: 24px;  
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { box-sizing: border_box; margin: 0; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.2;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }

a { text-decoration: none; transition: 0.3s; }

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}
.page-hero {
    padding: 60px 0 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-text h1 span { color: var(--color-teal); } 
.hero-text p { font-size: 1.15rem; color: #4b5563; margin-bottom: 30px; }

.hero-image {
    width: 100%; height: 400px; object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.problem-section {
    padding-bottom: 80px;
    background-color: white;
    border-radius: 40px 40px 0 0; 
}

.expertise-section {
    padding: 80px;
    background-color: white;
    border-radius: 40px 40px 0 0
}
.section-title { text-align: center; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }

.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; 
}
.problem-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #f3f0e7;
    transition: 0.3s;
}
.problem-card:hover { border-color: var(--color-teal); transform: translateY(-5px); }
.problem-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-heading); display: flex; align-items: center; gap: 10px; }
.problem-card p { font-size: 0.95rem; margin: 0; color: #555; }

.offer-section { padding: 80px 0; }

.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }

.offer-card {
    background: white;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 2px solid white;
    transition: 0.3s;
    display: flex; flex-direction: column;
}
.offer-card:hover { border-color: var(--color-teal); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1); }

.offer-img { height: 200px; background-size: cover; background-position: center; }
.offer-content { padding: 30px; flex: 1; display: flex; flex-direction: column;}
.offer-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-heading); display: flex; align-items: center; gap: 10px;}
.offer-content p { font-size: 0.95rem; color: #6b7280; margin-bottom: 20px; }

.faq-section {
    background: #f0fdfa;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: var(--border-radius-card);
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.faq-item h4 { color: var(--color-teal); margin-bottom: 10px; font-size: 1.2rem; }
.faq-item p { margin-bottom: 20px; font-size: 1rem; }

.cta-container-wrapper { padding: 60px 0; position: relative; }
.cta-blob { bottom: -10%; left: -10%; width: 500px; height: 500px; background: var(--color-teal); opacity: 0.1; position: absolute; border-radius: 50%; filter: blur(50px); z-index: 0; }

.cta-bar {
    background: white; color: var(--text-heading); padding: 70px 40px; text-align: center;
    border-radius: var(--border-radius-card); margin: 0 auto; max-width: 900px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid #f3f0e7;
    position: relative; border-top: 6px solid var(--color-teal); z-index: 2;
}
.cta-bar h2 { color: var(--color-teal); margin-bottom: 15px; }
.cta-btn {
    background-color: var(--color-teal); color: white; padding: 15px 45px; font-weight: 800;
    border-radius: 50px; font-size: 1.1rem; display: inline-block; margin-top: 25px;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2); transition: 0.3s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(13, 148, 136, 0.3); background-color: #0f766e; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .page-hero { grid-template-columns: 1fr; text-align: center; }
    .hero-image { height: 300px; order: -1; }
    .nav-menu { display: none; }
    .faq-grid { grid-template-columns: 1fr; }
}

.form-lock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(4px);            
    z-index: 50;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.form-lock.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
}

.lock-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 50%;
}

.lock-content i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.lock-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.lock-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

.btn-small {
    background: var(--color-teal);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.agreement-group {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0fdfa; 
    border-radius: 10px;
    border: 1px solid #ccfbf1;
}

.agreement-label {
    font-weight: normal;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text-dark);
}
.locations-title-h3 {
    margin-bottom: 10px;
}
.agreement-label input {
    margin-top: 4px; 
    accent-color: var(--color-teal);
    width: 18px; 
    height: 18px;
}

.agreement-label a {
    color: var(--color-teal);
    text-decoration: underline;
    font-weight: 700;
}

.form-group { margin-bottom: 25px; width: 100%; display: block; }
.form-label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--text-heading); font-size: 0.95rem; }

.form-input, .form-textarea, .form-select {
    width: 100%; 
    display: block; 
    box-sizing: border-box; 
    padding: 12px 15px; 
    border-radius: 10px; 
    border: 2px solid #e5e7eb; 
    font-family: inherit; font-size: 1rem;
    transition: 0.3s; background-color: #fcfcfc;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-teal); outline: none; background-color: white;
}
.pro-theme .form-input:focus { border-color: var(--color-gold); }

.form-textarea { height: 120px; resize: vertical; }

.form-row { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 25px; width: 100%; margin-bottom: 25px;
}
.form-row .form-group { margin-bottom: 0; }

.checkbox-group { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; cursor: pointer; }
.checkbox-item input { accent-color: var(--color-teal); width: 18px; height: 18px; }
.pro-theme .checkbox-item input { accent-color: var(--color-gold); }

.submit-btn {
    color: white; padding: 16px 40px; font-weight: 800;
    border-radius: 50px; font-size: 1.1rem; border: none; cursor: pointer;
    transition: 0.3s; width: 100%; margin-top: 10px; margin-bottom: 20px;
}
.submit-btn-parent { background-color: var(--color-teal); }
.submit-btn-parent:hover { background-color: #0f766e; transform: translateY(-2px); }

.submit-btn-pro { background-color: var(--color-gold); }
.submit-btn-pro:hover { background-color: #b45309; transform: translateY(-2px); }

.form-message {
    display: none; 
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
    align-items: center;
    gap: 10px;
}

.msg-error {
    display: flex; 
    background-color: #fef2f2; 
    color: #991b1b;           
    border: 1px solid #fca5a5; 
    box-shadow: 0 2px 5px rgba(153, 27, 27, 0.05);
}