/* CSS Variables for Visual Identity */
:root {
    --primary-color: #062846;
    /* Deep navy blue from logo */
    --primary-light: #12406b;
    --secondary-color: #CBA77A;
    /* Gold/Beige from logo */
    --secondary-light: #e5ceb0;
    --text-main: #333333;
    --text-muted: #555555;
    --bg-light: #fdfbf9;
    --bg-white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 5rem 0;
}

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

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(6, 40, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 40, 70, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(203, 167, 122, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 167, 122, 0.4);
}

.buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.buttons-group .btn {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.hero .buttons-group .btn {
    max-width: 450px;
}

@media (min-width: 992px) {
    .hero .buttons-group {
        justify-content: flex-start;
    }
}

.header {
    background-color: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-link {
    display: flex;
    align-items: center;
    z-index: 102;
}

.logo {
    height: 90px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .icon-menu {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .icon-close {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #fcfaf8;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(203, 167, 122, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(203, 167, 122, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM42.184 20c-11.69-4.19-15.351-5.683-20.998-7.072H14.85c5.089 1.481 8.841 2.925 21.002 7.072h6.332zm-21-20c8.118 3.165 14.542 5.064 28.816 5.064 14.184 0 20.528-1.854 28.816-5.064h6.334c-8.995 3.525-15.656 5.514-35.15 5.514-19.492 0-26.155-1.99-35.15-5.514h6.334zM85.184 20c5.647-1.389 9.308-2.882 20.998-7.072V10.928C93.998 15.075 90.246 16.519 85.15 18h-.032l.066 2zm14.816-20c-4.899 1.426-9.106 2-14.85 2v2c7.923 0 13.104-1.108 21.184-4h-6.334z' fill='%23CBA77A' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 8rem 0 6rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 4rem;
    }
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.hero .subtitle-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 1.4em;
    position: relative;
}

.hero .subtitle::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3em;
    line-height: 1.1;
}

.hero .location-badge {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(203, 167, 122, 0.4);
}

.hero .hero-focus {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    max-width: 600px;
    letter-spacing: 0.01em;
}

.hero .subtitle .subtitle-label {
    font-weight: 600;
    color: var(--primary-color);
}

.hero .hero-approach {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero .hero-note {
    list-style: none;
    padding-left: 0;
    margin-top: 1.2rem;
}

.hero .hero-note li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hero .hero-note li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 1px;
}

.cta-button {
    font-size: 1.1rem;
    padding: 18px 36px;
}

/* Transition Block */
.transition-block {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.transition-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('midias/bg_transition_room.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.transition-block .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transition-block p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.transition-block p.lead {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.transition-block p.highlight {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 0;
    opacity: 1;
    font-style: italic;
}

.transition-block.solution::before {
    background-image: url('midias/bg_transition_abstract.png');
    opacity: 0.1;
}

.transition-block.solution p.lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.transition-block.solution .cta-button {
    background-color: #CBA77A;
    color: var(--primary-color);
}

.transition-block.solution .cta-button:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Pain Points Section */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.pain-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

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

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.empathy-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.empathy-text p {
    margin-bottom: 1rem;
}

.empathy-text .highlight-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
    background: rgba(203, 167, 122, 0.05);
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.profile-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.br-mobile {
    display: none;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .services-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

.services-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.services-list-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(203, 167, 122, 0.15);
}

.services-list-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-footer-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 1.6;
}

.check-list {
    margin-top: 15px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.check-list-alt li::before {
    content: '✔';
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    background: rgba(6, 40, 70, 0.05);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

/* Split Grid Layout (Reference Style) */
.split-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .split-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.assessment-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.assessment-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.assessment-item-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(203, 167, 122, 0.08);
    /* light gold border */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assessment-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.item-icon {
    background: rgba(203, 167, 122, 0.1);
    color: var(--secondary-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.item-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.assessment-footer-text {
    font-size: 1.05rem;
    color: var(--text-muted);
}



.rounded-image {
    aspect-ratio: 9 / 16;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 400px;
}

.testimonial-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-info {
    max-width: 900px !important;
    width: 100%;
}

.stars {
    color: #eab308;
    /* Star color */
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.feedback {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(6, 40, 70, 0.02);
}

.faq-question .chevron {
    transition: transform 0.3s ease;
}

.faq-question.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-white);
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #fdfcf9;
    /* Light warm cream */
    color: var(--primary-color);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-logo {
    height: 60px;
    margin: 0 auto 20px;
    filter: none;
    /* Restore original logo colors for light background */
}

.footer p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer .copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.4);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20b858;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero .hero-focus,
    .hero .subtitle-list {
        text-align: left;
        margin-inline: 0;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .about-grid,
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .logo {
        height: 72px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 101;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .cta-button {
        width: 100%;
        max-width: 350px;
    }

    .pain-cards-grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }

    .pain-card .check-icon {
        margin-bottom: 0;
    }

    .br-desktop {
        display: none;
    }

    .br-mobile {
        display: block;
    }

    .about-content h3 {
        font-size: 1.8rem;
    }
}

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

    .hero .hero-focus {
        text-align: center;
        font-size: 1.1rem;
    }

    .hero .subtitle {
        font-size: 0.98rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 14px 16px;
        gap: 8px;
    }

    .cta-button svg {
        width: 20px;
        height: 20px;
    }

    .service-block {
        padding: 25px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .transition-block.conclusion .conclusion-footer-note {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }
}

/* Conclusion Section */
.transition-block.conclusion::before {
    background-image: url('midias/bg_transition_abstract.png');
    opacity: 0.04 !important;
}

.transition-block.conclusion .cta-button {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--bg-white) !important;
}

.conclusion-footer-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

/* Lead Capture Form Styling */
.form-capture-container {
    max-width: 650px;
    margin: 2rem auto 0;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-inputs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-field {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-field label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-white);
    margin-bottom: 2px;
}

.form-field input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--bg-white);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-field input:focus {
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(203, 167, 122, 0.3);
    border-color: var(--secondary-color);
}

.form-submit-wrapper {
    margin-top: 10px;
}

.submit-capture-btn {
    width: 100%;
    max-width: 350px;
    padding: 16px 30px;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--bg-white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.submit-capture-btn:hover {
    background-color: var(--secondary-light) !important;
    border-color: var(--secondary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 167, 122, 0.4);
}

.submit-capture-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    margin-top: 15px;
    font-size: 0.95rem;
    min-height: 24px;
}

.form-feedback.success {
    color: #4ade80;
}

.form-feedback.error {
    color: #f87171;
}

@media (max-width: 768px) {
    .form-capture-container {
        padding: 25px 20px;
        margin-top: 1.5rem;
    }
    
    .submit-capture-btn {
        max-width: 100%;
    }
}