<?php
$lang_code = 'en';
$lang = [
  'lang' => 'en',
  'page_title' => 'Terms and Conditions | TYKUN',
  'meta_description' => 'Terms and conditions of use for TYKUN website and services.',
  'h1' => 'Terms and Conditions',
  'last_updated' => 'Last updated: June 2026',
  'intro' => 'Welcome to TYKUN. By accessing and using our website and services, you agree to be bound by the following terms and conditions in full.',
  'placeholder_notice' => 'NOTICE: This document is a placeholder. The final legal content must be drafted and reviewed by a lawyer before final publication.',
  'section_1_title' => '1. Acceptance of Terms',
  'section_1_body' => '[CONFIRM: By using this site, you confirm that you have read, understood, and agree to be bound by these terms. If you do not agree, you must not use the site.]',
  'section_2_title' => '2. Use of the Service',
  'section_2_body' => '[CONFIRM: Description of services offered by TYKUN. Usage restrictions: do not use for illegal purposes, do not attempt to access unauthorized systems, do not interfere with site operation.]',
  'section_3_title' => '3. Intellectual Property',
  'section_3_body' => '[CONFIRM: All site content, including text, graphics, logos, images, and software, is property of TYKUN or its licensors and is protected by intellectual property laws.]',
  'section_4_title' => '4. Limitation of Liability',
  'section_4_body' => '[CONFIRM: TYKUN shall not be liable for direct, indirect, incidental, or consequential damages arising from use of the site or services. Exclude implied warranties to the fullest extent permitted by law.]',
  'section_5_title' => '5. Modifications to Terms',
  'section_5_body' => '[CONFIRM: TYKUN reserves the right to modify these terms at any time. Changes take effect immediately upon posting. Your responsibility to review terms periodically.]',
  'section_6_title' => '6. Applicable Law',
  'section_6_body' => '[CONFIRM: These terms are governed by the laws of Bolivia. Any disputes shall be resolved in the competent courts of La Paz, Bolivia.]',
  'section_7_title' => '7. Termination',
  'section_7_body' => '[CONFIRM: TYKUN may terminate or suspend your access to the site at any time, without prior notice, for any reason, including breach of these terms.]',
  'section_8_title' => '8. Contact',
  'section_8_body' => 'For inquiries about these terms, contact: info@consultora-tykun.com',
  'footer_privacy' => 'Privacy Policy',
  'footer_terms' => 'Terms and Conditions',
  'footer_rights' => '© 2026 TYKUN. All rights reserved.',
];
?><!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><?php echo $lang['page_title']; ?></title>
  <meta name="description" content="<?php echo $lang['meta_description']; ?>">
  <link rel="canonical" href="https://consultora-tykun.com/tykun-landing/terms-en.php">
  <link rel="icon" type="image/png" href="assets/images/tykun-ico.png">
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
  <style>
    body { font-family: 'Inter', sans-serif; background: #0f0f1a; color: #e2e8f0; line-height: 1.6; max-width: 800px; margin: 0 auto; padding: 60px 24px; }
    h1 { color: #a78bfa; margin-bottom: 8px; }
    h2 { color: #06b6d4; margin-top: 32px; }
    p { margin-bottom: 16px; color: #cbd5e1; }
    .placeholder-notice { background: rgba(245,158,11,0.15); border-left: 4px solid #f59e0b; padding: 16px; margin: 24px 0; color: #fbbf24; }
    .updated { color: #94a3b8; font-size: 14px; margin-bottom: 32px; }
    .back-link { display: inline-block; margin-top: 32px; color: #a78bfa; text-decoration: none; }
    .back-link:hover { color: #06b6d4; }
    .footer { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(139,92,246,0.2); text-align: center; color: #94a3b8; font-size: 14px; }
    .footer a { color: #94a3b8; text-decoration: none; margin: 0 8px; }
    .footer a:hover { color: #a78bfa; }
  </style>
</head>
<body>
  <h1><?php echo $lang['h1']; ?></h1>
  <p class="updated"><?php echo $lang['last_updated']; ?></p>
  <p><?php echo $lang['intro']; ?></p>
  <div class="placeholder-notice"><?php echo $lang['placeholder_notice']; ?></div>
  <h2><?php echo $lang['section_1_title']; ?></h2>
  <p><?php echo $lang['section_1_body']; ?></p>
  <h2><?php echo $lang['section_2_title']; ?></h2>
  <p><?php echo $lang['section_2_body']; ?></p>
  <h2><?php echo $lang['section_3_title']; ?></h2>
  <p><?php echo $lang['section_3_body']; ?></p>
  <h2><?php echo $lang['section_4_title']; ?></h2>
  <p><?php echo $lang['section_4_body']; ?></p>
  <h2><?php echo $lang['section_5_title']; ?></h2>
  <p><?php echo $lang['section_5_body']; ?></p>
  <h2><?php echo $lang['section_6_title']; ?></h2>
  <p><?php echo $lang['section_6_body']; ?></p>
  <h2><?php echo $lang['section_7_title']; ?></h2>
  <p><?php echo $lang['section_7_body']; ?></p>
  <h2><?php echo $lang['section_8_title']; ?></h2>
  <p><?php echo $lang['section_8_body']; ?></p>
  <a href="index-en.php" class="back-link">← Back to home</a>
  <div class="footer">
    <p><?php echo $lang['footer_rights']; ?></p>
    <p>
      <a href="privacy-policy-en.php"><?php echo $lang['footer_privacy']; ?></a>
      ·
      <a href="terms-en.php"><?php echo $lang['footer_terms']; ?></a>
    </p>
  </div>
</body>
</html>