/* ========================================
   REFORM X - Style
   Tech Modern: Dark + Electric Purple
======================================== */

:root {
  --black: #111111;
  --dark: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-800: #222222;
  --gray-700: #333333;
  --gray-400: #999999;
  --gray-300: #bbbbbb;
  --white: #ffffff;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-dark: #5B21B6;
  --purple-glow: rgba(124, 58, 237, 0.3);
  --purple-subtle: rgba(124, 58, 237, 0.08);
  --font-en: 'Space Grotesk', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-jp);
  background: var(--dark);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* Sample Banner */
.sample-banner {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}

.nav-desktop a:not(.nav-cta):hover {
  color: var(--purple-light);
}

.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: var(--transition);
}

.nav-desktop a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--gray-900);
  z-index: 999;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(124, 58, 237, 0.15);
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 4px;
}

.nav-mobile-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav-mobile-link:hover {
  color: var(--purple-light);
  padding-left: 8px;
}

.nav-mobile-cta {
  margin-top: 20px;
  background: var(--purple);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.nav-mobile-cta:hover {
  background: var(--purple-dark);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(17, 17, 17, 0.75) 50%, rgba(124, 58, 237, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple-light);
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}

.hero-stat-unit {
  font-size: 18px;
  color: var(--purple-light);
  font-weight: 500;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Section Headers ---- */
.section-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--purple);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.9;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.about-text .section-label,
.about-text .section-title {
  text-align: left;
}

.about-desc {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 2;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* ---- VR Section ---- */
.vr {
  background: var(--gray-900);
}

.vr-illustration {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px;
  display: block;
}

.vr-dot {
  animation: vrPulse 2s ease-in-out infinite;
}

.vr-dot:nth-child(2) { animation-delay: 0.5s; }
.vr-dot:nth-child(3) { animation-delay: 1s; }
.vr-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes vrPulse {
  0%, 100% { opacity: 0.3; r: 4; }
  50% { opacity: 0.9; r: 7; }
}

.scan-line {
  animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

.vr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vr-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--dark);
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: var(--transition);
}

.vr-step:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.vr-step-num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
}

.vr-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vr-step p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ---- Packages ---- */
.packages {
  background: var(--dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--gray-900);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}

.package-featured {
  background: linear-gradient(135deg, var(--gray-900), rgba(124, 58, 237, 0.08));
  border-color: var(--purple);
}

.package-featured:hover {
  border-color: var(--purple-light);
}

.package-badge {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.package-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

.package-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.7;
}

.package-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-unit {
  font-size: 16px;
  color: var(--gray-400);
  margin-left: 4px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
}

.package-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ---- Services ---- */
.services {
  background: var(--gray-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ---- Works ---- */
.works {
  background: var(--dark);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--gray-900);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.work-card:hover {
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
}

.work-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.work-tag {
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.work-info {
  padding: 24px;
}

.work-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-info p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-400);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-meta span:last-child {
  font-family: var(--font-en);
  color: var(--purple-light);
  font-weight: 600;
}

/* ---- Flow ---- */
.flow {
  background: var(--gray-900);
}

.flow-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--purple-glow), transparent);
}

.flow-step {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-step-num {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-light);
}

.flow-step-content {
  padding-top: 8px;
}

.flow-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.flow-step-content p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ---- Company ---- */
.company {
  background: var(--dark);
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.company-table th,
.company-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 14px;
}

.company-table th {
  width: 180px;
  color: var(--gray-400);
  font-weight: 500;
  vertical-align: top;
}

.company-table td {
  color: var(--gray-300);
}

/* ---- Contact ---- */
.contact {
  background: var(--gray-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-box-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-box-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-box-value {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-box-note {
  font-size: 12px;
  color: var(--gray-400);
}

.contact-form {
  background: var(--dark);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-300);
}

.required {
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-jp);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  padding: 60px 0 0;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-desc {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-300);
}

.footer-col a {
  font-size: 13px;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--purple-light);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--purple);
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 32px;
  }

  .hero-scroll {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-text .section-label,
  .about-text .section-title {
    text-align: center;
  }

  .about-desc {
    text-align: center;
  }

  .about-features {
    align-items: center;
  }

  .vr-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .flow-timeline::before {
    left: 20px;
  }

  .flow-step-marker {
    width: 42px;
    height: 42px;
  }

  .flow-step-num {
    font-size: 13px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .company-table th {
    width: 120px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .header {
    top: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .price-num {
    font-size: 40px;
  }

  .contact-form {
    padding: 24px;
  }
}
