:root {
  --color-orange: #F97316;
  --color-pink: #EC4899;
  --color-purple: #8B5CF6;
  --color-dark: #1F2937;
  --color-text: #374151;
  --color-muted: #6B7280;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F9FAFB;
  --color-border: #E5E7EB;
  --gradient-hero: linear-gradient(135deg, #F97316 0%, #EC4899 50%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(90deg, #F97316, #EC4899, #8B5CF6);
  --shadow-card: 0 10px 25px -5px rgba(139, 92, 246, 0.15), 0 8px 10px -6px rgba(236, 72, 153, 0.10);
  --shadow-hover: 0 20px 40px -10px rgba(139, 92, 246, 0.30), 0 15px 20px -10px rgba(236, 72, 153, 0.20);
  --shadow-header: 0 4px 20px rgba(139, 92, 246, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-base: 0.3s ease;
  --transition-transform: transform 0.3s ease, box-shadow 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--color-purple);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover { color: var(--color-pink); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

ul, ol { list-style: none; }

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-header);
}

.top-bar {
  background: var(--color-dark);
  color: #fff;
  font-size: 0.875rem;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-info, .top-bar-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity var(--transition-base);
}

.top-bar a:hover { opacity: 0.8; color: #fff; }

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-hero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.nav-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.nav-link.active, .nav-link[aria-current="page"] {
  border-color: var(--color-purple);
  color: var(--color-purple);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-dark);
  transition: all var(--transition-base);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: var(--gradient-hero);
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 6rem 1.5rem 8rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background-color: var(--color-bg-alt);
  max-width: 100%;
}

.section-alt .section {
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 1rem auto 0;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-transform);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.card h3 { margin-bottom: 1rem; }

.card p { color: var(--color-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border: 3px solid var(--color-dark);
  background: var(--color-dark);
  color: #fff;
  cursor: pointer;
  transition: var(--transition-transform);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background: var(--color-dark);
  color: #fff;
}

.btn-primary {
  background: var(--gradient-accent);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--color-purple);
  color: var(--color-purple);
}

.btn-outline:hover {
  background: var(--color-purple);
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-light {
  background: rgba(255,255,255,0.1);
  border: 3px solid #fff;
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-light:hover {
  background: #fff;
  color: var(--color-purple);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-split img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.contact-block {
  background: var(--color-bg);
  padding: 3rem;
  border-radius: 16px;
  border-left: 6px solid var(--color-orange);
  box-shadow: var(--shadow-card);
}

.contact-block h3 {
  margin-bottom: 1.5rem;
  color: var(--color-purple);
}

address.nap {
  font-style: normal;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-text);
}

address.nap strong {
  font-family: var(--font-heading);
  color: var(--color-dark);
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .top-bar-info, .top-bar-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-toggle { display: flex; }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0