:root {
--dark: #0f0f10;
--dark-2: #17181b;
--white: #ffffff;
--text: #151515;
--gray: #6f7682;
--line: #e7e7ea;
--gold: #d7a928;
--gold-dark: #ba8f1d;
--green: #25D366;
--green-dark: #1faa53;
--shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
--radius: 18px;
--container: 1180px;
--nav-height: 82px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, sans-serif;
background: #fff;
color: var(--text);
line-height: 1.5;
}

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

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

.container {
width: min(100% - 32px, var(--container));
margin: 0 auto;
}

.topbar {
background: #0b0b0c;
color: #fff;
font-size: 14px;
padding: 10px 0;
}

.topbar-content {
display: flex;
justify-content: center;
gap: 24px;
flex-wrap: wrap;
}

.navbar {
position: sticky;
top: 0;
z-index: 999;
background: rgba(255, 255, 255, 0.94);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-content {
min-height: var(--nav-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.logo {
font-size: 24px;
font-weight: 900;
color: #111;
}

.logo span {
color: var(--gold);
}

.nav-links {
display: flex;
gap: 22px;
align-items: center;
}

.nav-links a {
font-weight: 700;
color: #222;
transition: 0.2s ease;
}

.nav-links a:hover {
color: var(--gold-dark);
}

.menu-toggle {
display: none;
border: none;
background: #111;
color: #fff;
width: 44px;
height: 44px;
border-radius: 12px;
font-size: 20px;
cursor: pointer;
}

.hero {
position: relative;
min-height: calc(100vh - var(--nav-height));
display: flex;
align-items: center;
background:
linear-gradient(rgba(8, 8, 10, 0.7), rgba(8, 8, 10, 0.7)),
url("https://images.unsplash.com/photo-1609205807107-e8ec2120f9de?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
color: #fff;
overflow: hidden;
}

.overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at top right, rgba(215, 169, 40, 0.18), transparent 30%);
}

.hero-content {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 32px;
align-items: center;
padding: 80px 0;
}

.badge,
.section-tag {
display: inline-block;
background: rgba(255, 255, 255, 0.12);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 10px 14px;
border-radius: 999px;
font-size: 14px;
margin-bottom: 18px;
font-weight: 700;
}

.section-tag {
background: rgba(215, 169, 40, 0.14);
color: var(--gold-dark);
border: 1px solid rgba(215, 169, 40, 0.22);
}

.hero h1 {
font-size: clamp(42px, 5vw, 72px);
line-height: 1;
margin: 0 0 18px;
}

.hero p {
font-size: 18px;
max-width: 720px;
color: #dde1e8;
margin-bottom: 24px;
}

.hero-buttons,
.coverage-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.btn {
padding: 15px 24px;
border-radius: 14px;
font-weight: 800;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: 0.2s ease;
}

.btn:hover {
transform: translateY(-2px);
}

.btn-call,
.btn-primary {
background: var(--gold);
color: #111;
}

.btn-call:hover,
.btn-primary:hover {
background: var(--gold-dark);
}

.btn-wa {
background: var(--green);
color: #fff;
}

.btn-wa:hover {
background: var(--green-dark);
}

.full {
width: 100%;
}

.hero-stats {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 26px;
}

.stat {
background: rgba(255, 255, 255, 0.08);
padding: 14px 18px;
border-radius: 16px;
min-width: 120px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat span {
color: #d8dee7;
font-size: 14px;
}

.hero-card {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
padding: 28px;
border-radius: 24px;
box-shadow: var(--shadow);
backdrop-filter: blur(14px);
}

.hero-card h3 {
margin-top: 0;
font-size: 28px;
}

.hero-card p {
font-size: 15px;
margin-bottom: 20px;
}

.hero-card ul {
list-style: none;
padding: 0;
margin: 0 0 20px;
display: grid;
gap: 12px;
}

.section {
padding: 84px 0;
}

.dark {
background: var(--dark);
color: #fff;
}

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

.section-header h2 {
font-size: clamp(32px, 4vw, 52px);
line-height: 1.05;
margin: 0 0 14px;
}

.section-header p {
color: var(--gray);
font-size: 17px;
}

.dark .section-header p {
color: #c7ced9;
}

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

.service-card,
.review-card,
.contact-card,
.contact-form,
.coverage-box {
background: #fff;
color: var(--text);
border-radius: 22px;
padding: 24px;
box-shadow: var(--shadow);
border: 1px solid var(--line);
}

.service-card {
transition: 0.25s ease;
}

.service-card:hover {
transform: translateY(-4px);
}

.service-icon {
font-size: 34px;
margin-bottom: 16px;
}

.service-card h3,
.review-card strong {
margin: 0 0 10px;
}

.service-card p,
.review-card p {
color: var(--gray);
margin: 0;
}

.review-stars {
color: #ffcf4d;
font-size: 20px;
margin-bottom: 12px;
}

.coverage-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
align-items: center;
}

.coverage-text h2 {
font-size: clamp(32px, 4vw, 50px);
line-height: 1.05;
margin: 0 0 12px;
}

.coverage-text p {
color: var(--gray);
font-size: 17px;
}

.coverage-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 22px 0;
}

.coverage-tags span {
background: #f5f6f8;
border: 1px solid var(--line);
border-radius: 999px;
padding: 10px 14px;
font-weight: 700;
}

.coverage-placeholder {
min-height: 360px;
border-radius: 18px;
background:
linear-gradient(rgba(10, 10, 10, 0.16), rgba(10, 10, 10, 0.16)),
url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 22px;
font-weight: 800;
}

.faq-list {
display: grid;
gap: 16px;
}

.faq-item {
background: #fff;
border-radius: 18px;
border: 1px solid var(--line);
overflow: hidden;
box-shadow: var(--shadow);
}

.faq-question {
width: 100%;
border: none;
background: #fff;
padding: 20px 22px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 18px;
font-weight: 800;
cursor: pointer;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 22px;
}

.faq-answer p {
color: var(--gray);
margin: 0 0 20px;
}

.faq-item.active .faq-answer {
max-height: 200px;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.contact-info h2 {
font-size: clamp(32px, 4vw, 50px);
line-height: 1.05;
margin: 0 0 12px;
}

.contact-info p {
color: #c7ced9;
font-size: 17px;
}

.contact-cards {
display: grid;
gap: 14px;
margin-top: 24px;
}

.contact-card {
display: flex;
gap: 14px;
align-items: center;
}

.contact-card span {
font-size: 28px;
}

.contact-card strong {
display: block;
}

.contact-card p {
margin: 0;
color: var(--gray);
}

.contact-card.static {
cursor: default;
}

.contact-form h3 {
margin-top: 0;
font-size: 30px;
}

.form-group {
display: grid;
gap: 8px;
margin-bottom: 16px;
}

.form-group label {
font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 14px 16px;
border-radius: 14px;
border: 1px solid var(--line);
font: inherit;
outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--gold);
box-shadow: 0 0 0 4px rgba(215, 169, 40, 0.14);
}

.footer {
background: #0b0c0f;
color: #fff;
padding: 48px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr;
gap: 20px;
margin-bottom: 24px;
}

.footer h3,
.footer h4 {
margin-top: 0;
}

.footer p,
.footer a {
color: #c7ced9;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 18px;
text-align: center;
color: #c7ced9;
}

.floating-wa {
position: fixed;
right: 18px;
bottom: 18px;
width: 60px;
height: 60px;
background: var(--green);
color: #fff;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 26px;
box-shadow: 0 18px 32px rgba(0,0,0,0.2);
z-index: 999;
}

.reveal {
opacity: 0;
transform: translateY(30px);
transition: 0.7s ease;
}

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

@media (max-width: 1024px) {
.hero-content,
.coverage-content,
.contact-grid,
.footer-content,
.services-grid,
.reviews-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.nav-links {
position: absolute;
top: var(--nav-height);
left: 0;
right: 0;
background: #fff;
flex-direction: column;
gap: 0;
display: none;
border-bottom: 1px solid var(--line);
}

.nav-links a {
padding: 16px 24px;
border-bottom: 1px solid var(--line);
}

.nav-links.active {
display: flex;
}

.menu-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
}

.hero-buttons,
.coverage-buttons {
flex-direction: column;
}

.btn {
width: 100%;
}

.topbar-content {
gap: 12px;
font-size: 13px;
}
}
