:root {
  --primary: #FF2A75;
  --primary-hover: #E01E62;
  --secondary: #FFD500;
  --secondary-hover: #E6C000;
  --accent: #00F0FF;
  --text-main: #111827;
  --text-muted: #4B5563;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --bg-dark: #1F2937;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(255, 42, 117, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 42, 117, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-main);
  box-shadow: 0 4px 6px rgba(255, 213, 0, 0.25);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 213, 0, 0.3);
}

/* Header */
.header {
  padding: 20px 0;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

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

.nav-links a {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-actions {
    display: none;
  }
}

/* Sections Common */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.75);
  z-index: 1;
}

.hero-floating-candies {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://raw.githubusercontent.com/revmedia046/images-lib/main/reelrush/floating-candies.png');
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  animation: float-candies 8s ease-in-out infinite;
}

@keyframes float-candies {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-content h1 .highlight-text {
  background: linear-gradient(180deg, var(--secondary) 0%, #FF8A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 72px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  padding-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-large {
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  background-color: #FFB7D5;
  color: #8C0040;
  box-shadow: 0 0 20px rgba(255, 183, 213, 0.5), inset 0 -3px 0 rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-large:hover {
  background-color: #FFA3C8;
  color: #7A0037;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 183, 213, 0.8), inset 0 -3px 0 rgba(0,0,0,0.15);
}

.hero-disclaimer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  flex-wrap: wrap;
  letter-spacing: 1px;
}

/* Partners Section */
.partners {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid #E5E7EB;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.partners-grid img {
  height: 40px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partners-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Company Intro */
.company-intro {
  background-color: var(--bg-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image img {
  border-radius: var(--border-radius);
  box-shadow: -15px 15px 0px var(--secondary);
}

.intro-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.intro-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Process Section */
.process {
  background-color: var(--bg-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-card {
  text-align: center;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-number {
  width: 64px;
  height: 64px;
  background-color: var(--secondary);
  color: var(--text-main);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.process-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

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

/* Benefits Section */
.benefits {
  background-color: var(--bg-dark);
  color: var(--bg-white);
}

.benefits .section-header p {
  color: #9CA3AF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #9CA3AF;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A00 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-section .btn {
  background-color: var(--bg-white);
  color: var(--primary);
  font-size: 18px;
  padding: 16px 40px;
}

.cta-section .btn:hover {
  background-color: var(--secondary);
  color: var(--text-main);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-desc {
  color: #9CA3AF;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  color: #9CA3AF;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9CA3AF;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container, .intro-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .intro-image img {
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
