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

:root {
  --black: #0b0c0e;
  --dark: #111317;
  --mid: #1c1f26;
  --border: #2a2d35;
  --white: #f5f4f0;
  --gray: #8a8f9a;
  --accent: #e8a045;
  --accent2: #d4863a;
  --blue: #4a6cf7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
#site-header.scrolled {
  background: rgba(11,12,14,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.site-logo span { color: var(--accent); }

/* WordPress nav menu */
#site-nav { display: flex; align-items: center; }
#site-nav ul { display: flex; gap: 2.4rem; align-items: center; list-style: none; margin: 0; padding: 0; }
#site-nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
#site-nav ul li a:hover { color: var(--white); }
#site-nav ul li.menu-cta a {
  background: var(--accent);
  color: var(--black);
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  font-weight: 600;
}
#site-nav ul li.menu-cta a:hover { background: var(--accent2); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; transition: 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,12,14,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 5%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(74,108,247,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,160,69,0.06) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--gray);
  margin-top: 0.4rem;
}
.hero-title .accent-text { color: var(--accent); }
.hero-desc { font-size: 1rem; color: var(--gray); line-height: 2; margin-bottom: 3rem; max-width: 520px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--black);
  padding: 1rem 2rem; border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); color: var(--black); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--border); color: var(--white);
  padding: 1rem 2rem; border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 500; font-size: 0.9rem;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--gray); transform: translateY(-2px); color: var(--white); }
.hero-stats { position: absolute; bottom: 4rem; right: 5%; display: flex; gap: 3rem; }
.stat-item { text-align: right; }
.stat-num { font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent); font-size: 1.2rem; }
.stat-label { font-size: 0.72rem; color: var(--gray); margin-top: 0.3rem; letter-spacing: 0.05em; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gray); font-family: 'Inter', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ── SECTIONS ── */
section { padding: 8rem 5%; }
.section-label {
  font-family: 'Inter', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
}
.section-title .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400; color: var(--gray); display: block; margin-top: 0.4rem;
}
.section-desc { font-size: 0.95rem; color: var(--gray); line-height: 2; max-width: 540px; }
.divider { width: 40px; height: 2px; background: var(--accent); margin: 1.5rem 0; }

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 5rem; }
.about-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--accent), var(--blue));
}
.about-card-num { font-family: 'Inter', sans-serif; font-size: 4rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.about-card-num span { font-size: 1.5rem; }
.about-card-label { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.05em; }
.about-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.about-img-box {
  background: var(--mid); border: 1px solid var(--border); border-radius: 8px;
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  color: var(--border); font-family: 'Inter', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; overflow: hidden;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-text-wrap .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(232,160,69,0.12); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-text p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

/* ── WORKS ── */
#works { background: var(--black); }
.works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s; cursor: pointer;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.work-thumb {
  aspect-ratio: 16/10; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 0.7rem;
  color: var(--border); letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.work-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(11,12,14,0.85); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.25rem 0.75rem;
  font-size: 0.65rem; letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif; text-transform: uppercase; color: var(--gray);
  z-index: 1;
}
.work-info { padding: 1.4rem; }
.work-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.work-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.7; }
.work-card-large { grid-column: span 2; }
.work-card-large .work-thumb { aspect-ratio: 2/1; }

/* ── SERVICE ── */
#service { background: var(--dark); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232,160,69,0.4); }
.service-num { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1.5rem; }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(232,160,69,0.1); border: 1px solid rgba(232,160,69,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-title-card { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
.service-desc-card { font-size: 0.82rem; color: var(--gray); line-height: 1.9; }
.service-list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li {
  font-size: 0.78rem; color: var(--gray); list-style: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── FLOW ── */
#flow { background: var(--black); }
.flow-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 4rem; position: relative;
}
.flow-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
}
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1rem; position: relative; }
.flow-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.05em; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.flow-step.active .flow-num { background: var(--accent); color: var(--black); border-color: var(--accent); }
.flow-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.flow-desc { font-size: 0.75rem; color: var(--gray); line-height: 1.8; }
.flow-duration {
  margin-top: 0.8rem; font-family: 'Inter', sans-serif; font-size: 0.65rem;
  color: var(--accent); letter-spacing: 0.1em;
  border: 1px solid rgba(232,160,69,0.3); border-radius: 100px; padding: 0.2rem 0.7rem;
}

/* ── PRICE ── */
#price { background: var(--dark); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; align-items: start; }
.price-card { background: var(--mid); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; transition: transform 0.3s; }
.price-card.featured { background: var(--black); border-color: var(--accent); transform: translateY(-12px); position: relative; }
.price-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black); font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; padding: 0.3rem 1.2rem; border-radius: 0 0 6px 6px;
}
.price-plan { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.price-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 2rem; }
.price-amount .yen { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--gray); vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.price-amount .num { font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1; }
.price-amount .unit { font-size: 0.8rem; color: var(--gray); margin-left: 0.3rem; }
.price-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.price-features { display: flex; flex-direction: column; gap: 0.8rem; }
.price-feature { display: flex; align-items: center; gap: 0.8rem; font-size: 0.82rem; color: var(--gray); }
.price-feature svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.price-feature.disabled { opacity: 0.35; }
.price-feature.disabled svg { color: var(--gray); }
.price-btn {
  display: block; text-align: center; margin-top: 2rem; padding: 0.85rem; border-radius: 4px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none;
  border: 1px solid var(--border); color: var(--white); transition: 0.2s;
}
.price-card.featured .price-btn { background: var(--accent); border-color: var(--accent); color: var(--black); }
.price-btn:hover { opacity: 0.8; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--black); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial-card { background: var(--mid); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testimonial-stars span { color: var(--accent); font-size: 0.9rem; }
.testimonial-text { font-size: 0.85rem; color: var(--gray); line-height: 2; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--accent);
  overflow: hidden; flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 0.85rem; font-weight: 600; }
.author-role { font-size: 0.72rem; color: var(--gray); }

/* ── CONTACT ── */
#contact { background: var(--dark); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(232,160,69,0.1); border: 1px solid rgba(232,160,69,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-text h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-item-text p { font-size: 0.8rem; color: var(--gray); line-height: 1.8; }

/* Contact Form 7 styling */
.contact-form .wpcf7-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.05em; }
.form-group label .req { color: var(--accent); margin-left: 0.2rem; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 4px; color: var(--white);
  font-family: 'Noto Sans JP', sans-serif; font-size: 0.9rem;
  padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--accent); }
.form-group textarea,
.wpcf7-form textarea { height: 140px; resize: vertical; }
.form-group select option,
.wpcf7-form select option { background: var(--dark); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border); }
.form-submit,
.wpcf7-submit {
  background: var(--accent); color: var(--black); border: none;
  border-radius: 4px; padding: 1.1rem; width: 100%;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover,
.wpcf7-submit:hover { background: var(--accent2); transform: translateY(-2px); }
.form-note { font-size: 0.72rem; color: var(--gray); margin-top: 0.5rem; line-height: 1.8; }
.wpcf7-not-valid-tip { color: #f06060; font-size: 0.78rem; margin-top: 0.3rem; }
.wpcf7-response-output { font-size: 0.85rem; margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 4px; border: none !important; }

/* ── FOOTER ── */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.08em; margin-bottom: 1rem; display: block;
  text-decoration: none; color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.9; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; list-style: none; padding: 0; }
.footer-links li a { font-size: 0.82rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-copy { font-size: 0.72rem; color: var(--gray); font-family: 'Inter', sans-serif; }
.footer-policy { display: flex; gap: 1.5rem; }
.footer-policy a { font-size: 0.72rem; color: var(--gray); text-decoration: none; }
.footer-policy a:hover { color: var(--white); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--black); border: none;
  font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 999; display: flex; align-items: center; justify-content: center;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 5rem 5%; }
  #site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards-grid { grid-template-columns: 1fr 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card-large { grid-column: span 1; }
  .service-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; gap: 2rem; }
  .flow-steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .works-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 10rem 5% 6rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(74,108,247,0.06) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 0.8rem; }
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  margin: 4rem 0 0;
}
.cta-banner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner p { color: var(--gray); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.8; }
.cta-banner .hero-buttons { justify-content: center; }

/* ── HOME PREVIEW SECTIONS ── */
.home-about {
  background: var(--dark);
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.home-works { background: var(--black); padding: 8rem 5%; }
.home-service { background: var(--dark); padding: 8rem 5%; }
.home-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.home-service-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.home-service-card:hover { transform: translateY(-4px); border-color: rgba(232,160,69,0.4); }
.home-service-card .service-icon-wrap { margin-bottom: 1.2rem; }
.home-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.home-service-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.8; }

/* ── WORKS FILTER ── */
.works-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  border: 1px solid var(--border);
  background: none;
  color: var(--gray);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.faq-category-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 0.8rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.faq-item {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.8rem 1.4rem;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 2;
}
.faq-item.open .faq-answer { display: block; }

/* ── ABOUT PAGE ── */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 6rem;
}
.company-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th {
  text-align: left;
  padding: 1rem 1.5rem 1rem 0;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
  width: 30%;
}
.company-table td { padding: 1rem 0; font-size: 0.88rem; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem; text-align: center;
}
.value-num {
  font-family: 'Inter', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}
.value-num span { font-size: 1.2rem; }
.value-label { font-size: 0.78rem; color: var(--gray); }

/* ── MOBILE INNER ── */
@media (max-width: 900px) {
  .page-hero { padding: 8rem 5% 4rem; }
  .home-about { grid-template-columns: 1fr; gap: 3rem; }
  .home-service-grid { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem; }
}
