﻿:root {
      --primary: #F97316;
      --primary-hover: #EA580C;
      --dark-brown: #2A1205;
      --cream-base: #FFF7ED;
      --cream-light: #FFFDFB;
      --amber: #F59E0B;
      --red-orange: #FB7185;
      --text-main: #3B2010;
      --text-muted: #7C6050;
      --compat-blue: rgb(9,132,227);
      --border-color: #F7E5D4;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--cream-base);
      color: var(--text-main);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    
    header {
      background-color: rgba(255, 247, 237, 0.95);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--dark-brown);
      white-space: nowrap;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-menu a {
      font-weight: 600;
      font-size: 15px;
      color: var(--dark-brown);
    }

    .nav-menu a:hover {
      color: var(--primary);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-nav {
      background-color: var(--dark-brown);
      color: var(--cream-base);
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
    }

    .btn-nav:hover {
      background-color: var(--primary);
      color: white;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      color: var(--dark-brown);
      cursor: pointer;
    }

    
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background-color: var(--cream-light);
      z-index: 1001;
      transition: all 0.3s ease;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .mobile-drawer.active {
      left: 0;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-close {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--dark-brown);
    }

    .drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .drawer-menu a {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark-brown);
    }

    .drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(42, 18, 5, 0.4);
      z-index: 1000;
      display: none;
    }

    .drawer-backdrop.active {
      display: block;
    }

    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    
    .hero-layout-04 {
      background: linear-gradient(180deg, var(--cream-base) 0%, #FED7AA 100%);
      padding-top: 60px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-top {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px 40px;
    }

    .hero-tag {
      background-color: rgba(249, 115, 22, 0.1);
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(249, 115, 22, 0.2);
    }

    .hero-title {
      font-size: 48px;
      line-height: 1.2;
      color: var(--dark-brown);
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      transition: all 0.3s;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--amber) 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }

    .btn-primary:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid var(--dark-brown);
      color: var(--dark-brown);
      background-color: transparent;
    }

    .btn-outline:hover {
      background-color: var(--dark-brown);
      color: var(--cream-base);
    }

    .hero-bottom {
      width: 100%;
      background-color: var(--cream-light);
      position: relative;
      padding: 40px 0 80px;
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
      box-shadow: 0 -10px 30px rgba(42, 18, 5, 0.05);
    }

    
    .dashboard-mockup {
      max-width: 1000px;
      margin: -80px auto 0;
      background-color: #2A1205;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      border: 4px solid #3d1c0b;
      overflow: hidden;
    }

    .mockup-header {
      background-color: #1a0a03;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid #3d1c0b;
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50px;
      background-color: #FB7185;
    }

    .mockup-dot:nth-child(2) { background-color: #F59E0B; }
    .mockup-dot:nth-child(3) { background-color: #10B981; }

    .mockup-title {
      color: #9C8375;
      font-size: 12px;
      margin-left: 10px;
      font-family: monospace;
    }

    .mockup-body {
      padding: 20px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
    }

    .mockup-chart-container {
      background-color: #1F0D04;
      border-radius: 8px;
      padding: 16px;
      min-height: 260px;
    }

    .chart-header {
      display: flex;
      justify-content: space-between;
      color: #FFF7ED;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .chart-price {
      color: var(--primary);
      font-weight: bold;
    }

    .chart-sim {
      height: 180px;
      position: relative;
      border-bottom: 1px dashed rgba(255, 247, 237, 0.1);
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
    }

    .candle {
      width: 16px;
      background-color: var(--primary);
      position: relative;
      border-radius: 2px;
    }

    .candle.bear {
      background-color: var(--red-orange);
    }

    .candle::after {
      content: '';
      position: absolute;
      width: 2px;
      height: 120%;
      top: -10%;
      left: 7px;
      background-color: inherit;
      z-index: -1;
    }

    .mockup-rates {
      background-color: #1F0D04;
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .rate-item {
      display: flex;
      justify-content: space-between;
      padding: 8px;
      border-bottom: 1px solid rgba(255,247,237,0.05);
      font-size: 13px;
    }

    .rate-pair { color: #FFF7ED; font-weight: bold; }
    .rate-val { color: var(--amber); }

    
    .trust-bar {
      padding: 40px 0;
      background-color: var(--cream-base);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }

    .trust-item h3 {
      font-size: 32px;
      color: var(--primary);
      font-weight: 800;
    }

    .trust-item p {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    .strengths {
      padding: 80px 0;
      background-color: var(--cream-light);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 36px;
      color: var(--dark-brown);
      font-weight: 800;
    }

    .section-title p {
      color: var(--text-muted);
    }

    .strengths-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .strength-card {
      background-color: var(--cream-base);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      transition: transform 0.3s;
    }

    .strength-card:hover {
      transform: translateY(-5px);
    }

    .strength-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .strength-card h3 {
      font-size: 20px;
      color: var(--dark-brown);
      margin-bottom: 12px;
    }

    
    .articles-section {
      padding: 80px 0;
      background-color: var(--cream-base);
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .article-card {
      background-color: var(--cream-light);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
    }

    .article-img {
      height: 200px;
      background-size: cover;
      background-position: center;
      background-color: #E2D6C5;
    }

    .article-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      gap: 12px;
    }

    .article-title {
      font-size: 18px;
      color: var(--dark-brown);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border-color);
      padding-top: 15px;
      font-size: 13px;
    }

    .article-tag {
      background-color: rgba(245, 158, 11, 0.1);
      color: var(--amber);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    
    .cta-section {
      background: linear-gradient(135deg, var(--dark-brown) 0%, #4c1d02 100%);
      color: var(--cream-base);
      padding: 80px 0;
      text-align: center;
    }

    .cta-content h2 {
      font-size: 36px;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .cta-content p {
      font-size: 18px;
      opacity: 0.8;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    
    footer {
      background-color: var(--dark-brown);
      color: rgba(255, 247, 237, 0.7);
      padding: 60px 0 30px;
      font-size: 14px;
      border-top: 2px solid var(--primary);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .footer-brand .logo span {
      color: var(--cream-base);
    }

    .footer-links h4 {
      color: var(--cream-base);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 247, 237, 0.1);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .warning-text {
      background-color: rgba(251, 113, 133, 0.05);
      border-left: 3px solid var(--red-orange);
      padding: 15px;
      border-radius: 4px;
      font-size: 12px;
      margin-top: 20px;
      color: rgba(255, 247, 237, 0.6);
    }

    
    @media (max-width: 992px) {
      .strengths-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-menu, .btn-nav {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .hero-title {
        font-size: 32px;
      }
      .hero-subtitle {
        font-size: 15px;
      }
      .mockup-body {
        grid-template-columns: 1fr;
      }
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .strengths-grid, .articles-grid {
        grid-template-columns: 1fr;
      }
    }