/* ========================================
   Projektify - Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --primary: #00b3b8;
  --primary-rgb: 0, 179, 184;
  --accent: #39d0c7;
  --accent-rgb: 57, 208, 199;
  --coral: #ff7f80;
  --indigo: #6366f1;
  --background: #ffffff;
  --foreground: #333333;
  --card: #ffffff;
  --muted: #f4f5f6;
  --muted-foreground: #808080;
  --border: #ebebeb;
  --radius: 1rem;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ========================================
   Gradient Utilities
   ======================================== */
.gradient-primary { background: linear-gradient(135deg, #00b3b8 0%, #39d0c7 100%); }
.gradient-hero {
  background: linear-gradient(135deg,
    rgba(0,179,184,0.1) 0%,
    rgba(57,208,199,0.15) 50%,
    rgba(255,127,128,0.1) 100%);
}
.grad-primary-accent  { background: linear-gradient(135deg, #00b3b8, #39d0c7); }
.grad-accent-coral    { background: linear-gradient(135deg, #39d0c7, #ff7f80); }
.grad-coral-indigo    { background: linear-gradient(135deg, #ff7f80, #6366f1); }
.grad-indigo-primary  { background: linear-gradient(135deg, #6366f1, #00b3b8); }
.grad-primary-coral   { background: linear-gradient(135deg, #00b3b8, #ff7f80); }

/* ========================================
   Blob Animation
   ======================================== */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-morph 8s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25%       { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50%       { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75%       { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* ========================================
   Hover Lift
   ======================================== */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0,179,184,0.3);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.625rem 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.btn-lg { font-size: 1rem; padding: 0.875rem 1.5rem; border-radius: var(--radius); }
.btn-sm { font-size: 0.8125rem; padding: 0.4375rem 0.875rem; }

.btn-primary {
  background: linear-gradient(135deg, #00b3b8, #39d0c7);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,179,184,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(0,179,184,0.4);
  transform: scale(1.05);
}
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--muted); }
.btn-white { background: #fff; color: var(--foreground); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; }
.btn-primary:disabled { opacity: 0.6; pointer-events: none; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(235,235,235,0.4);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-logo img { width: 2rem; height: 2rem; }
.header-logo span { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; }
.header-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(51,51,51,0.8);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-signin { display: none; }
@media (min-width: 640px) { .header-signin { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(51,51,51,0.8);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ========================================
   HERO
   ======================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 4rem);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob-1 {
  width: 18rem; height: 18rem;
  background: rgba(0,179,184,0.2);
  top: 5rem; left: 2.5rem;
  opacity: 0.6;
}
.hero-blob-2 {
  width: 24rem; height: 24rem;
  background: rgba(255,127,128,0.2);
  bottom: 5rem; right: 2.5rem;
  opacity: 0.5;
  animation-delay: 2s;
}
.hero-blob-3 {
  width: 16rem; height: 16rem;
  background: rgba(99,102,241,0.2);
  top: 50%; left: 33%;
  transform: translateY(-50%);
  opacity: 0.4;
  animation-delay: 4s;
}
.hero-inner {
  position: relative;
  padding: 4rem 0;
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(0,179,184,0.1), rgba(57,208,199,0.1));
  border: 1px solid rgba(0,179,184,0.2);
  align-self: center;
}
@media (min-width: 1024px) { .hero-badge { align-self: flex-start; } }
.hero-badge span { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.hero-badge svg { width: 1rem; height: 1rem; color: var(--primary); }

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-subtitle { margin: 0; } }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }

.hero-image-wrap {
  position: relative;
  height: 350px;
}
@media (min-width: 768px) { .hero-image-wrap { height: 500px; } }
@media (min-width: 1024px) { .hero-image-wrap { height: 650px; } }

.hero-image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(0,179,184,0.2), rgba(255,127,128,0.2), rgba(99,102,241,0.2));
  filter: blur(48px);
  opacity: 0.5;
  border-radius: 1.5rem;
}
.hero-image-wrap img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

/* ========================================
   SECTION HEADER (shared)
   ======================================== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   VALUE PILLARS
   ======================================== */
.value-pillars-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--background), rgba(244,245,246,0.3));
}
@media (min-width: 768px) { .value-pillars-section { padding: 8rem 0; } }

.pillars-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .pillars-grid { grid-template-columns: repeat(5, 1fr); } }

.pillar-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0,179,184,0.3);
}
.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: white;
  flex-shrink: 0;
}
.pillar-icon svg { width: 1.75rem; height: 1.75rem; }
.pillar-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.5rem; }
.pillar-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ========================================
   FEATURES
   ======================================== */
.features-section { padding: 5rem 0; }
@media (min-width: 768px) { .features-section { padding: 8rem 0; } }

.features-list { display: flex; flex-direction: column; gap: 6rem; }

.feature-card {
  display: grid;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s ease, transform 1s ease;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) { .feature-card { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) {
  .feature-card.reverse .feature-content { order: 2; }
  .feature-card.reverse .feature-image  { order: 1; }
}

.feature-content { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}
.feature-icon:hover { transform: scale(1.1) rotate(6deg); }
.feature-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-title { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; }
.feature-desc { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }

.feature-image-inner {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(244,245,246,0.5);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.feature-image-inner:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.12); transform: scale(1.02); }
.feature-image-inner img { width: 100%; border-radius: 0.5rem; transition: transform 0.5s ease; }
.feature-image-inner:hover img { transform: scale(1.01); }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  padding: 5rem 0;
  background: rgba(244,245,246,0.3);
}
@media (min-width: 768px) { .how-section { padding: 8rem 0; } }

.how-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }

.how-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease;
}
.how-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.how-number {
  position: absolute;
  top: -1rem; left: -1rem;
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00b3b8, #39d0c7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
.how-content { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.how-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: white;
}
.how-icon svg { width: 1.75rem; height: 1.75rem; }
.how-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; }
.how-desc { color: var(--muted-foreground); line-height: 1.6; font-size: 0.9375rem; }

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(244,245,246,0.3), var(--background));
}
@media (min-width: 768px) { .pricing-section { padding: 8rem 0; } }

.pricing-card {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05));
  border: 2px solid rgba(0,179,184,0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) { .pricing-card { padding: 3rem; } }
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0,179,184,0.3);
}
.pricing-features { display: flex; flex-direction: column; gap: 2rem; }
.pricing-feature { display: flex; gap: 1rem; align-items: flex-start; }
.pricing-feature-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: white;
}
.pricing-feature-icon svg { width: 1.5rem; height: 1.5rem; }
.pricing-feature-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-feature-desc { color: var(--muted-foreground); line-height: 1.7; }

/* ========================================
   FAQ
   ======================================== */
.faq-section { padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }

.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-trigger:hover { color: var(--primary); }
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-content { max-height: 500px; }
.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-section { padding: 5rem 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .cta-section { padding: 8rem 0; } }
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #00b3b8, #39d0c7);
  opacity: 0.9;
}
.cta-deco {
  position: absolute;
  background: white;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.1;
}
.cta-deco-1 { top: 0; left: 25%; width: 16rem; height: 16rem; }
.cta-deco-2 { bottom: 0; right: 25%; width: 24rem; height: 24rem; }
.cta-inner { position: relative; text-align: center; }
.cta-title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(244,245,246,0.3);
}
.footer-inner { padding: 3rem 1.5rem; }
@media (min-width: 768px) { .footer-inner { padding: 4rem 1.5rem; } }

.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; } }

.footer-brand { max-width: 20rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-logo img { width: 2.5rem; height: 2.5rem; }
.footer-logo span { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; }
.footer-brand p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.375rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.footer-social-btn:hover { color: var(--primary); }
.footer-social-btn svg { width: 1.25rem; height: 1.25rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-links { flex-direction: row; gap: 3rem; justify-content: flex-end; } }
@media (min-width: 1024px) { .footer-links { gap: 4rem; } }

.footer-col { min-width: 7.5rem; }
.footer-col-title {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero { position: relative; overflow: hidden; }
.page-blob-1 {
  width: 18rem; height: 18rem;
  background: rgba(0,179,184,0.1);
  top: 6rem; left: 2.5rem;
  opacity: 0.5;
}
.page-blob-2 {
  width: 24rem; height: 24rem;
  background: rgba(57,208,199,0.1);
  bottom: 6rem; right: 2.5rem;
  opacity: 0.5;
  animation-delay: 2s;
}
.page-hero-inner {
  position: relative;
  padding: 5rem 0;
  text-align: center;
}
@media (min-width: 768px) { .page-hero-inner { padding: 7rem 0; } }
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(0,179,184,0.1), rgba(57,208,199,0.1));
  border: 1px solid rgba(0,179,184,0.2);
  margin-bottom: 1.5rem;
}
.page-badge span { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.page-badge svg { width: 1rem; height: 1rem; color: var(--primary); }
.page-title { font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.01em; }
.page-desc { font-size: 1.125rem; color: var(--muted-foreground); max-width: 48rem; margin: 0 auto; line-height: 1.7; }

/* ========================================
   LEGAL CARDS
   ======================================== */
.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.legal-card {
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
}
.legal-card-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.legal-card-header svg { width: 1.25rem; height: 1.25rem; color: var(--primary); margin-top: 0.25rem; flex-shrink: 0; }
.legal-card h2 { font-size: 1.5rem; font-weight: 700; }
.legal-card p, .legal-card li { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.legal-card ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.legal-card a { color: var(--primary); }
.legal-card a:hover { text-decoration: underline; }
.last-updated { font-size: 0.75rem !important; color: rgba(128,128,128,0.8) !important; margin-top: 1rem; }

/* ========================================
   REQUEST DEMO PAGE
   ======================================== */
.demo-section { position: relative; overflow: hidden; }
.demo-inner { position: relative; padding: 5rem 0 4rem; }
@media (min-width: 768px) { .demo-inner { padding: 4rem 0; } }

.demo-header { text-align: center; margin-bottom: 3.5rem; }
.demo-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .demo-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; } }

.demo-form-card {
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05));
  backdrop-filter: blur(4px);
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-full { grid-column: 1 / -1; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); display: inline-block; margin-bottom: 0.25rem; }
.form-label .req { color: #ef4444; }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,179,184,0.15);
}
.form-textarea { resize: vertical; min-height: 8rem; }

.form-check-row { display: flex; align-items: flex-start; gap: 0.75rem; grid-column: 1 / -1; }
.form-check-row input[type="checkbox"] {
  width: 1rem; height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}
.form-check-label { font-size: 0.875rem; color: var(--muted-foreground); cursor: pointer; }

.demo-benefits { display: flex; flex-direction: column; gap: 1.5rem; height: 100%; }

.benefit-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05));
  flex: 1;
}
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-item + .benefit-item { margin-top: 1.25rem; }
.benefit-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: rgba(0,179,184,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.benefit-icon svg { width: 1.25rem; height: 1.25rem; }
.benefit-item h3 { font-size: 0.9375rem; font-weight: 600; font-family: var(--font-sans); margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.contact-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05));
}
.contact-label { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-item + .contact-item { margin-top: 1rem; }
.contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); margin-top: 0.125rem; flex-shrink: 0; }
.contact-item-title { font-size: 0.875rem; font-weight: 600; }
.contact-item p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; margin-top: 0.25rem; }
.contact-item a { color: var(--primary); font-size: 0.875rem; }
.contact-item a:hover { text-decoration: underline; }
.contact-item-row { display: flex; flex-direction: column; gap: 0.25rem; }
@media (min-width: 768px) { .contact-item-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.contact-item-note { font-size: 0.75rem; color: var(--muted-foreground); }

/* ========================================
   SUCCESS MODAL
   ======================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-icon {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00b3b8, #39d0c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}
.modal-icon svg { width: 2rem; height: 2rem; }
.modal-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.modal-desc { font-size: 1rem; color: var(--muted-foreground); text-align: center; line-height: 1.6; margin-bottom: 1.5rem; }
.modal-footer { display: flex; justify-content: center; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid-3 { display: grid; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .about-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.about-grid-2 { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .about-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.about-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
}
.about-card.gradient { background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05)); }
.about-card-header { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-card-header svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.about-card-header h3 { font-size: 0.9375rem; font-weight: 600; font-family: var(--font-sans); }
.about-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; line-height: 1.6; }

.about-large-card {
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
}
.about-large-card.gradient { background: linear-gradient(135deg, rgba(0,179,184,0.05), rgba(57,208,199,0.05)); }
.about-large-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.about-large-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.about-large-card li, .about-large-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

.about-values-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.about-values-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .about-values-grid { grid-template-columns: repeat(3, 1fr); } }
.about-cta { text-align: center; padding-bottom: 2rem; }

/* ========================================
   SCROLL ANIMATION SETUP
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(-2rem);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Toast */
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
