/* =========================================
   TGONE Basic - Premium Landing Styles
   ========================================= */

:root {
  --primary-red: #ff2d24;
  --dark-red: #d61510;
  --bg-black: #050505;
  --card-bg: rgba(15, 15, 15, 0.6);
  --glass-stroke: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a1a1a8;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.text-red {
  color: var(--primary-red);
}

.btn-primary {
  background: var(--primary-red);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--dark-red);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--glass-stroke);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Header Adjustments */
.brand-logo { height: 24px; }
.nav {
  gap: 30px;
}
.nav a {
  text-transform: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: normal;
}
.nav a.is-active::after {
  height: 2px;
}

/* Hero Section */
.hero-basic {
  text-align: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-kicker {
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-title-main {
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -2px;
  display: flex;
  align-items: center;
}

.hero-title-main img {
  height: 60px;
  margin: 0 5px;
}

.hero-badge {
  background: var(--primary-red);
  color: white;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 800px;
  font-family: var(--font-heading);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-features-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.hf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hf-icon {
  color: var(--primary-red);
  width: 32px;
  height: 32px;
}

.hf-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccc;
  text-align: center;
  line-height: 1.2;
}

.laptop-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.laptop-img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.glow-base {
  position: absolute;
  bottom: 5%;
  left: 10%;
  right: 10%;
  height: 20px;
  background: var(--primary-red);
  filter: blur(50px);
  opacity: 0.6;
  z-index: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-kicker-small {
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

/* Features Grid */
.features-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.feat-card {
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.feat-card:hover {
  border-color: var(--primary-red);
}

.feat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--primary-red);
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.feat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Overview Section */
.overview-grid {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.overview-left {
  flex: 0 0 350px;
}
.overview-left h2 {
  font-size: 0.85rem;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #ddd;
}
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-red);
}

.overview-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-images {
  display: flex;
  gap: 20px;
  height: 250px;
}
.ind-img {
  flex: 1;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--glass-stroke);
}
.estado-card {
  width: 250px;
  background: var(--card-bg);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.estado-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.estado-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.donut {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(#10b981 0% 79%, #f59e0b 79% 92%, #ef4444 92% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.donut::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: #151515;
  border-radius: 50%;
}
.donut-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.donut-num {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.donut-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.estado-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #ccc;
}
.leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-green { background: #10b981; }
.dot-yellow { background: #f59e0b; }
.dot-red { background: #ef4444; }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.metric-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.metric-val {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.metric-sub {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 15px;
}
.sparkline {
  height: 24px;
  width: 100%;
}

/* How it works */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
  z-index: 2;
}
.step-icon {
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img, .step-icon svg {
  max-height: 100%;
  max-width: 100%;
  color: #fff;
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.step-arrow {
  margin-top: 30px;
  color: var(--text-muted);
}

/* CTA Bottom */
.bottom-cta {
  max-width: 1000px;
  margin: 80px auto;
  background: linear-gradient(to right, #111, #000);
  border: 1px solid var(--glass-stroke);
  border-radius: 24px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.cta-icon-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,45,36,0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon-lg svg {
  width: 40px;
  height: 40px;
}
.cta-content {
  flex: 1;
}
.cta-content h3 {
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.cta-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Footer */
.footer-basic {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
}
.footer-basic img {
  height: 20px;
}

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .overview-grid {
    flex-direction: column;
  }
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-title-main { font-size: 3rem; }
  .hero-subtitle { font-size: 2.2rem; }
  .features-container {
    grid-template-columns: 1fr;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .bottom-cta {
    flex-direction: column;
    text-align: center;
  }
}
