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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #070707;
  --bg-2: #0e0e0e;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 223, 100, 0.12);
  --border-2: rgba(255, 223, 100, 0.22);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --muted-2: #8a8a8a;
  --accent: #ffdf64;
  --accent-2: #ffe88a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(1200px 900px at 20% -10%, rgba(255, 223, 100, 0.06) 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(255, 223, 100, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #050505 0%, var(--bg) 40%, #050505 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 223, 100, 0.35);
  border-radius: 12px;
  padding: 2px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.logo-badge img {
  display: block;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 223, 100, 0.1);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 42px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.82);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffdf64;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffdf64;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffdf64;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(900px 650px at 20% 30%, rgba(255, 223, 100, 0.10) 0%, transparent 60%),
    radial-gradient(700px 520px at 80% 20%, rgba(255, 223, 100, 0.06) 0%, transparent 58%),
    linear-gradient(135deg, #070707 0%, #131308 45%, #070707 100%);
  overflow: hidden;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 50% 0%, rgba(255, 223, 100, 0.12) 0%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 85%);
  z-index: 1;
  pointer-events: none;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 223, 100, 0.045) 0%, transparent 62%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(2%, -2%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  width: 108px;
  height: 108px;
  border-radius: 16px;
  box-shadow: none;
}

.hero-badge {
  padding: 0px;
  border-radius: 16px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #070707;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 34px rgba(255, 223, 100, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffe88a 0%, #fff0b1 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255, 223, 100, 0.28);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.9);
  border: 1px solid rgba(255, 223, 100, 0.22);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 100, 0.34);
  background: rgba(255, 223, 100, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: rgba(245, 245, 245, 0.62);
  font-size: 1.05rem;
  margin-bottom: 56px;
  font-weight: 300;
}

#services {
  padding: 100px 0;
  background: radial-gradient(900px 600px at 15% 0%, rgba(255, 223, 100, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, #0b0b0b 100%);
}

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

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 223, 100, 0.11);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(255, 223, 100, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 223, 100, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: rgba(255, 223, 100, 0.95);
  background: rgba(255, 223, 100, 0.08);
  border: 1px solid rgba(255, 223, 100, 0.09);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.6;
}

#founders {
  padding: 100px 0;
  background: radial-gradient(1000px 700px at 50% 10%, rgba(255, 223, 100, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 223, 100, 0.055) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 223, 100, 0.14);
  border-radius: 20px;
  padding: 56px 36px 44px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 360px at 50% 0%, rgba(255, 223, 100, 0.22) 0%, transparent 60%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.founder-card > * {
  position: relative;
  z-index: 1;
}

.founder-card:hover {
  border-color: rgba(255, 223, 100, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
}

.founder-img-wrapper {
  position: relative;
  width: 290px;
  height: 350px;
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 100, 0.22);
  background: radial-gradient(420px 260px at 50% 15%, rgba(255, 223, 100, 0.22) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0.18) 100%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 6px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
  transform: translateY(2px);
  transition: transform 0.35s ease;
}

.founder-card:hover .founder-img-wrapper img {
  transform: translateY(0px) scale(1.03);
}

.founder-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-role {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.founder-card p {
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.64);
  line-height: 1.6;
}

#gallery {
  padding: 100px 0;
  background: radial-gradient(900px 600px at 85% 0%, rgba(255, 223, 100, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 223, 100, 0.08);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

#contact {
  padding: 100px 0;
  background: radial-gradient(1100px 740px at 20% 0%, rgba(255, 223, 100, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 223, 100, 0.075);
  border-radius: 12px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.62);
}

.contact-item a {
  color: #ffdf64;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffe88a;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 100, 0.08);
}

footer {
  background: #060606;
  border-top: 1px solid rgba(255, 223, 100, 0.08);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 2px;
}

.footer-brand p {
  color: #777;
  font-size: 0.92rem;
}

.footer-links h4,
.footer-contact-info h4 {
  color: #ffdf64;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffdf64;
}

.footer-contact-info p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-contact-info a {
  color: #ffdf64;
  transition: color 0.3s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #555;
  font-size: 0.85rem;
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 223, 100, 0.08);
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-logo {
    width: 88px;
    height: 88px;
  }

  .hero-badge {
    padding: 1px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-img-wrapper {
    width: 250px;
    height: 310px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}
