:root {
  --black: #0D0D0D;
  --dark: #111111;
  --gray: #1E1E1E;
  --white: #F5F5F5;
  --muted: rgba(245,245,245,0.68);
  --sand: #C2B59B;
  --olive: #556B52;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13,13,13,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--sand);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--sand);
  color: var(--black);
  width: 300px;
justify-content: center;
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  width: 300px;
justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(85,107,82,0.35), transparent 35%),
    radial-gradient(circle at bottom left, rgba(194,181,155,0.16), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 14px;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -4px;
  max-width: 850px;
  margin-bottom: 28px;
}

.hero p {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-card {
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.brand-inner {
  height: 100%;
  border-radius: 26px;
  background: var(--dark);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-logo {
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 900;
  letter-spacing: -4px;
}

.brand-logo span {
  color: var(--sand);
}

.brand-sub {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 26px;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.55em;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.brand-kicker {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  margin-bottom: 12px;
}

.brand-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.strip {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 20px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 15px;
}

section {
  padding: 95px 0;
}

.section-label {
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -2px;
  max-width: 740px;
  margin-bottom: 44px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 32px;
  min-height: 260px;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.card p,
.audience-card p,
.process-card p {
  color: var(--muted);
}

.dark-section {
  background: var(--dark);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 26px;
  padding: 28px;
}

.number {
  color: rgba(255,255,255,0.38);
  margin-bottom: 38px;
  font-size: 14px;
}

.check {
  color: var(--sand);
  font-size: 28px;
  margin-bottom: 14px;
}

.cta-box {
  background: var(--sand);
  color: var(--black);
  border-radius: 34px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 20px;
}

.cta-box p {
  color: rgba(0,0,0,0.68);
  font-size: 18px;
  max-width: 720px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  width: fit-content;
  justify-self: end;
}

.btn-dark:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

footer p,
footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--white);
}

.contact {
  text-align: right;
  display: grid;
  gap: 6px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 78px 0;
  }

  .hero-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -2px;
  }

  .cards,
  .audience-grid,
  .process-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .btn-dark {
    justify-self: start;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact {
    text-align: left;
  }

  .brand-card {
    max-width: 460px;
  }
}
.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF0000;
    color: white;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,0,0,0.25);
    width: 300px;
    justify-content: center
}

.youtube-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}
.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-radius: 999px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.25);
    width: 300px;
    justify-content: center;
}

.instagram-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.tiktok-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-radius: 999px;
    transition: 0.3s ease;
    box-shadow: 
        -3px 0 12px rgba(0, 255, 255, 0.4),
         3px 0 12px rgba(255, 0, 128, 0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.tiktok-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        -5px 0 18px rgba(0, 255, 255, 0.6),
         5px 0 18px rgba(255, 0, 128, 0.6);
}
.contact-button,
.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 58px;
    border-radius: 999px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-top: 14px;
}

.contact-button {
    background: linear-gradient(135deg, #C2B59B, #a89677);
    color: #111111;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(194,181,155,0.25);
}

.contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.phone-button {
    background: linear-gradient(135deg, #C2B59B, #a89677);
    color: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: default;
}
.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-button i {
    color: #111111;
    margin-right: 10px;
    font-size: 18px;
}
.phone-button i {
    color: #111111;
    margin-right: 10px;
}