/* AI Internal Tools Page Styles */

/* Callout Chip - Custom styling for section chips */
.callout-chip {
  width: max-content;
  padding: 0.5em 1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  margin-bottom: 2em;
  font-size: 0.9vw;
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-primary);
}

/* Override container height to allow full content display */
.container {
  min-height: 100%;
}

/* Internal Tools Page Specific Styles */
.internal-tools-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6em 8em 3em;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-bg-secondary) 100%
  );
  text-align: center;
}

.internal-tools-hero h1 {
  font-family: "Druk Wide Bold";
  font-size: 5.5vw;
  line-height: 1.1;
  margin-bottom: 0.5em;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.internal-tools-hero p {
  font-family: var(--font-primary);
  font-size: 1.4vw;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3em;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta .btn-primary {
  padding: 1.2em 2.5em;
  background: linear-gradient(135deg, #ff6b00 0%, #fc002d 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1vw;
  font-family: var(--font-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.hero-cta .btn-secondary {
  padding: 1.2em 2.5em;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1vw;
  font-family: var(--font-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 3em;
  margin-top: 4em;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 2.5vw;
  color: #ff6b00;
  display: block;
  margin-bottom: 0.2em;
}

.stat-label {
  font-family: var(--font-primary);
  font-size: 0.9vw;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content Sections */
.content-section {
  padding: 5em 8em;
  width: 100%;
}

.content-section.dark {
  background: var(--color-bg-secondary);
  width: 100%;
  max-width: none;
}

.content-section
  > *:not(.section-header):not(.two-column):not(.use-cases-grid):not(
    .process-grid
  ):not(.features-list):not(.geo-cards) {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-header,
.two-column,
.use-cases-grid,
.process-grid,
.features-list,
.geo-cards {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4em;
}

.section-header h2 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 4vw;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.section-header p {
  font-family: var(--font-primary);
  font-size: 1.4vw;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3em;
  align-items: center;
}

.column-content h3 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 2.5vw;
  margin-bottom: 1em;
  color: var(--color-text);
}

.column-content p {
  font-family: var(--font-primary);
  font-size: 1.3vw;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.column-content ul {
  list-style: none;
  padding: 0;
}

.column-content ul li {
  font-family: var(--font-primary);
  font-size: 1.3vw;
  padding: 0.8em 0;
  padding-left: 2em;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.column-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-weight: bold;
  font-size: 1.3vw;
}

.column-image {
  background: var(--color-bg-secondary);
  border-radius: 12px;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.use-case-card {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5em;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b00 0%, #fc002d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
  font-size: 1.8vw;
}

.use-case-card h3 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 1.6vw;
  margin-bottom: 1em;
  color: var(--color-text);
}

.use-case-card p {
  font-family: var(--font-primary);
  font-size: 1.1vw;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5em;
}

.use-case-examples {
  font-family: var(--font-primary);
  font-size: 1vw;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.process-step {
  position: relative;
  padding-left: 4em;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b00 0%, #fc002d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 1.5vw;
}

.process-step h3 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 1.6vw;
  margin-bottom: 0.8em;
  color: white;
}

.process-step p {
  font-family: var(--font-primary);
  font-size: 1.1vw;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 3em;
}

.feature-item {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff6b00;
  font-size: 1.3vw;
}

.feature-content h4 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: 1.4vw;
  color: var(--color-text);
}

.feature-content p {
  font-family: var(--font-primary);
  font-size: 1.1vw;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Geographic Focus */
.geo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3em;
  margin-top: 3em;
}

.geo-card {
  background: var(--color-bg-secondary);
  border-radius: 12px;
  padding: 3em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.geo-card p {
  font-family: var(--font-primary);
  font-size: 1.1vw;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.geo-flag {
  font-size: 4vw;
  margin-bottom: 0.5em;
}

.geo-card h3 {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 2.5vw;
  margin-bottom: 1em;
}

.geo-stat {
  background: rgba(255, 107, 0, 0.1);
  padding: 1.5em;
  border-radius: 8px;
  margin: 1.5em 0;
}

.geo-stat-number {
  font-family: "Druk Wide Bold";
  font-style: normal;
  font-weight: 900;
  font-size: 3vw;
  color: #ff6b00;
  display: block;
  margin-bottom: 0.3em;
}

.geo-stat-text {
  font-family: var(--font-primary);
  font-size: 1.1vw;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Footer Adjustments */
.footer-header {
  padding: 10em 1.5em 0 1.5em !important;
}

/* Responsive */
@media (max-width: 900px) {
  .callout-chip {
    font-size: 3vw;
  }

  .internal-tools-hero {
    padding: 5em 2em 2em;
  }

  .internal-tools-hero h1 {
    font-size: 10vw;
  }

  .internal-tools-hero p {
    font-size: 4vw;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
    font-size: 4vw;
  }

  .stat-number {
    font-size: 8vw;
  }

  .stat-label {
    font-size: 3vw;
  }

  .stats-bar {
    gap: 2em;
  }

  .content-section {
    padding: 3em 2em;
  }

  .section-header {
    margin-bottom: 2.5em;
  }

  .section-header h2 {
    font-size: 8vw;
  }

  .section-header p {
    font-size: 4vw;
  }

  .column-content h3 {
    font-size: 6vw;
  }

  .column-content p {
    font-size: 3.5vw;
  }

  .column-content ul li {
    font-size: 3.5vw;
  }

  .column-content ul li:before {
    font-size: 3.5vw;
  }

  .two-column {
    gap: 2em;
  }

  .use-case-icon {
    font-size: 6vw;
  }

  .use-case-card h3 {
    font-size: 5vw;
  }

  .use-case-card p {
    font-size: 3.5vw;
  }

  .use-case-examples {
    font-size: 3vw;
  }

  .process-number {
    font-size: 5vw;
  }

  .process-step h3 {
    font-size: 4.5vw;
  }

  .process-step p {
    font-size: 3.5vw;
  }

  .feature-icon {
    font-size: 5vw;
  }

  .feature-content h4 {
    font-size: 4vw;
  }

  .feature-content p {
    font-size: 3.5vw;
  }

  .geo-flag {
    font-size: 10vw;
  }

  .geo-card h3 {
    font-size: 6vw;
  }

  .geo-card p {
    font-size: 3.5vw;
  }

  .geo-stat-number {
    font-size: 7vw;
  }

  .geo-stat-text {
    font-size: 3.5vw;
  }

  .use-cases-grid,
  .process-grid,
  .features-list,
  .geo-cards {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding-left: 3.5em;
  }

  .footer-header {
    padding: 5em 1.5em 0 1.5em !important;
  }
}
