/* Transly shared styles — dark WhatsApp green theme */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

:root {
  --green-dark:  #075E54;
  --green-mid:   #128C7E;
  --green-light: #25D366;
  --amber:       #F5D76E;
  --bg:          #0a0a0a;
  --surface:     #141414;
  --surface2:    #1e1e1e;
  --text:        #f0f0f0;
  --muted:       #888;
  --border:      #2a2a2a;
  --radius:      12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,94,84,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,211,102,0.15);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-family: 'Sora'; font-size: 1.4rem; font-weight: 700; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-brand span { color: var(--green-light); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .88rem; padding: 6px 14px; border-radius: 20px; transition: all .2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { background: var(--green-light)!important; color: #000!important; font-weight: 600!important; }
.nav-cta:hover { background: #20c05a!important; }
.page-header { background: linear-gradient(135deg,var(--green-dark) 0%,#0a3d36 100%); padding: 80px 24px 60px; text-align: center; border-bottom: 1px solid rgba(37,211,102,.15); }
.page-header h1 { font-family: 'Sora'; font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.badge { display: inline-block; background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3); color: var(--green-light); font-size: .78rem; font-weight: 600; letter-spacing: .08em; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; }
.content { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; flex: 1; }
.content section { margin-bottom: 48px; }
.content h2 { font-family: 'Sora'; font-size: 1.3rem; font-weight: 600; color: var(--green-light); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.content h3 { font-size: 1rem; font-weight: 600; color: #ddd; margin: 20px 0 8px; }
.content p { color: #bbb; margin-bottom: 14px; font-size: .95rem; }
.content ul,.content ol { color: #bbb; font-size: .95rem; padding-left: 22px; margin-bottom: 14px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--green-light); }
.content strong { color: #fff; }
.last-updated { display: inline-block; background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; font-size: .8rem; color: var(--muted); margin-bottom: 40px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-family: 'Sora'; color: #fff; margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; font-size: .9rem; }
.highlight { background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.2); border-left: 3px solid var(--green-light); border-radius: 8px; padding: 16px 20px; margin: 20px 0; }
.highlight p { margin: 0; color: #ccc; font-size: .92rem; }
.form-grid { display: grid; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; color: #aaa; font-weight: 500; }
.form-group input,.form-group textarea,.form-group select { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s; outline: none; resize: vertical; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color: var(--green-light); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary { background: var(--green-light); color: #000; }
.btn-primary:hover { background: #20c05a; transform: translateY(-1px); }
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .85rem; padding: 4px 12px; border-radius: 4px; transition: color .2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-copy { color: var(--muted); font-size: .8rem; }
@media(max-width:600px){.nav-links{display:none}.page-header{padding:60px 20px 40px}.content{padding:40px 20px 60px}}
