*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --gold:#c9a84c;
  --gold-light:#e2c97e;
  --black:#0c0c0c;
  --dark:#151515;
  --dark2:#1a1a1a;
  --gray:#888;
  --light:#e8e8e8;
  --white:#ffffff;
  --line:#06c755;
}
html{scroll-behavior:smooth}
body{background:var(--black);color:var(--light);font-family:'Noto Sans JP',sans-serif;font-weight:300}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5vw;height:70px;
  background:rgba(12,12,12,0.95);
  border-bottom:1px solid rgba(201,168,76,0.3);
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo-mark{
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Noto Sans JP',sans-serif;
  text-transform:none;
}
.nav-logo-text{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;color:var(--white);letter-spacing:0.15em}
.nav-menu{display:flex;align-items:center;gap:2.5rem;list-style:none}
.nav-menu a{color:var(--gray);text-decoration:none;font-size:0.78rem;letter-spacing:0.12em;text-transform:uppercase;transition:color .2s}
.nav-menu a:hover{color:var(--gold)}
.nav-tel{
  display:flex;align-items:center;gap:0.5rem;
  color:var(--gold);font-size:0.85rem;font-weight:700;
  text-decoration:none;letter-spacing:0.05em
}
.nav-tel::before{content:'📞';font-size:0.8rem}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.hamburger span{width:24px;height:2px;background:var(--white);display:block;transition:all .3s}

/* ── HERO ── */
.hero{
  min-height:100svh;
  position:relative;
  display:flex;align-items:center;justify-content:center;
  padding:90px 5vw 60px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background:url('assets/mtec_hero_car.jpg') center/cover no-repeat;
  filter:brightness(0.35);
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(12,12,12,0.7) 0%,rgba(12,12,12,0.2) 50%,rgba(12,12,12,0.8) 100%);
}
.hero-content{position:relative;text-align:center;max-width:860px}
.hero-sub{
  font-size:0.8rem;letter-spacing:0.3em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.4rem;
  display:flex;align-items:center;justify-content:center;gap:1rem
}
.hero-sub::before,.hero-sub::after{content:'';width:40px;height:1px;background:var(--gold);display:inline-block}
.hero h1{
  font-size:clamp(1.2rem, 5.5vw, 3.5rem);
  font-weight:900;line-height:1.2;
  color:var(--white);margin-bottom:1rem;
  text-shadow:0 2px 20px rgba(0,0,0,0.8);
  white-space:nowrap;
}
.hero h1 em{color:var(--gold);font-style:normal}
.hero-desc{font-size:clamp(0.85rem,1.8vw,1rem);color:rgba(232,232,232,0.75);margin-bottom:2.5rem}
.btn-gold{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color:var(--black);
  padding:1rem 2.8rem;font-size:0.95rem;font-weight:700;
  letter-spacing:0.1em;text-decoration:none;border-radius:2px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
  position:relative;
  overflow:hidden;
  transition:background .2s,transform .15s,box-shadow .2s;
  cursor:pointer
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-30deg);
  animation: shine 4s infinite ease-in-out;
}
.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}
.hero-stats{
  display:flex;justify-content:center;gap:4rem;margin-top:4rem;
  flex-wrap:wrap;
}
.hero-stat{text-align:center}
.hero-stat-num{
  font-family:'Bebas Neue',sans-serif;font-size:3rem;color:var(--white);line-height:1
}
.hero-stat-num span{color:var(--gold);font-size:1.5rem}
.hero-stat-label{font-size:0.7rem;color:var(--gray);letter-spacing:0.12em;text-transform:uppercase;margin-top:4px}
.hero-scroll{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  color:var(--gray);font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase
}
.scroll-line{width:1px;height:40px;background:linear-gradient(var(--gold),transparent);animation:scrollAnim 2s infinite}
@keyframes scrollAnim{0%{opacity:0;transform:scaleY(0);transform-origin:top}50%{opacity:1}100%{opacity:0;transform:scaleY(1);transform-origin:top}}

/* ── SECTION COMMON ── */
.section{padding:100px 5vw}
.section-header{text-align:center;margin-bottom:60px}
.section-eyebrow{
  font-size:0.7rem;letter-spacing:0.3em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.8rem;
  display:flex;align-items:center;justify-content:center;gap:0.8rem
}
.section-eyebrow::before,.section-eyebrow::after{content:'';width:30px;height:1px;background:var(--gold)}
.section-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2rem,5vw,3rem);letter-spacing:0.1em;color:var(--white)
}
.section-line{width:50px;height:2px;background:var(--gold);margin:1rem auto 0}

/* ── SERVICES ── */
.services{background:var(--dark)}
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2px;
  background:rgba(201,168,76,0.1);border:1px solid rgba(201,168,76,0.1)
}
.service-card{
  background:var(--black);overflow:hidden;position:relative;
  transition:background .3s;
}
.service-card:hover{background:#111}
.service-img{
  width:100%;height:220px;object-fit:cover;
  filter:brightness(0.75);transition:filter .4s,transform .4s
}
.service-card:hover .service-img{filter:brightness(0.9);transform:scale(1.03)}
.service-body{padding:1.8rem 1.6rem}
.service-body h3{
  font-size:1.3rem;font-weight:700;color:var(--white);
  margin-bottom:0.6rem;
  display:flex;align-items:center;gap:0.6rem
}
.service-body h3::before{content:'';width:20px;height:2px;background:var(--gold);flex-shrink:0}
.service-body p{font-size:0.82rem;color:var(--gray);line-height:1.9}
.service-tags{display:flex;flex-wrap:wrap;gap:0.4rem;margin-top:1rem}
.service-tag{
  font-size:0.65rem;padding:0.25rem 0.7rem;
  border:1px solid rgba(201,168,76,0.35);color:var(--gold);
  border-radius:1px;letter-spacing:0.06em
}

/* ── GALLERY ── */
.gallery{background:var(--black)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:4px
}
.gallery-item{
  position:relative;overflow:hidden;
  background:var(--dark2);
  aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;filter:brightness(0.8);transition:filter .4s,transform .4s}
.gallery-item:hover img{filter:brightness(1);transform:scale(1.05)}
.gallery-label{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(0,0,0,0.8));
  padding:1.5rem 1rem 0.8rem;
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold)
}
.gallery-placeholder{
  width:100%;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.5rem;
  color:var(--gray);font-size:0.8rem;letter-spacing:0.15em;text-transform:uppercase;
  background:var(--dark2);border:1px dashed rgba(201,168,76,0.2)
}
.gallery-placeholder .ph-label{
  font-size:0.75rem;color:var(--gold);letter-spacing:0.2em
}

/* ── VOICE ── */
.voice{background:var(--dark)}
.voice-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.voice-card{
  background:var(--black);border:1px solid rgba(201,168,76,0.12);
  padding:1.5rem;border-radius:2px;position:relative
}
.voice-card::before{
  content:'\201C';
  position:absolute;top:-0.5rem;left:1rem;
  font-size:4rem;color:var(--gold);opacity:0.25;line-height:1;
  font-family:Georgia,serif
}
.voice-img-wrapper{
  width:100%;aspect-ratio:16/9;overflow:hidden;border-radius:2px;margin-bottom:1.2rem;
  border:1px solid rgba(255,255,255,0.05);
}
.voice-img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(0.95);transition:transform 0.4s;
}
.voice-card:hover .voice-img{
  transform:scale(1.03);
}
.voice-text{font-size:0.8rem;color:var(--gray);line-height:1.9;margin-bottom:1rem}
.voice-name{font-size:0.72rem;color:var(--gold);letter-spacing:0.1em}
.stars{color:var(--gold);font-size:0.85rem;margin-bottom:0.5rem;letter-spacing:0.1em}

/* ── PRICING ── */
.pricing{background:var(--black)}
.pricing-table{width:100%;border-collapse:collapse;margin-top:2rem}
.pricing-table th{
  background:var(--gold);color:var(--black);
  padding:1rem 1.5rem;font-size:0.8rem;font-weight:700;
  letter-spacing:0.1em;text-align:center
}
.pricing-table th:first-child{background:transparent;color:var(--gray);font-weight:300}
.pricing-table td{
  padding:1rem 1.5rem;font-size:0.85rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
  text-align:center;color:var(--light)
}
.pricing-table td:first-child{text-align:left;color:var(--gray);font-size:0.8rem}
.pricing-table tr:hover td{background:rgba(201,168,76,0.04)}
.pricing-table tfoot td{
  color:var(--gray);font-size:0.72rem;
  border-bottom:none;padding-top:1.5rem;text-align:left
}
.price-note{
  margin-top:1.5rem;padding:1rem 1.5rem;
  background:rgba(201,168,76,0.06);border-left:3px solid var(--gold);
  font-size:0.8rem;color:var(--gray);line-height:1.8
}

/* ── ACCESS ── */
.access{background:var(--dark)}
.access-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start
}
.access-shop-img{
  width:100%;aspect-ratio:16/9;object-fit:cover;
  border:1px solid rgba(201,168,76,0.15);margin-bottom:1rem
}
.access-shop-placeholder{
  width:100%;aspect-ratio:16/9;background:var(--dark2);
  border:1px solid rgba(201,168,76,0.15);margin-bottom:1rem;
  display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:0.8rem;letter-spacing:0.1em
}
.map-embed{
  width:100%;aspect-ratio:4/3;background:var(--dark2);
  border:1px solid rgba(201,168,76,0.15);
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;gap:0.5rem;color:var(--gray);font-size:0.8rem
}
.access-info{list-style:none}
.access-info li{
  display:flex;gap:1rem;
  padding:0.9rem 0;border-bottom:1px solid rgba(255,255,255,0.05);
  font-size:0.85rem;align-items:flex-start
}
.access-info li:last-child{border-bottom:none}
.access-info .label{
  color:var(--gold);font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;
  min-width:70px;padding-top:2px
}
.access-btns{display:flex;gap:0.8rem;margin-top:1.8rem;flex-wrap:wrap}
.btn-line-full{
  flex:1;background:var(--line);color:var(--white);
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  padding:0.9rem;font-size:0.9rem;font-weight:700;
  text-decoration:none;border-radius:2px;transition:opacity .2s;
  letter-spacing:0.05em
}
.btn-line-full:hover{opacity:0.85}
.btn-x{
  flex:1;background:#1a1a1a;color:var(--white);border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  padding:0.9rem;font-size:0.9rem;font-weight:700;
  text-decoration:none;border-radius:2px;transition:background .2s;
  letter-spacing:0.05em
}
.btn-x:hover{background:#222}
.btn-insta{
  flex:1;background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);color:var(--white);border:none;
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  padding:0.9rem;font-size:0.9rem;font-weight:700;
  text-decoration:none;border-radius:2px;transition:opacity .2s;
  letter-spacing:0.05em;
}
.btn-insta:hover{opacity:0.85}

/* ── CONTACT FORM ── */
.contact-form{margin-top:2rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block;font-size:0.75rem;color:var(--gray);letter-spacing:0.08em;margin-bottom:0.4rem}
.form-group input,.form-group select,.form-group textarea{
  width:100%;background:var(--dark2);border:1px solid rgba(255,255,255,0.1);
  color:var(--white);padding:0.75rem 1rem;font-size:0.85rem;
  border-radius:1px;font-family:'Noto Sans JP',sans-serif;
  transition:border-color .2s;outline:none
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--gold)
}
.form-group textarea{min-height:100px;resize:vertical}
.form-group select option{background:var(--dark2)}
.btn-submit{
  width:100%;background:var(--gold);color:var(--black);
  padding:1rem;font-size:0.95rem;font-weight:700;
  border:none;border-radius:2px;cursor:pointer;
  letter-spacing:0.1em;transition:background .2s;
  font-family:'Noto Sans JP',sans-serif
}
.btn-submit:hover{background:var(--gold-light)}

/* ── CTA STRIP ── */
.cta-strip{
  background:linear-gradient(135deg,#1a1300 0%,#2a1f00 50%,#1a1300 100%);
  border-top:1px solid rgba(201,168,76,0.3);
  border-bottom:1px solid rgba(201,168,76,0.3);
  padding:50px 5vw;text-align:center
}
.cta-strip h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(1.8rem,4vw,2.8rem);letter-spacing:0.1em;
  color:var(--white);margin-bottom:0.5rem
}
.cta-strip p{font-size:0.85rem;color:var(--gray);margin-bottom:1.8rem}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ── FOOTER ── */
footer{
  background:#080808;
  border-top:1px solid rgba(201,168,76,0.15);
  padding:60px 5vw 30px
}
.footer-top{
  display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:3rem;
  margin-bottom:3rem;padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,0.05)
}
.footer-brand .logo-mark{
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Noto Sans JP',sans-serif;
  margin-bottom:1rem
}
.footer-brand h3{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;color:var(--white);letter-spacing:0.1em;margin-bottom:0.5rem}
.footer-brand p{font-size:0.78rem;color:var(--gray);line-height:1.9}
.footer-col h4{
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.2rem
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:0.6rem}
.footer-col a{color:var(--gray);text-decoration:none;font-size:0.8rem;transition:color .2s}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem
}
.footer-bottom p{font-size:0.72rem;color:rgba(136,136,136,0.5)}

/* ── FLOAT BTNS ── */
.float-btns{
  position:fixed;bottom:24px;right:24px;z-index:900;
  display:flex;flex-direction:column;gap:10px
}
.float-btn{
  display:flex;align-items:center;gap:0.5rem;
  padding:0.65rem 1.2rem;border-radius:50px;
  font-size:0.82rem;font-weight:700;text-decoration:none;
  box-shadow:0 4px 20px rgba(0,0,0,0.5);transition:transform .2s,box-shadow .2s
}
.float-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.6)}
.float-line-btn{background:var(--line);color:var(--white)}
.float-x-btn{background:#1a1a1a;color:var(--white);border:1px solid rgba(255,255,255,0.15)}

/* ── CLIFFORD MODAL ── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--dark2);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.modal-overlay.is-open .modal-content {
  transform: translateY(0);
}
.modal-close-top {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
.modal-close-top:hover {
  color: var(--gold);
}
.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.modal-eyebrow {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.modal-title {
  font-size: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  letter-spacing: 0.05em;
}
.modal-title-sub {
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 0.5rem;
  color: var(--gray);
}
.modal-body {
  padding: 30px;
}
.modal-lead {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.modal-lead strong {
  color: var(--gold);
}
.modal-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.modal-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.modal-feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.modal-feature-text h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.modal-feature-text p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.modal-closing {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.modal-closing p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal-close-bottom-action {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.modal-close-bottom {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #111;
  color: var(--gray);
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-close-bottom:hover {
  background: #222;
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nav-menu{display:none}
  .hamburger{display:flex}
  .access-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .section{padding:70px 5vw}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .hero-stats{gap:2rem}
}

/* ── INTERACTION STYLES (JS SUPPORT) ── */

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Active */
@media(max-width:900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12,12,12,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-menu a {
    font-size: 1.2rem;
    color: var(--white);
  }
}

/* Scroll Fade In */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for grid elements */
.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.scroll-fade:nth-child(3) { transition-delay: 0.2s; }
.scroll-fade:nth-child(4) { transition-delay: 0.3s; }
.scroll-fade:nth-child(5) { transition-delay: 0.4s; }

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* ── HERO ACTIONS & LINE CTA ── */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
.hero-actions > a {
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
.btn-line-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--line);
  color: var(--white);
  padding: 1rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.35);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5);
}

/* ── SECURITY STRENGTHS ── */
.security-strengths {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.strength-card {
  background: rgba(26, 26, 26, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}
.strength-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.12);
}
.strength-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3));
}
.strength-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.strength-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.8;
  text-align: justify;
}

/* ── INSTAGRAM & OWNER ── */
/* ── 𝕏 (TWITTER) & OWNER ── */
.twitter-owner {
  background: var(--dark);
}
.x-owner-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media(max-width: 900px) {
  .x-owner-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.x-profile-card {
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 90px;
  text-align: left;
}
.x-avatar-wrapper {
  margin-top: -50px;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.x-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--black);
  background: var(--dark);
}
.x-profile-info {
  margin-bottom: 1rem;
}
.x-username {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.2rem;
}
.x-verified {
  font-size: 0.95rem;
  user-select: none;
}
.x-userid {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}
.btn-x-follow {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 0.45rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-x-follow:hover {
  background: #e6e6e6;
  transform: scale(1.02);
}
.x-bio {
  margin-bottom: 1.2rem;
}
.x-bio .bio-text {
  font-size: 0.82rem;
  color: rgba(232, 232, 232, 0.85);
  line-height: 1.6;
}
.x-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem 0;
  margin-bottom: 1.2rem;
}
.x-stat {
  display: flex;
  gap: 6px;
  font-size: 0.82rem;
}
.x-stat .stat-num {
  font-weight: 700;
  color: var(--white);
}
.x-stat .stat-label {
  color: var(--gray);
}
.x-pinned-post {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
}
.x-pinned-post .pinned-header {
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.x-pinned-post .pinned-text {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.6;
}

/* 𝕏 Feed Grid */
.x-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media(max-width: 600px) {
  .x-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
.x-feed-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dark2);
}
.x-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.x-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.x-feed-item:hover img {
  transform: scale(1.05);
}
.x-feed-item:hover .x-overlay {
  opacity: 1;
}
.x-overlay span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── PRICING TABLE HIGHLIGHT ── */
.pricing-table th.col-highlight {
  background: #ae8b2a !important; /* より深みと高級感のあるゴールド */
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.1);
}
.pricing-table td.col-highlight {
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  border-right: 2px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}
.pricing-table tr:hover td.col-highlight {
  background: rgba(201, 168, 76, 0.09) !important;
}
.pricing-table tr:last-child td.col-highlight {
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}
.pricing-table tbody tr:first-child td.col-highlight {
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.badge-recommend {
  display: block;
  font-size: 0.55rem;
  font-weight: 900;
  background: var(--white);
  color: #ae8b2a;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  width: max-content;
  margin: 4px auto 0;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ── IMAGE LOGO STYLES ── */
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
  display: block;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 1rem;
}

/* ── LINE QR CARD STYLES ── */
.line-qr-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(26, 26, 26, 0.65);
  border: 1px solid rgba(6, 199, 85, 0.25);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
@media(max-width: 600px) {
  .line-qr-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem;
  }
}
.line-qr-code {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 4px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.line-qr-text {
  flex: 1;
}
.line-qr-text h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media(max-width: 600px) {
  .line-qr-text h4 {
    justify-content: center;
  }
}
.line-qr-text p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
}

/* FAQ SECTION */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-question.active::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  line-height: 1.8;
  color: #ddd;
  font-size: 0.95rem;
}
