:root {
  --primary: #6366F1;
  --secondary: #A855F7;
  --accent: #10B981;
  --bg-deep: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --glass: rgba(0, 0, 0, 0.03);
  --border: rgba(0, 0, 0, 0.1);
  --font-main: 'Outfit', sans-serif;
  --gradient-main: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 10rem 0;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

/* Logo Component Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-icon-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: -6px;
    background: radial-gradient(circle, var(--primary), var(--secondary));
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.2;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.logo-container:hover .logo-glow {
    opacity: 0.7;
    filter: blur(25px);
}

.logo-icon-box {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #5B5F97 0%, #3D4178 100%);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@media (min-width: 1024px) {
    .logo-icon-box {
        width: 80px; /* Base size */
        height: 80px;
        padding: 16px; /* Critical padding for white lining */
    }
}

.logo-container:hover .logo-icon-box {
    transform: scale(1.1) rotate(1deg);
}

.logo-icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); /* Highlight white lines */
}

.logo-text-group {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.025em;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(31, 41, 55, 0.5);
    margin-top: 4px;
    display: block;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}


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

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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




/* Buttons */
.cta-button {
  padding: 1rem 2.4rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-4px);
}

.cta-button.primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-button.primary:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.cta-button.glass {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.cta-button.glass:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}


/* Hero Section */
.hero {
  padding: 14rem 0 10rem;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 6rem;
}

.hero-visuals {
  margin-top: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mockup-main {
  width: 70%;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 0.8rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}


.mockup-mobile {
  position: absolute;
  width: 20%;
  right: 5%;
  bottom: -10%;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 0.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}


/* Features Common */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.02);
}


.feature-icon-glass {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--glass);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

/* Why Choose Section */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-item {
  text-align: center;
}

.benefit-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

/* Animations Logic */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Section */
.footer {
  padding: 8rem 0 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer .logo-container {
  margin-bottom: 2.5rem;
  justify-content: center;
}

.footer .logo-text-group {
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-visuals { flex-direction: column; }
  .mockup-main { width: 90%; }
  .mockup-mobile { position: relative; width: 40%; right: 0; bottom: 0; margin-top: -5rem; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.8rem; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; }
  section { padding: 6rem 0; }
}
