:root {
--orange: #ff6a21;
--orange-dark: #d94d10;
--whatsapp: #25d366;
--whatsapp-dark: #1da851;
--black: #111111;
--dark: #1d1d1d;
--gray: #666666;
--muted: #8a8a8a;
--light: #f7f2ed;
--cream: #fff8f2;
--white: #ffffff;
--border: #eadfd4;
--shadow: 0 24px 60px rgba(17, 17, 17, 0.13);
--soft-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: var(--black);
background: var(--white);
line-height: 1.55;
}

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

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

.site-header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(255, 255, 255, 0.92);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(14px);
}

.header-inner {
min-height: 78px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.logo img {
display: block;
width: 172px;
height: auto;
}

.header-actions {
display: flex;
align-items: center;
gap: 28px;
}

.header-link {
color: var(--gray);
font-size: 15px;
font-weight: 700;
}

.header-phone {
color: var(--black);
font-size: 15px;
font-weight: 800;
white-space: nowrap;
}

.header-link:hover,
.header-phone:hover,
.contact-row a:hover,
.big-links a:hover {
color: var(--orange);
}

.hero {
position: relative;
overflow: hidden;
padding: 86px 0 96px;
background:
radial-gradient(circle at 82% 12%, rgba(255, 106, 33, 0.22), transparent 28%),
linear-gradient(135deg, #ffffff 0%, #fff8f2 48%, #f5eee6 100%);
}

.hero-decor {
position: absolute;
pointer-events: none;
border-radius: 999px;
}

.hero-decor-one {
right: -150px;
bottom: -180px;
width: 460px;
height: 460px;
background: rgba(255, 106, 33, 0.13);
}

.hero-decor-two {
right: 18%;
top: 120px;
width: 130px;
height: 130px;
background: rgba(255, 106, 33, 0.08);
filter: blur(2px);
}

.hero-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
gap: 64px;
align-items: center;
}

.hero-content {
max-width: 760px;
}

.eyebrow,
.card-label,
.section-kicker,
.info-card span {
color: var(--orange);
font-size: 12px;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
}

h1,
h2,
h3 {
margin: 0;
line-height: 1.08;
letter-spacing: -0.045em;
}

h1 {
max-width: 760px;
margin-top: 18px;
font-size: clamp(48px, 6.4vw, 82px);
}

h2 {
font-size: clamp(34px, 4vw, 52px);
}

h3 {
font-size: 24px;
}

.hero-text {
max-width: 650px;
margin: 26px 0 0;
color: var(--dark);
font-size: 19px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 36px;
}

.btn {
display: inline-flex;
min-height: 54px;
align-items: center;
justify-content: center;
padding: 0 24px;
border-radius: 999px;
font-weight: 900;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
color: var(--white);
background: var(--orange);
box-shadow: 0 14px 28px rgba(255, 106, 33, 0.28);
}

.btn-primary:hover {
background: var(--orange-dark);
}

.btn-whatsapp {
color: var(--white);
background: var(--whatsapp);
box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

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

.btn-secondary {
color: var(--black);
background: rgba(255, 255, 255, 0.72);
border: 1px solid var(--border);
}

.btn-secondary:hover {
border-color: rgba(255, 106, 33, 0.45);
}

.hero-points {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
max-width: 760px;
margin-top: 44px;
}

.point {
min-height: 118px;
padding: 18px;
border: 1px solid rgba(234, 223, 212, 0.9);
border-radius: 24px;
background: rgba(255, 255, 255, 0.55);
box-shadow: 0 16px 34px rgba(17, 17, 17, 0.04);
}

.point span {
display: block;
margin-bottom: 12px;
color: var(--orange);
font-size: 13px;
font-weight: 900;
}

.point p {
margin: 0;
color: var(--dark);
font-size: 15px;
font-weight: 700;
}

.contact-card {
width: 100%;
padding: 38px;
border-radius: 36px;
background:
radial-gradient(circle at 92% 10%, rgba(255, 106, 33, 0.22), transparent 22%),
var(--black);
color: var(--white);
box-shadow: var(--shadow);
}

.contact-card h2 {
margin-top: 12px;
margin-bottom: 30px;
}

.contact-row {
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-row span {
display: block;
margin-bottom: 7px;
color: rgba(255, 255, 255, 0.62);
font-size: 14px;
}

.contact-row a,
.contact-row p {
margin: 0;
color: var(--white);
font-size: 18px;
font-weight: 800;
overflow-wrap: anywhere;
}

.info-section {
padding: 76px 0;
background: var(--white);
}

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

.info-card {
min-height: 230px;
padding: 30px;
border: 1px solid var(--border);
border-radius: 30px;
background: var(--white);
box-shadow: var(--soft-shadow);
}

.info-card h3 {
margin-top: 14px;
}

.info-card p {
margin: 16px 0 0;
color: var(--gray);
font-size: 16px;
}

.contacts-section {
padding: 88px 0;
background: var(--light);
}

.contacts-panel {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
gap: 44px;
align-items: center;
padding: 46px;
border: 1px solid var(--border);
border-radius: 36px;
background:
radial-gradient(circle at 100% 0%, rgba(255, 106, 33, 0.12), transparent 32%),
var(--white);
box-shadow: var(--soft-shadow);
}

.contacts-copy h2 {
margin-top: 14px;
}

.contacts-copy p {
max-width: 680px;
margin: 20px 0 0;
color: var(--gray);
font-size: 18px;
}

.big-links {
display: grid;
gap: 14px;
}

.big-links a {
display: block;
padding: 18px 20px;
border: 1px solid #ffe0cf;
border-radius: 22px;
background: #fff6ef;
color: var(--black);
font-size: 22px;
font-weight: 900;
overflow-wrap: anywhere;
}

.big-links a.whatsapp-link {
border-color: rgba(37, 211, 102, 0.28);
background: rgba(37, 211, 102, 0.10);
}

.site-footer {
padding: 34px 0;
background: var(--black);
color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.footer-brand {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--white);
font-size: 30px;
line-height: 1;
font-weight: 900;
letter-spacing: -0.055em;
}

.footer-brand i {
display: block;
width: 18px;
height: 18px;
border-radius: 4px;
background: var(--orange);
transform: rotate(12deg);
}

.footer-inner p {
margin: 0;
text-align: right;
}

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

.contact-card {
max-width: 760px;
}

.hero-points,
.info-grid {
grid-template-columns: 1fr;
}

.point {
min-height: auto;
}

.contacts-panel {
grid-template-columns: 1fr;
}
}

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

.header-inner {
min-height: auto;
padding: 16px 0;
align-items: flex-start;
flex-direction: column;
}

.header-actions {
width: 100%;
justify-content: space-between;
gap: 16px;
}

.logo img {
width: 148px;
}

.hero {
padding: 58px 0 66px;
}

h1 {
font-size: clamp(42px, 13vw, 58px);
}

h2 {
font-size: clamp(32px, 10vw, 44px);
}

.hero-text,
.contacts-copy p {
font-size: 17px;
}

.hero-actions {
flex-direction: column;
}

.btn {
width: 100%;
}

.contact-card,
.contacts-panel,
.info-card {
padding: 26px;
border-radius: 26px;
}

.big-links a {
font-size: 18px;
}

.footer-inner {
align-items: flex-start;
flex-direction: column;
}

.footer-inner p {
text-align: left;
}
}
