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

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #ffffff;
color: #111111;
}

/* =========================
HERO
========================= */

.hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 650px;
overflow: hidden;
color: white;
}

.hero-video {
position: absolute;
inset: 0;


width: 100%;
height: 100%;

object-fit: cover;


}

.hero-overlay {
position: absolute;
inset: 0;


background:
    linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.2) 100%
    );


}

/* =========================
NAVBAR
========================= */

.navbar {
position: absolute;
top: 0;
left: 0;


width: 100%;

display: flex;
align-items: center;
justify-content: space-between;

padding: 30px 6vw;

z-index: 10;


}

.logo {
font-size: 1.6rem;
font-weight: 800;
letter-spacing: 0.08em;
}

.logo span {
font-weight: 400;
}

.navbar nav a {
color: white;
text-decoration: none;


font-size: 0.95rem;
font-weight: 600;

padding: 12px 22px;

border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 100px;

transition: all 0.2s ease;


}

.navbar nav a:hover {
background: white;
color: #111111;
}

/* =========================
HERO CONTENT
========================= */

.hero-content {
position: relative;
z-index: 2;


height: 100%;

max-width: 1200px;
margin: 0 auto;

padding: 0 6vw;

display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;


}

.hero-badge {
display: inline-block;


margin-bottom: 22px;

padding: 8px 14px;

border: 1px solid rgba(255, 255, 255, 0.45);
border-radius: 100px;

background: rgba(255, 255, 255, 0.08);

backdrop-filter: blur(8px);

font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.18em;


}

.hero-content h1 {
font-size: clamp(3.5rem, 7vw, 7rem);
line-height: 0.95;


font-weight: 800;
letter-spacing: -0.05em;

max-width: 900px;


}

.hero-content h1 span {
font-weight: 300;
}

.hero-content p {
margin-top: 30px;


font-size: clamp(1rem, 1.5vw, 1.25rem);
line-height: 1.6;

color: rgba(255, 255, 255, 0.9);


}

/* =========================
BUTTONS
========================= */

.hero-actions {
display: flex;
align-items: center;
gap: 25px;


margin-top: 35px;


}

.primary-button {
display: inline-flex;
align-items: center;
justify-content: center;


padding: 16px 30px;

background: white;
color: #111111;

border-radius: 100px;

text-decoration: none;

font-weight: 700;

transition:
    transform 0.2s ease,
    background 0.2s ease;


}

.primary-button:hover {
transform: translateY(-2px);
background: #eeeeee;
}

.phone-link {
color: white;


text-decoration: none;

font-size: 1rem;
font-weight: 600;

border-bottom: 1px solid rgba(255, 255, 255, 0.5);

padding-bottom: 4px;

transition: border-color 0.2s ease;


}

.phone-link:hover {
border-color: white;
}

/* =========================
SCROLL INDICATOR
========================= */

.scroll-indicator {
position: absolute;


bottom: 35px;
left: 50%;

transform: translateX(-50%);

z-index: 3;

text-align: center;

opacity: 0.7;


}

.scroll-indicator span {
display: block;


width: 1px;
height: 35px;

margin: 0 auto 10px;

background: white;


}

.scroll-indicator p {
font-size: 0.7rem;
letter-spacing: 0.12em;
text-transform: uppercase;
}

/* =========================
CONTACT
========================= */

.contact-section {
min-height: 70vh;


display: flex;
align-items: center;
justify-content: center;

padding: 100px 30px;

background: #f5f6f7;

text-align: center;


}

.contact-content {
max-width: 700px;
}

.section-label {
margin-bottom: 20px;


font-size: 0.75rem;
font-weight: 700;

letter-spacing: 0.2em;


}

.contact-content h2 {
font-size: clamp(3rem, 6vw, 5.5rem);
line-height: 0.95;


letter-spacing: -0.05em;


}

.contact-content h2 span {
font-weight: 300;
}

.contact-content > p:not(.section-label) {
margin: 30px auto;


max-width: 500px;

color: #555555;

font-size: 1.1rem;
line-height: 1.6;


}

.contact-button {
display: inline-block;


padding: 16px 32px;

border-radius: 100px;

background: #111111;
color: white;

text-decoration: none;

font-weight: 700;

transition: transform 0.2s ease;


}

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

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {


.navbar {
    padding: 25px;
}

.navbar nav {
    display: none;
}

.hero-content {
    padding: 0 25px;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
}

.hero-content p br {
    display: none;
}

.hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.scroll-indicator {
    display: none;
}


}
