:root {
  --tg-bg: #ffffff;
  --tg-bg-alt: #f8fafc;
  --tg-text: #1e293b;
  --tg-text-light: #64748b;
  --tg-primary: #d97706;
  --tg-primary-hover: #b45309;
  --tg-secondary: #fef3c7;
  --tg-border: #e2e8f0;
  --tg-radius: 12px;
  --tg-font-head: 'Playfair Display', serif;
  --tg-font-body: 'Lato', sans-serif;
  --tg-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body.tg-body { font-family: var(--tg-font-body); background: var(--tg-bg); color: var(--tg-text); line-height: 1.6; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.tg-header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--tg-border); padding: 1rem 0; }
.tg-nav-wrap { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.tg-logo { font-family: var(--tg-font-head); font-size: 1.5rem; font-weight: 700; color: var(--tg-primary); }
.tg-nav { display: flex; gap: 2rem; }
.tg-nav-link { font-weight: 500; transition: color 0.3s; }
.tg-nav-link:hover { color: var(--tg-primary); }
.tg-mobile-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--tg-text); }

.tg-main-content { overflow-x: hidden; }

.tg-hero-sec { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 4rem auto; padding: 0 2rem; min-height: 70vh; }
.tg-hero-content { flex: 1; padding-right: 4rem; }
.tg-h1 { font-family: var(--tg-font-head); font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--tg-text); }
.tg-hero-desc { font-size: 1.125rem; color: var(--tg-text-light); margin-bottom: 2rem; }
.tg-btn-primary { display: inline-block; background: var(--tg-primary); color: #fff; padding: 0.875rem 2rem; border-radius: var(--tg-radius); font-weight: 700; transition: background 0.3s, transform 0.2s; border: none; cursor: pointer; text-align: center; }
.tg-btn-primary:hover { background: var(--tg-primary-hover); transform: translateY(-2px); }
.tg-btn-outline { display: inline-block; background: transparent; color: var(--tg-primary); padding: 0.875rem 2rem; border-radius: var(--tg-radius); font-weight: 700; border: 2px solid var(--tg-primary); transition: all 0.3s; cursor: pointer; text-align: center; }
.tg-btn-outline:hover { background: var(--tg-primary); color: #fff; }

.tg-hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.tg-circle-art { width: 400px; height: 400px; background: linear-gradient(135deg, var(--tg-secondary), var(--tg-bg)); border-radius: 50%; position: relative; box-shadow: inset 0 0 50px rgba(217, 119, 6, 0.1); }
.tg-star { position: absolute; background: var(--tg-primary); width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 10px var(--tg-primary); }
.tg-star-1 { top: 20%; left: 30%; }
.tg-star-2 { top: 50%; right: 20%; }
.tg-star-3 { bottom: 20%; left: 50%; }

.tg-section-title { font-family: var(--tg-font-head); font-size: 2.5rem; text-align: center; margin-bottom: 3rem; color: var(--tg-text); }

.tg-feat-sec { background: var(--tg-bg-alt); padding: 6rem 2rem; }
.tg-feat-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.tg-feat-card { background: var(--tg-bg); padding: 2.5rem; border-radius: var(--tg-radius); box-shadow: var(--tg-shadow); border-top: 4px solid var(--tg-primary); }
.tg-feat-title { font-family: var(--tg-font-head); font-size: 1.5rem; margin-bottom: 1rem; }
.tg-feat-text { color: var(--tg-text-light); }

.tg-rev-sec { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.tg-rev-flex { display: flex; flex-direction: column; gap: 2rem; }
.tg-rev-item { background: var(--tg-secondary); padding: 2rem; border-radius: var(--tg-radius); border-left: 4px solid var(--tg-primary); }
.tg-rev-body { font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.tg-rev-author { font-weight: 700; font-family: var(--tg-font-head); color: var(--tg-primary-hover); }

.tg-plans-sec { background: var(--tg-bg-alt); padding: 6rem 2rem; }
.tg-plans-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: center; }
.tg-plan-box { background: var(--tg-bg); padding: 3rem 2rem; border-radius: var(--tg-radius); box-shadow: var(--tg-shadow); text-align: center; display: flex; flex-direction: column; height: 100%; }
.tg-plan-highlight { transform: scale(1.05); border: 2px solid var(--tg-primary); position: relative; }
.tg-plan-name { font-family: var(--tg-font-head); font-size: 1.75rem; margin-bottom: 0.5rem; }
.tg-plan-desc { color: var(--tg-text-light); margin-bottom: 2rem; }
.tg-plan-list { margin-bottom: 2rem; flex: 1; text-align: left; }
.tg-plan-list li { margin-bottom: 0.75rem; padding-left: 1.5rem; position: relative; }
.tg-plan-list li::before { content: '✓'; color: var(--tg-primary); position: absolute; left: 0; font-weight: bold; }

.tg-form-sec { padding: 6rem 2rem; max-width: 800px; margin: 0 auto; }
.tg-form-container { background: var(--tg-bg); padding: 3rem; border-radius: var(--tg-radius); box-shadow: var(--tg-shadow); border: 1px solid var(--tg-border); }
.tg-input-group { margin-bottom: 1.5rem; }
.tg-input-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: var(--tg-text); }
.tg-input-group input, .tg-input-group textarea { width: 100%; padding: 0.875rem; border: 1px solid var(--tg-border); border-radius: 8px; font-family: var(--tg-font-body); font-size: 1rem; }
.tg-input-group input:focus, .tg-input-group textarea:focus { outline: none; border-color: var(--tg-primary); box-shadow: 0 0 0 3px var(--tg-secondary); }
.tg-success-msg { margin-top: 1.5rem; padding: 1rem; background: #dcfce7; color: #166534; border-radius: 8px; text-align: center; font-weight: 700; }
.tg-disclaimer { margin-top: 2rem; font-size: 0.875rem; color: var(--tg-text-light); text-align: center; }

.tg-faq-sec { background: var(--tg-bg-alt); padding: 6rem 2rem; }
.tg-faq-list { max-width: 800px; margin: 0 auto; }
.tg-faq-row { margin-bottom: 1rem; background: var(--tg-bg); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.tg-faq-btn { width: 100%; text-align: left; padding: 1.25rem; background: none; border: none; font-family: var(--tg-font-head); font-size: 1.125rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--tg-text); }
.tg-faq-btn::after { content: '+'; font-size: 1.5rem; color: var(--tg-primary); }
.tg-faq-btn.tg-active::after { content: '-'; }
.tg-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.25rem; color: var(--tg-text-light); }
.tg-faq-answer.tg-open { max-height: 500px; padding: 0 1.25rem 1.25rem 1.25rem; }

.tg-footer { background: var(--tg-text); color: #fff; padding: 4rem 2rem 2rem; margin-top: 4rem; }
.tg-foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.tg-foot-col h4 { font-family: var(--tg-font-head); color: var(--tg-primary); margin-bottom: 1.5rem; font-size: 1.25rem; }
.tg-foot-col a { display: block; color: #cbd5e1; margin-bottom: 0.75rem; transition: color 0.3s; }
.tg-foot-col a:hover { color: #fff; }
.tg-foot-copy { text-align: center; padding-top: 2rem; border-top: 1px solid #334155; color: #94a3b8; font-size: 0.875rem; }

.tg-cookie-bar { position: fixed; bottom: -100px; left: 0; right: 0; background: var(--tg-text); color: #fff; padding: 1.5rem; display: flex; justify-content: center; align-items: center; gap: 2rem; transition: bottom 0.5s; z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); }
.tg-cookie-bar.tg-show { bottom: 0; }
.tg-cookie-bar a { color: var(--tg-primary); text-decoration: underline; }

.tg-content-page { padding: 8rem 2rem 4rem; max-width: 800px; margin: 0 auto; min-height: 60vh; }
.tg-content-title { font-family: var(--tg-font-head); font-size: 3rem; margin-bottom: 2rem; color: var(--tg-text); }
.tg-content-body p { margin-bottom: 1.5rem; color: var(--tg-text-light); font-size: 1.125rem; }
.tg-content-body h2 { font-family: var(--tg-font-head); margin: 2.5rem 0 1rem; color: var(--tg-text); }
.tg-content-body ul { list-style: disc; padding-left: 2rem; margin-bottom: 1.5rem; color: var(--tg-text-light); }

@media (max-width: 768px) {
  .tg-hero-sec { flex-direction: column; text-align: center; margin: 2rem auto; }
  .tg-hero-content { padding-right: 0; margin-bottom: 3rem; }
  .tg-mobile-btn { display: block; }
  .tg-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
  .tg-nav.tg-open { display: flex; }
  .tg-plan-highlight { transform: none; }
  .tg-cookie-bar { flex-direction: column; text-align: center; gap: 1rem; }
}
