*,
*::before,
*::after{margin:0; padding:0; box-sizing:border-box}
:root{--primary:#e30613; --primary-hover:#c10010; --black:#1f1f1f; --text:#555; --border:#ececec; --bg:#ffffff; --section:#f8f9fb; --radius:16px; --shadow:0 10px 35px rgba(0,0,0,.08); --transition:.3s ease; --container:1200px}
html{scroll-behavior:smooth}
body{font-family:"Inter",sans-serif; font-size:16px; line-height:1.7; color:var(--text); background:var(--bg); overflow-x:hidden; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility}
img{display:block; max-width:100%; height:auto}
a{color:inherit; text-decoration:none}
a:focus-visible,
button:focus-visible{outline:3px solid var(--primary); outline-offset:4px; border-radius:10px}
ul{list-style:none}
button{border:none; background:none; cursor:pointer; font-family:inherit}
input,
textarea,
select{font:inherit}
h1,
h2,
h3,
h4{color:var(--black); line-height:1.2; font-weight:700}
p{margin-bottom:20px}
section{padding:90px 0; scroll-margin-top:100px}
@media (max-width:768px){
    section{padding:45px 0; scroll-margin-top:100px}
    .hero{padding-top:105px; padding-bottom:45px}
    .section-title{margin-bottom:45px}
}
.container{width:min(var(--container), calc(100% - 40px)); margin:auto}
.btn{display:inline-flex; align-items:center; justify-content:center; padding:15px 30px; border-radius:12px; background:var(--primary); color:#fff; font-weight:600; transition:var(--transition); gap:10px}
.btn:hover{background:var(--primary-hover); transform:translateY(-2px)}
::selection{background:var(--primary); color:#fff}
/* SECTION TITLE */
.section-title{max-width:720px; margin:0 auto 60px; text-align:center}
.section-title .badge{display:inline-flex; align-items:center; gap:8px; padding:8px 16px; margin-bottom:18px; border-radius:50px; background:rgba(227,6,19,.08); color:var(--primary); font-size:.9rem; font-weight:600}
.section-title h2{margin-bottom:18px; font-size:clamp(2rem,4vw,3rem); font-weight:800; line-height:1.15; color:var(--black)}
.section-title p{max-width:620px; margin:0 auto; font-size:1.1rem; line-height:1.8; color:#666}
/* HEADER */
.header{position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(255,255,255,.95); backdrop-filter:blur(16px); border-bottom:1px solid #ececec; transition:.35s}
.header.scrolled{box-shadow:0 12px 35px rgba(0,0,0,.08)}
.header .container{width:min(1200px, calc(100% - 40px)); margin:auto; height:84px; display:flex; align-items:center; justify-content:space-between}
.logo{display:flex; align-items:center; gap:16px; text-decoration:none; color:#111; font-size:22px; font-weight:700; white-space:nowrap}
.logo img{width:52px; height:52px; object-fit:contain; flex-shrink:0; transition:transform .3s ease; aspect-ratio:1}
.logo:hover img{transform:rotate(-5deg) scale(1.05)}
.logo span{font-size:2rem; font-weight:800; color:#1f1f1f; line-height:1; letter-spacing:-0.03em}
@media (max-width:768px){
    .logo{gap:12px}
    .logo img{width:42px; height:42px}
    .logo span{font-size:1.65rem}
}
@media (max-width:480px){
    .logo img{width:38px; height:38px}
    .logo span{font-size:1.4rem}
}
.nav{display:flex; align-items:center; gap:40px}
.menu{display:flex; gap:34px; list-style:none}
.menu a{color:#222; text-decoration:none; font-weight:500; position:relative; transition:.3s}
.menu a:hover{color:#e30613}
.menu a.active{color:var(--primary)}
.menu a.active::after{content:""; position:absolute; left:0; bottom:-8px; width:100%; height:3px; border-radius:10px; background:var(--primary)}
.btn-order{display:inline-flex; align-items:center; justify-content:center; padding:14px 24px; border-radius:12px; background:#e30613; color:#fff; text-decoration:none; font-weight:600; transition:.25s}
.btn-order:hover{background:#c60010; transform:translateY(-2px)}
.menu-btn{display:none; width:48px; height:48px; border:none; background:none; cursor:pointer}
.menu-btn span{display:block; width:28px; height:3px; margin:5px auto; background:#111; border-radius:3px; transition:.3s}
@media(max-width:900px){
    .nav{position:absolute; left:0; top:84px; width:100%; height: calc(100vh - 84px); overflow-y: auto; background:#fff; flex-direction:column; align-items:flex-start; gap:25px; padding:30px; border-bottom:1px solid #ececec; transform:translateY(-120%); opacity:0; visibility:hidden; transition:.35s}
    .nav.active{transform:translateY(0); opacity:1; visibility:visible}
    .menu{width:100%; flex-direction:column; gap:18px}
    .menu a{display:block; font-size:18px}
    .btn-order{width:100%}
    .menu-btn{display:block}
}
/* HERO */
.hero{padding-top:120px; padding-bottom:80px}
.hero-grid{display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:70px}
.hero h1{font-size:clamp(2.5rem,5vw,4.2rem); font-weight:800; line-height:1.1; margin-bottom:30px}
.hero h1 span{color:var(--primary)}
.hero-description{max-width:520px; font-size:1.2rem; margin-bottom:35px}
.hero-list{display:flex; flex-direction:column; gap:18px; margin-bottom:35px}
.hero-list li{display:flex; align-items:center; gap:14px; font-size:1.05rem; font-weight:500}
.hero-list li svg{width: 22px; height: 22px; color: var(--primary); stroke-width: 1.8; flex-shrink: 0}
.hero-list img{width:22px; height:22px}
.hero-note{margin-top:18px; color:#777; font-size:.95rem}
.hero-image{display:flex; justify-content:center}
.hero-image img{width:100%; max-width:700px; height:auto}
/* FEATURES */
.features{margin:0}
.features-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:18px}
.feature{position:relative; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:35px 20px; min-height:180px; background:#fff; border:1px solid #f2f2f2; border-radius:18px; box-shadow:  0 5px 18px rgba(0,0,0,.04); transition:  transform .45s cubic-bezier(.22,1,.36,1),  box-shadow .45s,  border-color .35s}
.feature:hover{transform:translateY(-8px); box-shadow:0 15px 40px rgba(0,0,0,.08)}
.feature img{width:38px; margin:0 auto 18px}
.feature h3{font-size:1.15rem; margin-bottom:10px}
.feature p{margin:0; font-size:.95rem; color:#666}
@media(max-width:1100px){
    .features-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
    .hero-grid{grid-template-columns:1fr}
    .hero-content{text-align:center}
    .hero-description{margin-inline:auto}
    .hero-list li{justify-content:center}
    .hero-image{order:-1; margin-bottom:20px}
    .features-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
    .features-grid{grid-template-columns:1fr}
    .hero h1{font-size:2.2rem}
    .hero-description{font-size:1rem}
}
.feature::before{content:""; position:absolute; top:0; left:18px; right:18px; height:3px; border-radius:20px; background:var(--primary); transform:scaleX(0); transform-origin:center; transition:.45s cubic-bezier(.22,1,.36,1)}
.feature svg{width:42px; height:42px; margin-bottom:18px; color:var(--primary); stroke-width:1.8; transition:  transform .45s cubic-bezier(.22,1,.36,1),  color .35s}
.feature h3{margin-bottom:10px; font-size:18px; font-weight:700; color:#222; transition:.35s}
.feature p{margin:0; font-size:15px; line-height:1.55; color:#666; transition:.35s}
.feature:hover{transform:translateY(-8px); border-color:#ffd7da; box-shadow:  0 18px 40px rgba(227,6,19,.08)}
.feature:hover::before{transform:scaleX(1)}
.feature:hover svg{transform:scale(1.12)}
.feature:hover h3{color:var(--primary)}
.feature:hover p{color:#444}
@media(max-width:1200px){
    .features-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:700px){
    .features-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
    .features-grid{grid-template-columns:1fr}
}
/* WHY US */
.stats-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:24px; margin-top:50px}
.stat-card{background:#fff; border:1px solid #f1f1f1; border-radius:20px; padding:40px 25px; text-align:center; box-shadow:0 8px 25px rgba(0,0,0,.04); transition:  transform .45s cubic-bezier(.22,1,.36,1),  box-shadow .45s,  border-color .35s; position:relative}
.stat-card::before{content:""; position:absolute; left:20px; right:20px; top:0; height:3px; background:var(--primary); transform:scaleX(0); transition:.45s; border-radius:10px}
.stat-card:hover{transform:translateY(-8px); box-shadow:0 18px 40px rgba(227,6,19,.08); border-color:#ffd6d9}
.stat-card:hover::before{transform:scaleX(1)}
.stat-card svg{width:48px; height:48px; color:var(--primary); margin-bottom:20px; transition:.4s}
.stat-card:hover svg{transform:scale(1.12)}
.number{display:block; margin-bottom:10px; font-size:42px; font-weight:800; color:var(--primary)}
.stat-card h3{font-size:18px; font-weight:600; color:#333}
@media (max-width:1200px){
    .stats-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:768px){
    .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:992px){
    .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:576px){
    .stats-grid{grid-template-columns:1fr}
}
/* Portfolio card */
.portfolio-card{background:#fff; border:1px solid #ececec; border-radius:22px; overflow:hidden; transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease; box-shadow:none}
.portfolio-card:hover{transform:translateY(-4px); border-color:#dcdcdc}
.portfolio-image{aspect-ratio:3/2; overflow:hidden}
.portfolio-image img{display:block; width:100%; height:100%; object-fit:cover; transition:transform .55s ease}
.portfolio-card:hover .portfolio-image img{transform:scale(1.04)}
.portfolio-content{padding:28px}
.portfolio-content h3{font-size:1.5rem; margin-bottom:8px}
.category{display:inline-block; margin-bottom:20px; color:#777}
.portfolio-content ul{list-style:none; padding:0; margin:0 0 25px}
.portfolio-content li{display:flex; gap:10px; margin-bottom:12px}
.portfolio-btn{display:inline-flex; align-items:center; gap:10px; font-weight:700; color:var(--primary)}
.portfolio-slider{padding-bottom:70px}
.portfolio-slider .swiper-pagination{bottom:8px !important}
.portfolio-slider .swiper-pagination{position:relative; margin-top:30px; bottom:auto}
/* WORKFLOW */
.workflow-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:60px}
.step{position:relative; padding:38px 30px; background:#fff; border:1px solid #f2f2f2; border-radius:22px; box-shadow:0 8px 30px rgba(0,0,0,.04); transition:.45s}
.step:hover{transform:translateY(-8px); box-shadow:  0 20px 45px rgba(227,6,19,.08)}
.step-number{position:absolute; top:18px; right:22px; font-size:42px; font-weight:800; color:rgba(227,6,19,.08)}
.step-icon{width:72px; height:72px; display:flex; align-items:center; justify-content:center; border-radius:18px; background:rgba(227,6,19,.08); margin-bottom:28px}
.step-icon svg{width:34px; height:34px; color:var(--primary)}
.step h3{margin-bottom:14px; font-size:1.35rem}
.step p{color:#666; line-height:1.7}
.step::after{content:""; position:absolute; right:-28px; top:50%; width:28px; height:2px; background:#ececec}
.step:last-child::after{display:none}
@media(max-width:1100px){
    .workflow-grid{grid-template-columns:repeat(2,1fr)}
    .step::after{display:none}
}
@media(max-width:650px){
    .workflow-grid{grid-template-columns:1fr}
}
/* PRICING */
.pricing-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:30px; margin-top:60px}
.price-card{background:#fff; border:1px solid #f1f1f1; border-radius:22px; padding:40px; box-shadow:0 10px 30px rgba(0,0,0,.04); transition:  transform .45s cubic-bezier(.22,1,.36,1),  box-shadow .45s,  border-color .35s}
.price-card:hover{transform:translateY(-8px); border-color:#ffd7da; box-shadow:  0 20px 45px rgba(227,6,19,.08)}
.featured{border:2px solid var(--primary)}
.popular-badge{display:inline-flex; align-items:center; gap:8px; padding:10px 18px; margin-bottom:18px; border-radius:50px; background:linear-gradient(  135deg,  #fff4e5,  #ffe8c2 ); color:#b76a00; font-size:.9rem; font-weight:700; border:1px solid #ffd38a; box-shadow:0 4px 12px rgba(255,183,0,.12)}
.popular-badge svg{width:18px; height:18px}
.price-label{display:inline-block; padding:8px 14px; margin-bottom:18px; border-radius:50px; background:rgba(227,6,19,.08); color:var(--primary); font-size:.9rem; font-weight:600}
.price-card h3{margin-bottom:20px; font-size:1.8rem}
.price{margin-bottom:30px; font-size:1.2rem; color:#666}
.price strong{font-size:3rem; color:var(--primary)}
.price small{font-size:1rem; color:#777}
.price-card ul{list-style:none; padding:0; margin:0}
.price-card li{display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; line-height:1.6}
.price-card li svg{width:20px; height:20px; color:var(--primary); flex-shrink:0; margin-top:2px}
.pricing-note{display:flex; gap:18px; align-items:flex-start; margin-top:40px; padding:25px 30px; border-radius:20px; background:#fff; box-shadow:0 10px 25px rgba(0,0,0,.04)}
.pricing-note svg{width:32px; height:32px; color:var(--primary); flex-shrink:0}
.pricing-note p{margin:0; color:#555; line-height:1.8}
@media(max-width:900px){
    .pricing-grid{grid-template-columns:1fr}
}
/* OWNERSHIP */
.ownership-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:32px; margin-top:60px}
.ownership-card{padding:40px; background:#fff; border-radius:24px; border:1px solid var(--border); box-shadow:0 12px 35px rgba(0,0,0,.04); transition:  transform .45s cubic-bezier(.22,1,.36,1),  box-shadow .45s}
.ownership-card:hover{transform:translateY(-8px); box-shadow:0 22px 45px rgba(0,0,0,.08)}
.ownership-header{display:flex; align-items:center; gap:16px; margin-bottom:30px}
.ownership-header svg{width:52px; height:52px; padding:12px; border-radius:16px}
.danger .ownership-header svg{background:#fff3f3; color:#d63b3b}
.success .ownership-header svg{background:rgba(227,6,19,.08); color:var(--primary)}
.ownership-header h3{font-size:1.45rem; margin:0}
.ownership-card ul{list-style:none; margin:0; padding:0}
.ownership-card li{display:flex; align-items:flex-start; gap:14px; margin-bottom:18px; line-height:1.7}
.ownership-card li svg{width:20px; height:20px; flex-shrink:0; margin-top:2px}
.danger li svg{color:#d63b3b}
.success li svg{color:var(--primary)}
.ownership-note{display:flex; gap:20px; align-items:flex-start; margin-top:45px; padding:30px 35px; border-radius:22px; background:#fff; border-left:5px solid var(--primary); box-shadow:0 10px 30px rgba(0,0,0,.04)}
.ownership-note svg{width:34px; height:34px; color:var(--primary); flex-shrink:0}
.ownership-note p{margin:0; line-height:1.9; color:#555}
@media(max-width:900px){
    .ownership-grid{grid-template-columns:1fr}
}
/* SEO */
.seo{background:#fff}
.seo .section-title{max-width:900px; margin:0 auto}
.seo .section-title h2 span{color:var(--primary)}
.seo-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:55px}
.seo-card{background:#fff; border:1px solid var(--border); border-radius:22px; padding:32px 28px; text-align:center; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; box-shadow:0 8px 25px rgba(0,0,0,.04); position:relative; overflow:hidden}
.seo-card::before{content:""; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--primary); transform:scaleX(0); transform-origin:left; transition:.35s}
.seo-card:hover{transform:translateY(-8px); border-color:#ffd6d9; box-shadow:0 18px 40px rgba(227,6,19,.08)}
.seo-card:hover::before{transform:scaleX(1)}
.seo-icon{width:72px; height:72px; margin:0 auto 20px; border-radius:18px; background:#fff5f5; display:flex; align-items:center; justify-content:center; transition:.35s}
.seo-card:hover .seo-icon{background:#ffe7e9}
.seo-icon svg{width:36px; height:36px; color:var(--primary); transition:.35s}
.seo-card:hover .seo-icon svg{transform:scale(1.08)}
.seo-card h3{font-size:22px; margin-bottom:14px; color:var(--black)}
.seo-card p{margin:0; line-height:1.7; color:var(--text)}
.seo-main{display:grid; grid-template-columns:1.1fr .9fr; gap:35px; margin-top:65px}
.seo-content{background:#fff; border:1px solid var(--border); border-radius:24px; padding:45px; box-shadow:0 10px 30px rgba(0,0,0,.04)}
.seo-label{display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:30px; background:#f4fff5; color:#17984d; font-weight:600; margin-bottom:22px}
.seo-label svg{width:18px; height:18px}
.seo-content h3{font-size:34px; line-height:1.3; margin-bottom:20px}
.seo-content h3 span{color:var(--primary)}
.seo-content p{color:var(--text); line-height:1.8; margin-bottom:30px}
.seo-list{display:grid; grid-template-columns:repeat(2,1fr); gap:18px}
.seo-list div{display:flex; align-items:center; gap:10px; font-weight:500}
.seo-list svg{width:18px; height:18px; color:#18a957; flex-shrink:0}
.seo-preview{display:grid; gap:25px}
.seo-shot{background:#fff; border:1px solid var(--border); border-radius:22px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.04); transition: transform .35s ease, box-shadow .35s ease}
.seo-shot:hover{transform:translateY(-6px); box-shadow:0 20px 45px rgba(227,6,19,.08)}
.seo-shot img{display:block; width:100%; height:auto}
.seo-shot figcaption{display:flex; align-items:center; gap:10px; padding:18px 22px; font-weight:600; color:var(--black); border-top:1px solid var(--border); background:#fff}
.seo-shot figcaption svg{width:20px; height:20px; color:#17a857}
.seo-warning{margin-top:55px; display:grid; grid-template-columns:80px 1fr; gap:28px; padding:40px; border:1px solid #ffd8dc; border-radius:24px; background:linear-gradient(180deg,#fff,#fff9f9); box-shadow:0 12px 35px rgba(0,0,0,.04)}
.seo-warning-icon{width:70px; height:70px; border-radius:18px; background:#fff; border:1px solid #ffe0e3; display:flex; align-items:center; justify-content:center}
.seo-warning-icon svg{width:34px; height:34px; color:var(--primary)}
.seo-warning-content h3{font-size:30px; margin-bottom:22px; color:var(--black); line-height:1.35}
.seo-warning-content p{margin-bottom:18px; line-height:1.9; color:var(--text)}
.seo-warning-content strong{color:var(--black)}
.seo-extra{margin-top:30px; padding:28px; border-radius:20px; background:#fff; border:1px solid var(--border)}
.seo-extra h4{margin-bottom:18px; font-size:22px; color:var(--black)}
.seo-extra ul{display:grid; grid-template-columns:repeat(2,1fr); gap:16px 25px}
.seo-extra li{position:relative; padding-left:24px; line-height:1.7; color:var(--text)}
.seo-extra li::before{content:""; position:absolute; left:0; top:11px; width:8px; height:8px; border-radius:50%; background:var(--primary)}
.seo-result{margin-top:35px; display:flex; align-items:flex-start; gap:18px; padding:28px; border-radius:20px; background:#f6fff7; border:1px solid #d9f4df}
.seo-result svg{width:28px; height:28px; color:#17a857; flex-shrink:0; margin-top:2px}
.seo-result strong{line-height:1.8; color:#17683c; font-weight:600}
@media (max-width:1200px){
    .seo-main{grid-template-columns:1fr}
}
@media (max-width:992px){
    .seo-grid{grid-template-columns:repeat(2,1fr)}
    .seo-list{grid-template-columns:1fr}
    .seo-warning{grid-template-columns:1fr; text-align:center}
    .seo-warning-icon{margin:0 auto}
    .seo-result{text-align:left}
}
@media (max-width:768px){
    .seo-content{padding:35px 28px}
    .seo-content h3{font-size:28px}
    .seo-warning{padding:30px}
    .seo-warning-content h3{font-size:25px}
    .seo-extra{padding:22px}
    .seo-extra ul{grid-template-columns:1fr}
}
@media (max-width:576px){.seo-grid{grid-template-columns:1fr}
    .seo-card{padding:28px 24px}
    .seo-content{padding:28px 22px}
    .seo-content h3{font-size:24px}
    .seo-warning{padding:24px}
    .seo-warning-content h3{font-size:22px}
    .seo-result{flex-direction:column; align-items:flex-start}
}
/* FAQ */
.faq-wrapper{display:grid; grid-template-columns:340px 1fr; gap:50px; align-items:start}
.faq-info{position:sticky; top:110px; padding:40px; border-radius:22px; background:#fff; box-shadow:0 10px 35px rgba(0,0,0,.05)}
.faq-info h3{margin-bottom:18px; font-size:32px}
.faq-info p{color:#666; line-height:1.8; margin-bottom:30px}
.faq-list{display:flex; flex-direction:column; gap:18px}
.faq-item{background:#fff; border-radius:18px; border:1px solid #f2f2f2; overflow:hidden; transition:.4s}
.faq-item:hover{box-shadow:0 10px 30px rgba(0,0,0,.05)}
.faq-question{width:100%; display:flex; justify-content:space-between; align-items:flex-start; gap:16px; padding:24px 28px; border:none; background:none; cursor:pointer; font-size:18px; font-weight:700; text-align:left}
.faq-question span{flex:1}
.faq-question svg{flex-shrink:0; margin-top:3px}
.faq-answer{max-height:0; overflow:hidden; transition:.45s; padding:0 28px; color:#666; line-height:1.8}
.faq-item.active .faq-answer{max-height:1000px; padding:0 28px 24px}
.faq-item.active .faq-question svg{transform:rotate(45deg)}
@media (max-width:992px){
    .faq-wrapper{grid-template-columns:1fr; gap:35px}
    .faq-info{position:static; top:auto; padding:30px}
}
@media (max-width:576px){
    .faq-question{padding:20px; font-size:17px}
    .faq-answer{padding:0 20px}
    .faq-item.active .faq-answer{padding:0 20px 20px}
}
@media screen and (max-width:992px){
    .faq-wrapper{display:block !important}
    .faq-info{position:relative !important; width:100%; margin-bottom:30px}
    .faq-list{width:100%}
}
/* CTA */
.cta-box{position:relative; overflow:hidden; display:grid; grid-template-columns:2fr 1fr; gap:50px; padding:70px; border-radius:32px; background:#fff; border:1px solid #f2f2f2; box-shadow:  0 20px 60px rgba(0,0,0,.06)}
.cta-box::before{content:""; position:absolute; top:-200px; right:-200px; width:420px; height:420px; border-radius:50%; background:  radial-gradient(circle,  rgba(227,6,19,.08),  transparent 70%)}
.cta-content{position:relative; z-index:2}
.cta-content h2{margin:20px 0; font-size:clamp(2.2rem,5vw,3.5rem); line-height:1.15}
.cta-content h2 span{color:var(--primary)}
.cta-content p{max-width:650px; margin-bottom:35px; font-size:1.1rem; line-height:1.8; color:#666}
.cta-buttons{display:flex; gap:18px; flex-wrap:wrap}
.cta-info{display:flex; flex-direction:column; justify-content:center; gap:24px}
.contact-item{display:flex; gap:18px; align-items:center}
.contact-item svg{width:50px; height:50px; padding:12px; border-radius:14px; color:var(--primary); background:rgba(227,6,19,.08)}
.contact-item strong{display:block; margin-bottom:5px; font-size:18px}
.contact-item span{color:#777; font-size:.95rem}
@media(max-width:992px){
    .cta-box{grid-template-columns:1fr; padding:50px 35px}
}
@media(max-width:600px){
    .cta-box{padding:35px 25px}
}
/* FOOTER */
.footer{padding:20px 0 35px}
.footer-line{width:100%; height:1px; margin-bottom:25px; background:linear-gradient(  90deg,  transparent 0%,  #ececec 20%,  #ececec 80%,  transparent 100% )}
.footer-bottom{display:flex; justify-content:center; align-items:center}
.footer-bottom p{margin:0; font-size:.95rem; color:#888; text-align:center; line-height:1.6}
/* 404 */
.error-page{min-height:100vh; display:flex; align-items:center; justify-content:center; padding:60px 20px; background: radial-gradient(circle at top,#fff4f4 0%,#ffffff 60%)}
.error-box{max-width:760px; margin:auto; text-align:center; background:#fff; border:1px solid #f0f0f0; border-radius:28px; padding:70px 50px; box-shadow:0 20px 60px rgba(0,0,0,.06); position:relative; overflow:hidden}
.error-box::before{content:""; position:absolute; left:0; top:0; width:100%; height:5px; background:var(--primary)}
.error-code{font-size:130px; font-weight:900; line-height:1; color:var(--primary); margin-bottom:20px; letter-spacing:-4px}
.error-box .badge{margin-bottom:20px}
.error-box h1{font-size:42px; margin-bottom:20px; color:var(--black)}
.error-box p{max-width:520px; margin:0 auto 35px; line-height:1.8; color:var(--text); font-size:18px}
.error-buttons{display:flex; justify-content:center; gap:16px; flex-wrap:wrap}
.error-buttons .btn{min-width:220px}
@media(max-width:768px){
    .error-box{padding:50px 30px}
    .error-code{font-size:95px}
    .error-box h1{font-size:32px}
}
@media(max-width:576px){
    .error-box{padding:40px 24px}
    .error-code{font-size:78px}
    .error-buttons{flex-direction:column}
    .error-buttons .btn{width:100%}
}
