/* =============================================
   Hero Section Styles
   ヒーロー + CTA + 数値セクション (#hero, #hero-features)
   ※テスト版専用。本番適用時はrenewal.cssに統合する
   ※全スタイルをこのファイルで一元管理（Critical CSS不使用）
   ============================================= */

/* ===========================================
   0. HERO LAYOUT（レイアウト骨格）
   =========================================== */

/* Hero Section */
#hero.hero-teto {
  height: 100vh;
  min-height: 550px;
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--navy-deep, #001a3d);
  overflow: hidden;
}

@media (max-width: 1200px) {
  #hero.hero-teto {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}

/* Hero Text Container */
#hero .hero-teto-container {
  width: 50%;
  padding-top: 70px;
  padding-left: 3%;
  padding-right: 1.5rem;
  padding-bottom: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: transparent;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  #hero .hero-teto-container {
    width: 100%;
    padding: 80px 1.5rem 40px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
  }
}

/* スマホ: calc()で縦中央配置（コンテンツ高さ約500pxを想定） */
@media (max-width: 768px) {
  #hero .hero-teto-container {
    padding-top: clamp(80px, calc(50vh - 240px), 180px);
    padding-bottom: 30px;
    justify-content: flex-start;
  }
}

@media (min-width: 1201px) {
  #hero .hero-teto-container {
    text-align: left;
  }
}

/* 1201-1400px: コンテンツがはみ出さないよう微調整 */
@media (min-width: 1201px) and (max-width: 1400px) {
  #hero .hero-teto-container {
    width: 53%;
    padding-right: 2rem;
  }
}

/* Hero Content Inner */
#hero .hero-teto-content {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
}

/* Hero Video Area */
#hero .hero-teto-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  z-index: 1;
}

.hero-teto-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  #hero .hero-teto-visual {
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: none;
    z-index: 0;
  }
}
/* タブレット以下: 静止画に切替（パフォーマンス＋安定性） */
.hero-image-mobile {
  display: none;
}

.hero-video {
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

@media (max-width: 1200px) {
  .hero-video {
    display: none;
  }

  .hero-image-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Large PC: clip-path調整 */
@media (min-width: 1401px) and (max-width: 1600px) {
  #hero .hero-teto-visual {
    width: 48%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%);
  }

  #hero .hero-teto-container {
    width: 52%;
    padding-right: 2rem;
  }
}

/* Gradient Overlay - Desktop */
@media (min-width: 1101px) {
  #hero .hero-teto-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 26, 61, 0.3) 0%,
      transparent 40%,
      rgba(0, 26, 61, 0.85) 100%
    );
  }
}

/* Gradient Overlay - Tablet/Mobile */
@media (max-width: 1200px) {
  #hero .hero-teto-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 45, 120, 0.65) 0%,
      rgba(0, 20, 60, 0.8) 100%
    );
    backdrop-filter: blur(3px);
    z-index: 1;
  }

  #hero .hero-teto-container {
    z-index: 10;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  }
}

/* ===========================================
   1. TITLE & ANIMATION
   =========================================== */

.teto-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 5.2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: clamp(1.5rem, 3vh, 3rem);
  opacity: 0;
  animation: fadeInTitle 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInTitle {
  to {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .teto-main-title {
    margin-top: 0;
  }
}

@media (min-width: 1201px) {
  .teto-main-title {
    text-align: left;
  }

  .teto-main-title .line-break-large {
    display: block;
    margin-bottom: 1.2rem;
  }

  .teto-main-title .subtitle-line-medium {
    letter-spacing: -0.06em;
  }
}

/* Target Highlight (gold gradient text) */
.teto-main-title .target-highlight {
  background: linear-gradient(to right, #c5a059, #ffebbc, #c5a059);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s linear infinite;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
  letter-spacing: -0.08em;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

/* Subtitle Lines */
.teto-main-title .subtitle-line:not(.target-highlight) {
  font-size: 0.8em;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.teto-main-title .subtitle-line {
  font-size: 0.8em;
  display: inline;
  line-height: 1.3;
  color: #fff;
}

.teto-main-title .subtitle-line-medium {
  font-size: 0.8em;
  color: #fff;
  letter-spacing: -0.08em;
}

.teto-main-title .target-highlight.subtitle-line {
  font-size: 0.9em;
}

.teto-main-title .line-break-large {
  display: block;
  margin-bottom: 0.5rem;
}

/* Gold Underline */
.teto-main-title .gold-underline {
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, var(--accent-gold), transparent) 1;
  padding-bottom: 0.3rem;
  display: inline-block;
}

/* Desktop: nowrap */
@media (min-width: 1201px) {
  .teto-main-title .target-highlight {
    white-space: nowrap;
  }

  .teto-main-title .subtitle-line {
    white-space: nowrap;
  }
}

/* Mobile Break */
.br-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .br-mobile {
    display: block;
  }
}

/* Mobile: font-size & line-height adjustments */
@media (max-width: 768px) {
  .teto-main-title {
    line-height: 1.3;
  }

  .teto-main-title .subtitle-line-small {
    font-size: 0.63em;
    letter-spacing: -0.07em;
  }

  .teto-main-title .subtitle-line-medium {
    font-size: 0.75em;
    letter-spacing: -0.05em;
  }

  /* 詳細度(0,3,0)で上書き：target-highlightの0.9emを確実に打ち消す */
  .teto-main-title .target-highlight.subtitle-line {
    font-size: 0.75em;
    letter-spacing: -0.05em;
  }
}

/* Subtitle */
.teto-sub-title {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInTitle 0.8s ease-out 0.4s forwards;
}

@media (min-width: 1201px) {
  .teto-sub-title {
    max-width: 95%;
  }
}

/* 1201-1400px: サブタイトルの孤立改行を防止 */
@media (min-width: 1201px) and (max-width: 1400px) {
  .teto-sub-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .teto-sub-title {
    font-size: 0.9rem;
  }
}

/* PRIDE Text */
.teto-catch-en {
  position: absolute;
  top: 3%;
  right: 5%;
  left: auto;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 14rem);
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-5deg);
  opacity: 0;
  animation: fadeInPride 0.6s ease-in 0.3s forwards;
}

@keyframes fadeInPride {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .teto-catch-en {
    display: none;
  }
}

/* ===========================================
   2. CTA ENHANCEMENT
   =========================================== */

/* Tagline Grid */
.hero-tagline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1610px) {
  .hero-tagline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-cta-tagline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

/* Hero CTA Button - Green Gradient (#heroで詳細度確保) */
#hero .hero-actions .btn-primary {
  background: linear-gradient(
    135deg,
    var(--line-green) 0%,
    var(--line-green-dark) 100%
  );
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.4rem 2.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(6, 199, 85, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 480px;
}

#hero .hero-actions .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(6, 199, 85, 0.5);
}

/* --- CTAボタン 5段階レスポンシブ --- */

/* 1. 通常PC (1201-1600px) */
@media (min-width: 1201px) and (max-width: 1600px) {
  #hero .hero-actions .btn-primary {
    font-size: 1.05rem;
    padding: 1.2rem 2rem;
    max-width: 420px;
  }
}

/* 2. タブレット (769-1200px) */
@media (max-width: 1200px) {
  .hero-actions {
    margin-top: 1.5rem;
  }

  #hero .hero-actions .btn-primary {
    font-size: 1rem;
    padding: 1.1rem 1.8rem;
    max-width: 400px;
  }
}

/* 3. 大型スマホ (481-768px) */
@media (max-width: 768px) {
  .hero-actions {
    align-items: center;
  }

  #hero .hero-actions .btn-primary {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    width: 66%;
  }
}

/* 4. スマホ (≤480px) */
@media (max-width: 480px) {
  #hero .hero-actions .btn-primary {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
    width: 90%;
  }
}

/* Enhanced CTA Block */
.cta-enhanced-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 1200px) {
  .cta-enhanced-block {
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

/* Enhanced CTA Button */
.cta-enhanced {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  font-size: 1.05rem;
  min-height: 75px;
  max-width: 100%;
}

@media (min-width: 1201px) and (max-width: 1600px) {
  .cta-enhanced {
    padding: 1.2rem 1.8rem;
    font-size: 1rem;
    min-height: 68px;
  }
}

@media (max-width: 1200px) {
  .cta-enhanced {
    width: 66%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }

  /* Hide sub text on tablet CTA */
  #hero.hero-teto .cta-enhanced .cta-sub {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-enhanced {
    width: 85%;
    min-height: 60px;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cta-enhanced {
    width: 92%;
    padding: 0.9rem 1.2rem;
    min-height: 55px;
    gap: 0.6rem;
  }
}

.cta-enhanced .fab {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .cta-enhanced .fab {
    font-size: 1.2rem;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  white-space: normal;
}

@media (max-width: 1200px) {
  .cta-content {
    align-items: center;
    text-align: center;
    white-space: normal;
  }
}

.cta-main {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .cta-main {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-main {
    font-size: 0.9rem;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
}

.cta-sub {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .cta-sub {
    font-size: 0.75rem;
  }
}

/* Trust Signals */
.cta-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  justify-content: center;
  text-align: center;
  margin-bottom: 0.8rem;
  background: rgba(0, 20, 60, 0.5);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-trust-signals span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
}

@media (max-width: 1200px) {
  .cta-trust-signals {
    justify-content: center;
    font-size: 0.75rem;
  }

  .cta-trust-signals span {
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 768px) {
  .cta-trust-signals {
    font-size: 0.65rem;
    gap: 0.3rem 0.5rem;
    margin-bottom: 0.3rem;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    letter-spacing: -0.02em;
  }

  .cta-trust-signals span {
    padding: 0.2rem 0.3rem;
    white-space: nowrap;
  }
}

/* Direct Apply Link - CTAボタン直下の安心テキスト */
.cta-direct-apply {
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin-top: 0.5rem;
}

.cta-direct-apply p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* 1201-1600px: ボタンのmax-widthに合わせる */
@media (min-width: 1201px) and (max-width: 1600px) {
  .cta-direct-apply {
    max-width: 420px;
  }
}

.cta-direct-apply a {
  color: var(--accent-gold);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.cta-direct-apply a:hover {
  color: #ffebbc;
}

@media (max-width: 1200px) {
  .cta-direct-apply {
    width: 66%;
    max-width: none;
    margin: 0.5rem auto 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cta-direct-apply {
    width: 100%;
  }
}

/* Title white text on tablet */
@media (max-width: 1200px) {
  .teto-main-title span[style*="color:#fff"] {
    -webkit-text-fill-color: #fff;
    color: #fff;
  }
}

/* Micro CTA (after sections) */
.micro-cta {
  margin: 2rem auto;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(6, 199, 85, 0.05) 0%,
    rgba(5, 163, 70, 0.05) 100%
  );
  border-left: 4px solid var(--line-green);
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
}

.micro-cta p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}

.micro-cta a {
  color: var(--line-green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--line-green);
  padding: 0 0.2rem;
  transition: all 0.2s;
}

.micro-cta a:hover {
  background: var(--line-green);
  color: white;
}

@media (max-width: 1200px) {
  .micro-cta {
    margin: 1.5rem 1rem;
    padding: 1rem;
  }

  .micro-cta p {
    font-size: 0.9rem;
  }
}

/* ===========================================
   3. HERO SUPPLEMENTARY ELEMENTS
   =========================================== */

/* Hero Contact */
.hero-contact-minimal {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  gap: 2rem;
  max-width: 700px;
}

.contact-minimal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-contact-minimal {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    border-top: none;
    padding-top: 0;
  }

  .contact-minimal-item {
    flex: 1;
    background: rgba(0, 26, 61, 0.8);
    justify-content: center;
    font-size: 0.8rem;
    width: auto;
    padding: 0.8rem 0.5rem;
    white-space: nowrap;
  }
}

/* Scroll Indicator */
.mouse-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.mouse-icon {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0%,
  100% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.3;
    top: 20px;
  }
}

.mouse-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-family: var(--font-en);
}

@media (max-width: 1200px) {
  .mouse-scroll {
    display: none;
  }
}

/* Hero Tagline Grid */
@media (max-width: 768px) {
  .hero-tagline-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-tagline {
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    margin-bottom: 0;
  }
}

/* ===========================================
   4. DATA HIGHLIGHTS (数値バッジ + 選ばれる理由)
   =========================================== */

.hero-features {
  display: block;
  padding: 2.5rem 0;
  background: var(--navy-deep);
}

/* Section Heading */
.section-heading-badges {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
}

.section-heading-badges::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0.6rem auto 0;
}

/* Gold Line for dark backgrounds */
.gold-line::after {
  background: var(--accent-gold);
}

/* Impact Badges */
.hero-impact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .hero-impact-badges {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-impact-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }

  .hero-features {
    padding: 2rem 0;
  }
}

.impact-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 12px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.impact-badge:hover {
  transform: translateY(-3px);
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--accent-gold);
}

@media (min-width: 769px) {
  .impact-badge {
    padding: 1.2rem 2rem;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .impact-badge {
    padding: 1rem 0.8rem;
    min-width: unset;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
  }
}

.impact-badge .badge-number {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 769px) {
  .impact-badge .badge-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .impact-badge .badge-number {
    font-size: 2rem;
    background: linear-gradient(135deg, #c5a059, #e8d5a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.badge-number .unit {
  font-size: 0.6em;
  font-weight: 600;
}

.impact-badge .badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .impact-badge .badge-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .impact-badge .badge-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
  }
}

/* Hide on mobile class */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* Reason Cards (default hidden, mobile only) */
.hero-tagline-grid-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-tagline-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-cta-tagline-mobile {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 26, 61, 0.08);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
  }

  .hero-cta-tagline-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 26, 61, 0.15);
  }

  .tagline-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #c5a059 0%, #d4b070 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  }

  .tagline-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .tagline-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
}

/* ===========================================
   5. LAPTOP HEIGHT ADJUSTMENT
   =========================================== */

@media (max-height: 900px) and (min-width: 1201px) {
  #hero.hero-teto {
    min-height: 100vh;
  }

  .hero-teto-content {
    padding-top: 0;
  }

  .teto-main-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 4rem);
  }

  .teto-sub-title {
    margin-bottom: 1rem;
  }

  .hero-actions {
    margin-top: 0.8rem;
    gap: 1rem;
  }
}
