 :root {
            --bg-dark: #000000;
            --bg-deep: #000000;
            --bg-soft: #000000;
            --bg-card: #000000;
            --accent: #edb11b;
            --accent-soft: rgba(237,177,27,0.18);
            --accent-strong: rgba(237,177,27,0.9);
            --accent-alt: #edb11b;
            --text-main: #ffffff;
            --text-soft: #ffffff;
            --text-muted: rgba(255,255,255,0.7);
            --danger: #edb11b;
            --success: #edb11b;
            --warning: #edb11b;
            --shadow-soft: 0 5px 25px rgba(237,177,27,0.15);
            --radius-xl: 22px;
            --radius-lg: 18px;
            --radius-pill: 999px;
        }

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

        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #000000;
            color: var(--text-main);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        /* Layout */

       .page-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 18px 20px 18px;
}

        header.site-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 10px 8px;
            margin-bottom: 10px;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
		
.site-logo img{
	width:125px;
}		
		
		

        .site-logo-mark {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: radial-gradient(circle at 10% 0, #edb11b 0, #edb11b 40%, transparent 70%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            letter-spacing: 1px;
            font-size: 20px;
            box-shadow: 0 10px 20px rgba(237,177,27,0.6);
        }

        .site-logo-text {
            display: flex;
            flex-direction: column;
        }

        .site-logo-text span:first-child {
            font-weight: 700;
            font-size: 18px;
        }

        .site-logo-text span:last-child {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.6px;
            color: var(--text-soft);
        }

        .site-header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }

        .site-header-cta strong {
    font-weight: 600;
    padding: 0 4px 0 0;
}

        .site-header-cta a {
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(237,177,27,0.6);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all .18s ease-out;
        }

        .site-header-cta a:hover {
            border-color: var(--accent);
            background: rgba(237,177,27,0.35);
            transform: translateY(-1px);
        }

        /* Utility */

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;

            border-radius: var(--radius-pill);
            border: 1px solid rgba(237,177,27,0.6);
            background: rgba(0,0,0,0.8);
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-soft);
        }

        .tag-pill-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: radial-gradient(circle, #edb11b 0, #edb11b 50%, transparent 100%);
            box-shadow: 0 0 16px rgba(237,177,27,0.85);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
        }

        h1 {
            font-size: clamp(2.3rem, 4vw, 3.1rem);
            line-height: 1.1;
        }

        h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
        }

        h3 {
            font-size: 1.3rem;
        }

        p.lead {
            font-size: 1.02rem;
            color: var(--text-soft);
        }

        .mt-1 { margin-top: .25rem; }
        .mt-2 { margin-top: .5rem; }
        .mt-3 { margin-top: .75rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-5 { margin-top: 1.5rem; }

        .mb-1 { margin-bottom: .25rem; }
        .mb-2 { margin-bottom: .5rem; }
        .mb-3 { margin-bottom: .75rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-5 { margin-bottom: 1.5rem; }

        .text-center { text-align: center; }
        .text-muted { color: var(--text-muted); }

        /* Buttons */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            transition: all .18s ease-out;
            white-space: nowrap;
        }

       .btn-primary {
    background: linear-gradient(135deg, #29a71a, #34c022);
    color: #fff;
    box-shadow: 0 1px 20px rgb(237 177 27 / 47%);
}
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.01);
             box-shadow: 0 1px 20px rgb(237 177 27 / 47%);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(237,177,27,0.7);
            color: var(--text-soft);
        }

        .btn-outline:hover {
            background: rgba(0,0,0,0.85);
            border-color: var(--accent);
        }

        .btn-light {
            background: #edb11b;
            color: #000000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.45);
        }

        .btn-light:hover {
            transform: translateY(-2px);
            background: #edb11b;
        }

        .btn-danger {
            background: var(--danger);
            color: #000000;
            box-shadow: 0 12px 30px rgba(237,177,27,0.7);
        }

        .btn-success {
            background: var(--success);
            color: #000000;
        }

        .btn-small {
            padding: 7px 15px;
            font-size: 11px;
        }

        .btn-block {
            width: 100%;
            justify-content: center;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* HERO */

        .hero {
            margin-top: 16px;
            border-radius: 32px;
            background: radial-gradient(circle at top left, #edb11b 0%, #000000 55%, #000 100%);
            padding: 28px 22px 30px;
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
            gap: 30px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: -80px;
            background:
                radial-gradient(circle at 0 0, rgba(237,177,27,0.11), transparent 55%),
                radial-gradient(circle at 100% 0, rgba(237,177,27,0.15), transparent 55%),
                radial-gradient(circle at 50% 120%, rgba(237,177,27,0.16), transparent 55%);
            opacity: 0.9;
            pointer-events: none;
        }

        .hero-main,
        .hero-side {
            position: relative;
            z-index: 2;
        }

        .hero-main h1 span.highlight {
            background: linear-gradient(135deg, #edb11b, #edb11b);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-ticks {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-top: 16px;
        }

        .hero-ticks span {
            font-size: 13px;
            color: var(--text-soft);
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-ticks span::before {
            content: "✦";
            font-size: 11px;
            color: var(--accent-strong);
        }

        .hero-cta-row {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .hero-call {
            font-size: 13px;
            color: var(--text-soft);
        }

        .hero-call a {
            font-weight: 600;
            color: #edb11b;
        }

        .hero-cred {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            font-size: 11px;
            color: var(--text-muted);
        }

        .hero-cred img {
            height: 26px;
            opacity: .7;
        }





/*
.blink-heading {
    animation: smoothBlink 2.5s ease-in-out infinite;
}


.highlight {
    animation: smoothBlink 2.5s ease-in-out infinite;
}


@keyframes smoothBlink {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}*/



.stagger-heading span {
    display: inline-block;
    animation: staggerBlink 2s ease-in-out infinite;
}

/* Stagger delays */
.stagger-heading span:nth-child(1) { animation-delay: 0s; }
.stagger-heading span:nth-child(2) { animation-delay: 0.3s; }
.stagger-heading span:nth-child(3) { animation-delay: 0.6s; }
.stagger-heading span:nth-child(4) { animation-delay: 0.9s; }
.stagger-heading span:nth-child(5) { animation-delay: 1.2s; }
.stagger-heading span:nth-child(6) { animation-delay: 1.5s; }

/* Smooth blink */
@keyframes staggerBlink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Optional: highlight style (glow + blink combo) */
.highlight {
    color: #edb11b;
}




 .hero-side-card {
    border-radius: 26px;
    background: rgba(0,0,0,0.92);
    border: 1px solid rgba(237,177,27,0.4);
    padding: 10px 10px 10px 10px;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}
		  .hero-side-card img {
		  	border-radius:25px;
		  }

        .hero-side-card::before {
            content: "";
            position: absolute;
            inset: -40px -30px auto auto;
            background: radial-gradient(circle at 80% 0, rgba(237,177,27,0.35), transparent 60%);
            opacity: 0.7;
        }

        .hero-side-card h3 {
            font-size: 1.1rem;
        }

        .hero-stat-row {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-stat {
            flex: 1 1 110px;
            border-radius: 16px;
            padding: 9px 11px;
            background: rgba(0,0,0,0.9);
            border: 1px solid rgba(237,177,27,0.5);
            font-size: 11px;
        }

        .hero-stat strong {
            display: block;
            font-size: 16px;
        }

        .hero-note {
            font-size: 11px;
            margin-top: 10px;
            color: var(--text-muted);
        }

        /* TRUST BAR */

        .trust-bar {
            margin-top: 18px;
            padding: 11px 14px;
            border-radius: 16px;
            background: rgba(0,0,0,0.88);
            border: 1px solid rgba(237,177,27,0.55);
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--text-soft);
        }

        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .trust-badge {
            padding: 3px 9px;
            border-radius: 999px;
            background: rgba(237,177,27,0.12);
            color: #edb11b;
            border: 1px solid rgba(237,177,27,0.5);
            font-size: 11px;
        }

        /* SECTIONS GENERIC */

        section.section {
            margin-top: 48px;
            padding: 26px 22px;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(0,0,0,0.98), #000000);
            border: 1px solid rgba(237,177,27,0.35);
            box-shadow: var(--shadow-soft);
        }

        section.section.alt {
            background: radial-gradient(circle at top left, rgba(237,177,27,0.4), rgba(0,0,0,0.96));
        }

        section.section.narrow { 
            margin-left: auto;
            margin-right: auto;
        }

        .section-header {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 18px;
        }

        .section-header p {
            color: var(--text-soft);
            font-size: 0.96rem;
        }
		

.process-sec h2{
	    font-size: 30px;
    font-weight: 700;
}
		
		
.section2 h2 {
    font-size: 30px;
    font-weight: 700;
}	
		
		
		
		
		
	section.aboutsec {
    padding: 60px 0 60px 0;
}	


section.pointer-sec {
    padding: 100px 0 90px 0;
}



.middle-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* space between items */
}

.wrapperbox {
    text-align: center;
    padding: 50px 10px 50px 10px;
    border: #71550d solid 1px;
    border-radius: 25px;
}

.wrapperbox .icon {
    font-size: 32px;
}

.wrapperbox p {
    font-size: 21px;
    font-weight: 300;
}


.pointer-sec .btn-primary {
    display: block;
    margin: auto;
    width: 25%;
    text-align: center;
    margin-top: 10px;
}









.aboutsec .problem-side {
    border-radius: 22px;
    padding: 0;
    background: none;
    border: none;
    font-size: 0.9rem;
    color: var(--text-soft);
}	
.aboutsec .problem-side img{
	border-radius:25px;
}

.aboutsec h2 {
    font-size: 30px;
    font-weight: 700;
}

.aboutsec p {
    font-size: 14px;
    padding: 0 0 10px 0;
    line-height: 25px;
}	

.section3 h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 25px;
    padding: 0 0 6px 0;
}

.section3 p {
    font-size: 12px;
}	

/*.blink-btn {
    animation: glowBlink 1.2s infinite;
}

@keyframes glowBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 0px rgba(237, 177, 27, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(237, 177, 27, 1);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 0px rgba(237, 177, 27, 0.7);
    }
}*/
		
.blink-btn {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    40% { transform: scale(1); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
		



.testimonials {
    padding: 100px 0 50px 0;
}


.testimonials h2{
	    font-size: 30px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}












        /* Problem Section */

        .problem-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 28px;
        }

        .problem-list {
            list-style: none;
            margin-top: 8px;
        }

        .problem-list li {
            margin-bottom: 8px;
            display: flex;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-soft);
        }

        .problem-list li span.icon {
            font-size: 16px;
            margin-top: 2px;
        }

        .problem-side {
            border-radius: 22px;
            padding: 16px 16px 14px;
            background: rgba(0,0,0,0.95);
            border: 1px solid rgba(237,177,27,0.5);
            font-size: 0.9rem;
            color: var(--text-soft);
        }

        .badge-alert {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 3px 10px;
            border-radius: 999px;
            background: rgba(237,177,27,0.1);
            border: 1px solid rgba(237,177,27,0.55);
            color: #edb11b;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.6px;
        }

        /* Services */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 14px;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px) {
            .services-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .service-card {
            position: relative;
            border-radius: 20px;
            padding: 16px 14px 15px;
            background: radial-gradient(circle at top left, rgba(237,177,27,0.3), rgba(0,0,0,0.96));
            border: 1px solid rgba(237,177,27,0.5);
            overflow: hidden;
        }

.service-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    padding: 3px 0 0 0;
}

 .service-card p {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-soft);
}

        .service-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: var(--text-muted);
        }

        .service-footer {
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            border: 1px solid rgba(237,177,27,0.8);
            font-size: 13px;
            background: rgba(0,0,0,0.85);
            transition: all .18s ease;
        }

        .service-link:hover {
            transform: translateY(-1px);
            border-color: var(--accent-strong);
            background: rgba(237,177,27,0.9);
        }

        /* Benefits */

        .benefits-list {
            list-style: none;
            margin-top: 12px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 18px;
        }

        @media (max-width: 640px) {
            .benefits-list {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .benefits-list li {
            font-size: 0.94rem;
            color: var(--text-soft);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .benefits-list li span.icon {
            font-size: 15px;
            margin-top: 1px;
        }

        /* Process */

        .process-steps {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }
		
		
		.process-sec .btn-primary {
    display: block;
    margin: auto;
    width: 25%;
    text-align: center;
    margin-top: 10px;
}

        @media (max-width: 900px) {
            .process-steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px) {
            .process-steps {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .process-step {
            border-radius: 20px;
            padding: 13px 13px 12px;
            background: rgba(0,0,0,0.95);
            border: 1px solid rgba(237,177,27,0.55);
            font-size: 0.9rem;
            color: var(--text-soft);
        }

        .process-step-num {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: rgba(237,177,27,0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        /* Free evaluation section */

        .evaluation-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
            gap: 22px;
            margin-top: 12px;
        }

        .checklist-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px dashed rgba(237,177,27,0.8);
            background: rgba(237,177,27,0.12);
            color: #edb11b;
            text-transform: uppercase;
            letter-spacing: 1.6px;
        }

        .eval-note {
            font-size: 0.9rem;
            color: var(--text-soft);
            margin-top: 8px;
        }

        /* Offer banner */

        .offer-banner {
            margin-top: 16px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(237,177,27,0.6);
            background: linear-gradient(90deg, rgba(237,177,27,0.15), rgba(237,177,27,0.1));
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            justify-content: space-between;
        }

        .offer-tag {
            padding: 4px 10px;
            border-radius: 999px;
            background: #edb11b;
            color: #000000;
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.6px;
        }

          /* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 35px;
}

        @media (max-width: 960px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .testimonials-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

.testimonial-card {
    border-radius: 20px;
    padding: 30px 25px 30px 25px;
    background: rgba(0,0,0,0.98);
    border: 1px solid rgba(237,177,27,0.5);
    font-size: 0.88rem;
    color: var(--text-soft);
}


.starsec {
    margin: 0 0 7px 0;
}

.starsec i{
	color:#edd516;
	font-size:12px;
}

        .testimonial-name {
            margin-top: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

section.section.faq-sec {
    border: none;
    box-shadow: none;
    padding: 26px 0;
}


.faq-sec h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 22px;
}
.faq-sec .section-header {
    margin-bottom:40px;
}

.faq-sec .section-header p{
    font-size:15px;
    text-align:center;
}

.faq-accordion {
    width: 50%;
}

.image-wrapper {
    width: 50%;
}

.image-wrapper img{
    border-radius:25px;
}

.faq-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.faq-item {
    padding: 12px 18px;
    border-radius: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(237, 177, 27, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 0 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
	text-align:left;
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.35s ease, opacity 0.35s ease;
    padding: 0;
    opacity: 0;
}

.faq-answer p{
    font-size:14px;
}

/* FINAL FIX: allow full expansion when open */
.faq-item.open .faq-answer {
    padding: 10px 0 15px;
    opacity: 1;
    max-height: none !important;
}	 
		 
		 
		 
		 
		 
       

        /* Contact */
		
		
		.contacts-sec h2 {
	font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 22px;
		}
		
		
.contboxwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 40px 0;
}


.contactbox {
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(237, 177, 27, 0.55);
    width: 32%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
		
		
		
		
		
		
		.contacts-sec p{
			font-size: 15px;
    text-align: center;
		}
		

        .contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 24px;
            margin-top: 18px;
        }

        form.contact-form {
            border-radius: 24px;
            background: rgba(0,0,0,0.98);
            border: 1px solid rgba(237,177,27,0.65);
            padding: 16px 16px 14px;
        }

        .form-row {
            margin-bottom: 10px;
        }

        .form-row label {
            font-size: 0.82rem;
            color: var(--text-soft);
            display: block;
            margin-bottom: 4px;
        }

        .contacts-sec .form-control {
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(237,177,27,0.6);
    background: rgba(0,0,0,0.95);
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: all .16s ease-out;
}

        .form-control:focus {
            border-color: var(--accent-alt);
            box-shadow: 0 0 0 1px rgba(237,177,27,0.6);
        }

        textarea.form-control {
            min-height: 90px;
            resize: vertical;
        }

        .contact-info-block {
            border-radius: 20px;
            background: rgba(0,0,0,0.96);
            border: 1px solid rgba(237,177,27,0.55);
            padding: 14px 15px 12px;
            font-size: 0.9rem;
        }

        .contact-info-block a {
            color: #fff;
            font-weight: 500;
        }

        .contact-info-row {
            margin-top: 8px;
        }

        .contact-info-row div {
            margin-bottom: 4px;
        }
		
		
		.contacts-sec .btn-primary {
    background: linear-gradient(135deg, #b48716, #b48716);
    color: #fff;
    box-shadow: 0 1px 20px rgb(237 177 27 / 47%);
    padding: 13px 20px 13px 20px;
}

        /* Footer */

        footer {
            margin-top: 26px;
            padding: 16px 8px 6px;
            font-size: 0.78rem;
            color: var(--text-muted);
            text-align: center;
        }

        footer a {
            color: #edb11b;
        }

        /* Responsive */

        @media (max-width: 860px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
                padding: 22px 18px 20px;
            }

            .problem-grid,
            .evaluation-grid,
            .faq-grid,
            .contact-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            header.site-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .site-header-cta {
                align-self: stretch;
                justify-content: space-between;
            }
        }

        @media (max-width: 767px) {
            .hero-cta-row {
                flex-direction: column;
                align-items: stretch;
            }
			
			.hero-main h1{
				font-size:25px;
			}

            .btn {
                width: 100%;
            }

            .offer-banner {
                align-items: flex-start;
            }

            .site-header-cta {
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
}


.site-header-cta a {
    padding: 6px 25px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(237,177,27,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .18s ease-out;
}

.page-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 7px 18px 7px 18px;
}





        }