/* Terbit Aura — terbitaura.com global stylesheet */

:root {
  --lavender: #b9a7e0;
  --lavender-soft: #f3effc;
  --rose: #e8a0b4;
  --rose-soft: #fdf1f5;
  --peach: #f5c6a5;
  --peach-soft: #fdf5ee;
  --sage: #a8c3a0;
  --sage-soft: #f0f6ee;
  --terbit-green: #1b8a4c;
  --terbit-yellow: #f5c518;
  --ink: #4a3f5c;
  --ink-soft: #7d7391;
  --card: #ffffff;
  --bg: #fdfbf8;
  --border: #eee6f2;
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* Header */
header {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.logo img { height: 46px; width: auto; }

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text em { color: var(--rose); font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s;
}

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

.lang-switch { display: flex; gap: 0.4rem; }

.lang-switch a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--terbit-green);
  border-color: var(--terbit-green);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--lavender-soft) 0%, var(--rose-soft) 45%, var(--peach-soft) 100%);
  padding: 5.5rem 1.5rem 5rem;
  text-align: center;
}

.hero-inner { max-width: 780px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero .highlight { color: var(--rose); font-style: italic; }

.hero p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2rem; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--terbit-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(27, 138, 76, 0.28);
}

.btn-primary:hover { background: #14713d; transform: translateY(-2px); }

.btn-secondary {
  background: #fff;
  color: var(--terbit-green);
  border: 2px solid var(--terbit-green);
}

.btn-secondary:hover { background: var(--sage-soft); }

.hero-note { font-size: 0.9rem !important; color: var(--ink-soft); margin-top: 1.4rem; margin-bottom: 0 !important; }

/* Sections */
section { padding: 4.5rem 1.5rem; }

section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 2.6rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* About */
.about { background: var(--bg); }

.about-cards {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(74, 63, 92, 0.05);
}

.about-icon { font-size: 2.2rem; display: block; margin-bottom: 0.9rem; }

.about-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

.about-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* Features */
.features { background: var(--lavender-soft); }

.features-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 16px rgba(74, 63, 92, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(74, 63, 92, 0.12);
}

.feature-icon { font-size: 1.9rem; display: block; margin-bottom: 0.7rem; }

.feature-card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }

.feature-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* Privacy */
.privacy { background: var(--sage-soft); }

.privacy-inner { max-width: 760px; margin: 0 auto; }

.privacy-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.privacy-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.privacy-list li strong { color: var(--ink); }

/* Download */
.download { background: linear-gradient(150deg, var(--peach-soft), var(--rose-soft)); text-align: center; }

.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  background: var(--ink);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
}

/* Company */
.company { background: var(--bg); }

.company-values {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.value-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-align: center;
}

.value-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

.value-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* Contact */
.contact {
  background: var(--terbit-green);
  color: #fff;
  text-align: center;
}

.contact h2 { color: #fff; }

.contact p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 0.6rem; }

.contact-email { font-size: 1.35rem; margin: 1.2rem auto !important; }

.contact-email a { color: var(--terbit-yellow); font-weight: 800; text-decoration: none; }

.contact-email a:hover { text-decoration: underline; }

.contact-company { margin-top: 1.6rem; font-size: 0.95rem; }

.contact-company p { color: rgba(255,255,255,0.85); margin-bottom: 0.3rem; }

/* Footer */
footer { background: #372f45; color: #fff; padding: 3rem 1.5rem 2rem; text-align: center; }

.footer-content { max-width: 1080px; margin: 0 auto; }

.footer-logo { height: 60px; width: auto; background: #fff; border-radius: 14px; padding: 6px; }

.footer-tagline { margin: 0.8rem 0 1.4rem; color: rgba(255,255,255,0.75); font-style: italic; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--terbit-yellow); }

.lang-footer a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom a { color: rgba(255,255,255,0.8); }

/* Responsive */
@media (max-width: 720px) {
  nav { justify-content: center; }
  .nav-links { justify-content: center; gap: 1rem; }
  section { padding: 3.2rem 1.2rem; }
  .hero { padding: 3.5rem 1.2rem; }
}
