:root{
--primary:#0b82d8;
--primary-dark:#075985;
--accent:#14b8a6;
--dark:#111827;
--muted:#5f6f82;
--line:#dbe3ee;
--surface:#ffffff;
--soft:#f5f8fb;
--text:#172033;
--shadow:0 20px 50px rgba(17,24,39,0.12);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Manrope','Segoe UI',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
color:var(--text);
background:var(--surface);
line-height:1.7;
}

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

a{
color:inherit;
}

.container{
width:min(1180px,calc(100% - 40px));
margin:0 auto;
}

.section{
padding:88px 0;
}

.site-header{
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,0.94);
border-bottom:1px solid var(--line);
backdrop-filter:blur(14px);
transition:box-shadow 0.2s ease,background 0.2s ease;
}

.site-header.is-scrolled{
background:rgba(255,255,255,0.98);
box-shadow:0 12px 30px rgba(17,24,39,0.08);
}

.nav-wrap{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
min-height:76px;
position:relative;
}

.zade {
color:var(--primary);
}

.x {
color:#000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
font-size:1.35rem;
font-weight:700;
letter-spacing:0;
color:var(--dark);
white-space:nowrap;
}

.logo img{
width:48px;
height:48px;
object-fit:contain;
border-radius:8px;
background:#fff;
}

.logo-text{
display:inline-flex;
align-items:baseline;
gap:0;
line-height:1;
}

.nav-links{
display:flex;
align-items:center;
gap:26px;
list-style:none;
}

.mobile-nav-actions{
display:none;
}

.nav-links a{
position:relative;
text-decoration:none;
color:#2f3b4c;
font-weight:500;
font-size:0.96rem;
transition:color 0.2s ease;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:-8px;
height:3px;
border-radius:8px;
background:var(--primary);
transform:scaleX(0);
transform-origin:center;
transition:transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active{
color:var(--primary);
}

.nav-links a:hover::after,
.nav-links a.is-active::after{
transform:scaleX(1);
}

.nav-toggle{
display:none;
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
width:44px;
height:44px;
border:1px solid var(--line);
border-radius:8px;
background:#fff;
color:var(--dark);
cursor:pointer;
}

.nav-toggle span{
display:block;
width:20px;
height:2px;
border-radius:8px;
background:currentColor;
transition:transform 0.2s ease,opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
opacity:0;
}

.nav-toggle.is-open span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

.nav-actions,
.hero-actions,
.contact-actions{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:44px;
padding:10px 20px;
border-radius:8px;
background:var(--primary);
color:#fff;
text-decoration:none;
font-weight:600;
box-shadow:0 12px 24px rgba(11,130,216,0.22);
transition:transform 0.2s ease,background 0.2s ease,box-shadow 0.2s ease;
}

.btn:hover{
background:var(--primary-dark);
transform:translateY(-2px);
box-shadow:0 16px 28px rgba(7,89,133,0.24);
}

.btn-light{
background:#eef6fd;
color:var(--primary-dark);
box-shadow:none;
}

.btn-outline{
background:transparent;
color:var(--primary-dark);
border:1px solid rgba(7,89,133,0.3);
box-shadow:none;
}

.hero{
position:relative;
overflow:hidden;
padding:104px 0 78px;
background:
linear-gradient(120deg,rgba(11,130,216,0.12),rgba(20,184,166,0.08) 42%,rgba(255,255,255,0.95)),
#f6fbff;
}

.hero-grid{
display:grid;
grid-template-columns:1.05fr 0.95fr;
gap:56px;
align-items:center;
}

.eyebrow{
margin-bottom:12px;
color:var(--primary-dark);
font-size:0.78rem;
font-weight:700;
letter-spacing:0;
text-transform:uppercase;
}

.hero h1,
.section-heading h2,
.about-content h2,
.contact-card h2{
color:var(--dark);
font-weight:700;
line-height:1.12;
}

.hero h1{
max-width:780px;
font-size:3.35rem;
margin-bottom:20px;
}

.hero p{
max-width:650px;
color:var(--muted);
font-size:1.05rem;
}

.hero-actions{
margin:30px 0;
}

.trust-row{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px;
max-width:650px;
}

.trust-row div{
padding:18px;
border:1px solid rgba(11,130,216,0.16);
border-radius:8px;
background:rgba(255,255,255,0.72);
}

.trust-row strong,
.trust-row span{
display:block;
}

.trust-row strong{
color:var(--dark);
font-size:1rem;
}

.trust-row span{
color:var(--muted);
font-size:0.88rem;
}

.hero-media{
position:relative;
}

.hero-media img{
width:100%;
aspect-ratio:4/3;
object-fit:cover;
border-radius:8px;
box-shadow:var(--shadow);
}

.service-badge{
position:absolute;
left:24px;
bottom:24px;
display:flex;
align-items:center;
gap:12px;
max-width:290px;
padding:16px 18px;
border-radius:8px;
background:#fff;
box-shadow:0 16px 34px rgba(17,24,39,0.18);
font-weight:600;
}

.service-badge i{
display:grid;
place-items:center;
width:42px;
height:42px;
border-radius:8px;
background:#e8f7ff;
color:var(--primary);
}

.hero-logo-chip{
position:absolute;
right:22px;
top:22px;
display:flex;
align-items:center;
gap:10px;
padding:12px 14px;
border-radius:8px;
background:rgba(255,255,255,0.94);
box-shadow:0 16px 34px rgba(17,24,39,0.16);
}

.hero-logo-chip img{
width:42px;
height:42px;
object-fit:contain;
}

.hero-logo-chip p{
margin:0;
color:var(--dark);
font-size:0.9rem;
font-weight:700;
}

.section-heading{
max-width:720px;
margin:0 auto 42px;
text-align:center;
}

.section-heading h2,
.about-content h2,
.contact-card h2{
font-size:2.35rem;
margin-bottom:16px;
}

.section-heading p,
.about-content p,
.contact-card p{
color:var(--muted);
}

.services-section,
.reviews-section{
background:var(--surface);
}

.services{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
min-height:100%;
padding:32px;
border:1px solid var(--line);
border-radius:8px;
background:#fff;
box-shadow:0 12px 35px rgba(17,24,39,0.06);
transition:transform 0.2s ease,border-color 0.2s ease,box-shadow 0.2s ease;
}

.card:hover{
transform:translateY(-6px);
border-color:rgba(11,130,216,0.35);
box-shadow:var(--shadow);
}

.card i{
display:grid;
place-items:center;
width:54px;
height:54px;
margin-bottom:20px;
border-radius:8px;
background:#e8f7ff;
color:var(--primary);
font-size:24px;
}

.card h3,
.process-step h3{
margin-bottom:12px;
font-size:1.25rem;
color:var(--dark);
}

.card p,
.process-step p,
.testimonial p{
color:var(--muted);
}

.card a{
display:inline-flex;
margin-top:22px;
color:var(--primary-dark);
font-weight:700;
text-decoration:none;
}

.featured-card{
border-color:rgba(20,184,166,0.45);
}

.featured-card i{
background:#e7faf7;
color:var(--accent);
}

.about-section,
.process-section,
.contact-section{
background:var(--soft);
}

.about-grid{
display:grid;
grid-template-columns:0.9fr 1.1fr;
gap:56px;
align-items:center;
}

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

.why{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
margin-top:30px;
}

.why div{
display:flex;
align-items:center;
gap:12px;
padding:18px;
border:1px solid var(--line);
border-radius:8px;
background:#fff;
font-weight:600;
}

.why i{
display:grid;
place-items:center;
width:36px;
height:36px;
border-radius:8px;
background:#e8f7ff;
color:var(--primary);
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.process-step{
padding:28px;
border-radius:8px;
background:#fff;
border:1px solid var(--line);
}

.process-step span{
display:inline-flex;
margin-bottom:26px;
color:var(--primary);
font-weight:700;
font-size:0.95rem;
}

.review-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}

.testimonial{
margin:0;
padding:32px;
border-left:4px solid var(--primary);
border-radius:8px;
background:#fff;
box-shadow:0 12px 35px rgba(17,24,39,0.06);
}

.testimonial p{
font-size:1.05rem;
font-style:italic;
}

.testimonial cite{
display:block;
margin-top:18px;
color:var(--dark);
font-style:normal;
font-weight:700;
}

.contact-card{
display:grid;
grid-template-columns:0.95fr 1.05fr;
gap:28px;
align-items:start;
padding:44px;
border-radius:8px;
background:var(--dark);
color:#fff;
box-shadow:var(--shadow);
}

.contact-card h2,
.contact-card .eyebrow{
color:#fff;
}

.contact-card p{
color:#cbd5e1;
}

.contact-actions{
justify-content:flex-start;
margin-top:24px;
}

.contact-details{
display:grid;
gap:12px;
margin-top:24px;
}

.contact-info{
display:flex;
align-items:flex-start;
gap:12px;
color:#fff;
text-decoration:none;
font-weight:600;
}

.contact-info i{
display:grid;
place-items:center;
flex:0 0 38px;
width:38px;
height:38px;
border-radius:8px;
background:rgba(255,255,255,0.12);
color:var(--accent);
}

.contact-link{
display:inline-flex;
align-items:center;
gap:10px;
min-height:44px;
padding:10px 16px;
border:1px solid rgba(255,255,255,0.24);
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:600;
}

.social-links,
.footer-social{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
}

.social-links{
margin-top:22px;
}

.social-links a,
.social-links span,
.footer-social a,
.footer-social span{
display:grid;
place-items:center;
width:42px;
height:42px;
border-radius:8px;
text-decoration:none;
transition:transform 0.2s ease,background 0.2s ease,color 0.2s ease;
}

.social-links a,
.social-links span{
border:1px solid rgba(255,255,255,0.2);
background:rgba(255,255,255,0.08);
color:#fff;
}

.social-links a:hover,
.footer-social a:hover{
transform:translateY(-2px);
background:var(--primary);
color:#fff;
}

.lead-form{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
width:100%;
}

.lead-form input,
.lead-form textarea{
width:100%;
min-height:48px;
padding:12px 14px;
border:1px solid rgba(255,255,255,0.18);
border-radius:8px;
background:#fff;
color:var(--dark);
font:inherit;
outline:none;
}

.lead-form input:focus,
.lead-form textarea:focus{
border-color:var(--accent);
box-shadow:0 0 0 3px rgba(20,184,166,0.2);
}

.lead-form textarea,
.lead-form button{
grid-column:1 / -1;
}

.lead-form textarea{
resize:vertical;
}

.lead-form button{
border:0;
cursor:pointer;
}

.lead-form button:disabled{
cursor:not-allowed;
opacity:0.72;
transform:none;
}

footer{
background:#0a0f1d;
color:#fff;
padding:30px 0;
}

.footer-wrap{
display:flex;
justify-content:space-between;
gap:20px;
color:#cbd5e1;
font-size:0.95rem;
}

.footer-wrap p:first-child{
color:#fff;
font-weight:700;
}

.footer-address{
max-width:420px;
margin-top:6px;
}

.footer-right{
display:flex;
align-items:flex-end;
flex-direction:column;
gap:12px;
text-align:right;
}

.footer-social{
justify-content:flex-end;
}

.footer-social a,
.footer-social span{
background:rgba(255,255,255,0.08);
color:#cbd5e1;
}

.whatsapp{
position:fixed;
right:22px;
bottom:22px;
z-index:1001;
display:flex;
align-items:center;
justify-content:center;
width:60px;
height:60px;
border-radius:8px;
background:#25d366;
color:#fff;
font-size:28px;
text-decoration:none;
box-shadow:0 18px 34px rgba(37,211,102,0.3);
}

.reveal{
opacity:0;
transform:translateY(18px);
transition:opacity 0.55s ease,transform 0.55s ease;
}

.reveal.is-visible{
opacity:1;
transform:translateY(0);
}

@media(max-width:980px){
.nav-wrap{
padding:14px 0;
}

.nav-toggle{
display:flex;
order:2;
}

.main-nav{
position:absolute;
left:0;
right:0;
top:100%;
display:grid;
grid-template-rows:0fr;
overflow:hidden;
border-radius:8px;
background:#fff;
box-shadow:0 18px 40px rgba(17,24,39,0.12);
transition:grid-template-rows 0.24s ease;
}

.main-nav.is-open{
grid-template-rows:1fr;
}

.nav-links{
min-height:0;
align-items:stretch;
flex-direction:column;
gap:0;
padding:8px;
overflow:hidden;
}

.nav-links a{
display:block;
padding:13px 14px;
border-radius:8px;
}

.nav-links a::after{
display:none;
}

.nav-links a.is-active{
background:#eef6fd;
}

.mobile-nav-actions{
display:none;
grid-template-columns:1fr 1fr;
gap:10px;
padding:8px;
}

.mobile-nav-actions .btn{
width:100%;
}

.nav-actions{
margin-left:auto;
order:1;
}

.hero{
padding-top:76px;
}

.hero-grid,
.about-grid,
.contact-card{
grid-template-columns:1fr;
}

.services,
.process-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-actions{
justify-content:flex-start;
}
}

@media(max-width:680px){
.container{
width:min(100% - 28px,1180px);
}

.section{
padding:62px 0;
}

.nav-actions{
display:none;
}

.mobile-nav-actions{
display:grid;
}

.btn,
.contact-link{
width:100%;
}

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

.section-heading h2,
.about-content h2,
.contact-card h2{
font-size:1.9rem;
}

.trust-row,
.services,
.why,
.process-grid,
.review-grid,
.lead-form{
grid-template-columns:1fr;
}

.service-badge{
position:static;
margin-top:14px;
max-width:none;
}

.hero-logo-chip{
position:static;
margin-top:14px;
}

.card,
.process-step,
.testimonial,
.contact-card{
padding:24px;
}

.footer-wrap{
flex-direction:column;
}

.footer-right{
align-items:flex-start;
text-align:left;
}
}

/* Contract Tool CSS */
.contract-page{
min-height:100vh;
background:#f4f7fb;
color:#132033;
}

.contract-topbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
padding:18px clamp(18px,4vw,56px);
background:#fff;
border-bottom:1px solid #dce5ef;
box-shadow:0 10px 30px rgba(15,23,42,0.05);
}

.contract-brand{
display:flex;
align-items:center;
gap:12px;
color:#111827;
font-size:1.25rem;
font-weight:800;
text-decoration:none;
}

.contract-brand img{
width:52px;
height:52px;
object-fit:contain;
border-radius:8px;
}

.contract-brand span span{
color:var(--primary);
}

.contract-topbar__meta{
display:flex;
align-items:center;
gap:14px;
color:#607086;
font-size:0.92rem;
font-weight:700;
}

.contract-shell{
width:min(1180px,calc(100% - 36px));
margin:0 auto;
padding:44px 0 70px;
}

.contract-hero{
display:grid;
grid-template-columns:minmax(0,1fr) 320px;
gap:28px;
align-items:stretch;
margin-bottom:28px;
}

.contract-eyebrow,
.contract-panel .panel-heading span,
.plan-panel .panel-heading span{
display:inline-flex;
margin-bottom:10px;
color:var(--primary-dark);
font-size:0.78rem;
font-weight:800;
letter-spacing:0;
text-transform:uppercase;
}

.contract-hero h1{
max-width:840px;
margin-bottom:14px;
color:#0f172a;
font-size:clamp(2rem,4vw,3.25rem);
line-height:1.12;
}

.contract-hero p,
.contract-panel .panel-heading p,
.plan-panel .panel-heading p{
max-width:760px;
color:#607086;
font-size:1.02rem;
}

.contract-summary-card,
.contract-panel,
.plan-panel,
.contract-preview-card{
border:1px solid #dbe5ef;
border-radius:8px;
background:#fff;
box-shadow:0 18px 45px rgba(15,23,42,0.07);
}

.contract-summary-card{
display:flex;
flex-direction:column;
justify-content:center;
padding:28px;
}

.contract-summary-card span{
color:#607086;
font-weight:700;
}

.contract-summary-card strong{
margin:8px 0;
color:var(--primary);
font-size:2.1rem;
line-height:1.1;
}

.contract-summary-card p{
color:#334155;
font-weight:700;
}

.contract-workspace{
display:grid;
grid-template-columns:minmax(0,1fr) 360px;
gap:22px;
align-items:start;
}

.contract-panel,
.plan-panel,
.contract-preview-card{
padding:30px;
}

.panel-heading{
margin-bottom:24px;
}

.panel-heading--tight{
margin-top:30px;
}

.contract-panel .panel-heading h2,
.plan-panel .panel-heading h2{
color:#0f172a;
font-size:1.55rem;
line-height:1.2;
}

.contract-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.contract-grid label{
display:flex;
flex-direction:column;
gap:8px;
color:#253145;
font-weight:700;
}

.contract-grid__wide{
grid-column:1 / -1;
}

.contract-grid input,
.contract-grid select,
.contract-grid textarea{
width:100%;
min-height:48px;
padding:11px 12px;
border:1px solid #cbd8e5;
border-radius:8px;
background:#fff;
color:#111827;
font:inherit;
outline:none;
}

.contract-grid textarea{
min-height:96px;
resize:vertical;
}

.contract-grid input:focus,
.contract-grid select:focus,
.contract-grid textarea:focus{
border-color:var(--primary);
box-shadow:0 0 0 4px rgba(11,130,216,0.12);
}

.addon-list{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:12px;
margin-top:20px;
}

.addon-list label{
display:flex;
align-items:center;
gap:10px;
padding:14px;
border:1px solid #dbe5ef;
border-radius:8px;
background:#fbfdff;
color:#253145;
font-weight:700;
}

.addon-list input{
width:18px;
height:18px;
accent-color:var(--primary);
}

.contract-actions{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
margin-top:24px;
}

.contract-btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:48px;
padding:12px 20px;
border:0;
border-radius:8px;
background:var(--primary);
color:#fff;
font:inherit;
font-weight:800;
text-decoration:none;
cursor:pointer;
box-shadow:0 14px 26px rgba(11,130,216,0.22);
transition:transform 0.2s ease,background 0.2s ease,box-shadow 0.2s ease;
}

.contract-btn:hover{
background:var(--primary-dark);
transform:translateY(-2px);
box-shadow:0 18px 32px rgba(7,89,133,0.25);
}

.contract-btn--light{
background:#eef6fd;
color:var(--primary-dark);
box-shadow:none;
}

.contract-btn--dark{
background:#111827;
box-shadow:0 14px 26px rgba(17,24,39,0.18);
}

.scope-list h3{
margin:20px 0 10px;
color:#0f172a;
font-size:1rem;
}

.scope-list ul,
.doc-section ul{
padding-left:20px;
color:#526174;
}

.scope-list li,
.doc-section li{
margin:8px 0;
}

.contract-preview-card{
margin-top:24px;
}

.contract-document{
max-width:920px;
margin:0 auto;
color:#172033;
}

.empty-preview{
display:grid;
place-items:center;
min-height:260px;
text-align:center;
}

.empty-preview img{
width:92px;
height:92px;
object-fit:contain;
margin-bottom:14px;
}

.empty-preview h2{
color:#0f172a;
}

.empty-preview p{
max-width:520px;
color:#607086;
}

.doc-header{
display:flex;
align-items:center;
gap:18px;
padding-bottom:22px;
border-bottom:1px solid #dbe5ef;
}

.doc-header img{
width:86px;
height:86px;
object-fit:contain;
border-radius:8px;
background:#f8fafc;
}

.doc-header span{
display:block;
color:var(--primary-dark);
font-weight:800;
text-transform:uppercase;
}

.doc-header h2{
margin:4px 0;
color:#0f172a;
font-size:1.8rem;
line-height:1.2;
}

.doc-header p{
color:#607086;
}

.doc-meta{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
margin:22px 0;
}

.doc-meta p,
.price-table p{
display:flex;
justify-content:space-between;
gap:16px;
margin:0;
padding:12px;
border-radius:8px;
background:#f8fafc;
}

.doc-meta span,
.price-table span{
color:#607086;
}

.doc-meta strong,
.price-table strong{
color:#111827;
text-align:right;
}

.doc-section{
padding:22px 0;
border-top:1px solid #edf2f7;
}

.doc-section h3{
margin-bottom:12px;
color:#0f172a;
font-size:1.25rem;
}

.doc-section h4{
margin:14px 0 8px;
color:#253145;
}

.doc-section p{
color:#526174;
}

.doc-columns{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

.price-table{
display:grid;
gap:10px;
}

.price-total{
background:var(--primary) !important;
color:#fff;
}

.price-total span,
.price-total strong{
color:#fff;
}

.signature-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin-top:40px;
}

.signature-grid div{
min-height:86px;
display:flex;
align-items:flex-end;
padding:12px 0;
border-bottom:1px solid #94a3b8;
color:#607086;
font-weight:700;
}

@media(max-width:980px){
.contract-hero,
.contract-workspace{
grid-template-columns:1fr;
}

.addon-list,
.doc-meta{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:680px){
.contract-topbar,
.contract-topbar__meta{
align-items:flex-start;
flex-direction:column;
}

.contract-shell{
width:min(100% - 28px,1180px);
padding-top:30px;
}

.contract-grid,
.addon-list,
.doc-meta,
.doc-columns,
.signature-grid{
grid-template-columns:1fr;
}

.contract-panel,
.plan-panel,
.contract-preview-card,
.contract-summary-card{
padding:22px;
}

.contract-actions,
.contract-btn{
width:100%;
}

.doc-header{
align-items:flex-start;
flex-direction:column;
}
}

@media print{
body.contract-page{
background:#fff;
}

.contract-topbar,
.contract-hero,
.contract-workspace{
display:none !important;
}

.contract-shell{
width:100%;
padding:0;
}

.contract-preview-card{
margin:0;
padding:0;
border:0;
box-shadow:none;
}

.contract-document{
max-width:none;
}
}

/* Estimate CSS */
.estimate-page{
min-height:100vh;
background:#f4f7fb;
color:#132033;
}

.estimate-page .hidden{
display:none;
}

.estimate-topbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
padding:18px clamp(18px,4vw,56px);
background:#fff;
border-bottom:1px solid #dce5ef;
box-shadow:0 10px 30px rgba(15,23,42,0.05);
}

.estimate-brand{
display:flex;
align-items:center;
gap:12px;
color:#111827;
font-weight:700;
text-decoration:none;
}

.estimate-brand img{
width:46px;
height:46px;
object-fit:contain;
border-radius:8px;
}

.estimate-topbar__meta{
display:flex;
align-items:center;
gap:14px;
color:#607086;
font-size:0.92rem;
}

.estimate-topbar__meta a{
padding:9px 14px;
border-radius:8px;
background:#0f766e;
color:#fff;
text-decoration:none;
font-weight:600;
}

.estimate-shell{
width:min(1180px,calc(100% - 36px));
margin:0 auto;
padding:44px 0 70px;
}

.estimate-hero{
display:grid;
grid-template-columns:minmax(0,1fr) 320px;
gap:28px;
align-items:stretch;
margin-bottom:28px;
}

.estimate-eyebrow,
.panel-heading span,
.report-header span{
display:inline-flex;
margin-bottom:10px;
color:#0f766e;
font-size:0.78rem;
font-weight:700;
letter-spacing:0;
text-transform:uppercase;
}

.estimate-hero h1{
max-width:780px;
margin-bottom:14px;
color:#0f172a;
font-size:clamp(2rem,4vw,3.25rem);
line-height:1.12;
}

.estimate-hero p{
max-width:760px;
color:#607086;
font-size:1.02rem;
}

.estimate-summary-card{
display:flex;
flex-direction:column;
justify-content:center;
padding:28px;
border:1px solid #cddbe9;
border-radius:8px;
background:#fff;
box-shadow:0 18px 45px rgba(15,23,42,0.08);
}

.estimate-summary-card span{
color:#607086;
font-weight:600;
}

.estimate-summary-card strong{
margin:8px 0;
color:#0f766e;
font-size:2.1rem;
line-height:1.1;
}

.estimate-summary-card p{
color:#334155;
font-weight:600;
}

.estimate-workspace{
display:grid;
grid-template-columns:1fr;
gap:22px;
}

.estimate-panel,
.estimate-report-card{
padding:30px;
border:1px solid #dbe5ef;
border-radius:8px;
background:#fff;
box-shadow:0 18px 45px rgba(15,23,42,0.07);
}

.estimate-panel--muted{
background:#fbfdff;
}

.panel-heading{
margin-bottom:24px;
}

.panel-heading h2,
.report-header h2{
color:#0f172a;
font-size:1.55rem;
line-height:1.2;
}

.panel-heading p,
.report-header p{
color:#607086;
}

.estimate-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.estimate-grid label{
display:flex;
flex-direction:column;
gap:8px;
color:#253145;
font-weight:600;
}

.estimate-grid input,
.estimate-grid select{
width:100%;
min-height:48px;
padding:11px 12px;
border:1px solid #cbd8e5;
border-radius:8px;
background:#fff;
color:#111827;
font:inherit;
outline:none;
}

.estimate-grid input:focus,
.estimate-grid select:focus{
border-color:#0f766e;
box-shadow:0 0 0 4px rgba(15,118,110,0.12);
}

.estimate-actions{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
margin-top:24px;
}

.estimate-btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:48px;
padding:12px 20px;
border:0;
border-radius:8px;
background:#0f766e;
color:#fff;
font:inherit;
font-weight:700;
text-decoration:none;
cursor:pointer;
box-shadow:0 14px 26px rgba(15,118,110,0.22);
transition:transform 0.2s ease,background 0.2s ease,box-shadow 0.2s ease;
}

.estimate-btn:hover{
background:#115e59;
transform:translateY(-2px);
box-shadow:0 18px 32px rgba(15,118,110,0.25);
}

.estimate-btn--light{
background:#e8f4f3;
color:#115e59;
box-shadow:none;
}

.estimate-btn--dark{
background:#111827;
box-shadow:0 14px 26px rgba(17,24,39,0.18);
}

.estimate-btn--whatsapp{
background:#25d366;
box-shadow:0 14px 26px rgba(37,211,102,0.2);
}

.estimate-result{
display:flex;
justify-content:space-between;
gap:12px;
margin-top:22px;
padding:18px;
border-radius:8px;
background:#eef7f6;
color:#115e59;
font-weight:600;
}

.estimate-result span{
color:#334155;
}

.estimate-report-card{
display:none;
max-width:860px;
margin:28px auto 0;
}

.report-header{
display:flex;
align-items:center;
gap:18px;
padding-bottom:22px;
border-bottom:1px solid #dbe5ef;
}

.report-header img{
width:82px;
height:82px;
object-fit:contain;
border-radius:8px;
background:#f8fafc;
}

.report-content{
padding:22px 0;
}

.report-meta,
.price-table,
.report-payment{
display:grid;
gap:10px;
}

.report-meta{
grid-template-columns:repeat(2,1fr);
margin-bottom:20px;
}

.report-meta p,
.price-table p,
.report-payment p{
display:flex;
justify-content:space-between;
gap:16px;
margin:0;
padding:12px 0;
border-bottom:1px solid #edf2f7;
}

.report-meta span,
.price-table span,
.report-payment span{
color:#607086;
}

.report-meta strong,
.price-table strong,
.report-payment strong{
color:#111827;
text-align:right;
}

.price-total{
margin-top:6px;
padding:16px !important;
border:0 !important;
border-radius:8px;
background:#0f766e;
color:#fff;
}

.price-total span,
.price-total strong{
color:#fff;
}

.report-payment{
padding:18px;
border-radius:8px;
background:#f8fafc;
}

.report-footer{
margin-top:20px;
padding-top:16px;
border-top:1px solid #dbe5ef;
color:#607086;
text-align:center;
font-weight:600;
}

.estimate-downloads{
display:none;
justify-content:center;
gap:12px;
flex-wrap:wrap;
margin-top:22px;
}

@media(max-width:860px){
.estimate-topbar,
.estimate-topbar__meta{
align-items:flex-start;
flex-direction:column;
}

.estimate-hero{
grid-template-columns:1fr;
}

.estimate-grid,
.report-meta{
grid-template-columns:1fr;
}

.estimate-result{
flex-direction:column;
}
}

@media(max-width:560px){
.estimate-shell{
width:min(100% - 28px,1180px);
padding-top:30px;
}

.estimate-panel,
.estimate-report-card,
.estimate-summary-card{
padding:22px;
}

.estimate-actions,
.estimate-btn,
.estimate-downloads{
width:100%;
}

.report-header{
align-items:flex-start;
flex-direction:column;
}
}

.contract-page .price-table p{
display:flex;
justify-content:space-between;
gap:16px;
margin:0;
padding:12px;
border:0;
border-radius:8px;
background:#f8fafc;
}

.contract-page .price-total{
margin-top:0;
padding:12px !important;
border:0 !important;
border-radius:8px;
background:var(--primary) !important;
color:#fff;
}
