/* 共通カラー */
:root {
  --primary: #275FC3;
  --primary-grad2: #3e71cb;
  --bg-light: #f4f5f6;
  --bg-white: #fff;
  --text-main: #333333;
  --text-white: #FAFAFA;
  --font-main: 'IBM Plex Sans JP', sans-serif;
  --font-accent: 'Goldman', sans-serif;
}

html {
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: auto;
  min-height: 100vh;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  width: 100%;
  max-width: 100vw;
  height: auto;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.service, .service-inner, .scene, .features, .card, .option, .order, .faq, .contact, .footer {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

.tsm {
  font-size: 13px;
}

/* Header */
.header {
  background: var(--bg-light);
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 100;
  height: 70px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.header-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
.header-logo {
  font-family: var(--font-accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-logo:hover {
  opacity: 0.8;
}
.logo-gradient {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.company {
  font-size: 12px;
  font-weight: 400;
}
.header-nav {
  display: flex;
  gap: 60px;
}
.header-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  border-radius: 130px;
  color: var(--text-white);
  padding: 6px 30px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}


.header-contact .icon {
  font-size: 14px;
  font-weight: 600;
}
.header-contact .tel {
  font-weight: 500;
  letter-spacing: 0.6px;
  font-size: 18px;
  color: var(--text-white) !important;
}
.header-contact .tel a {
  color: var(--text-white) !important;
  text-decoration: none !important;
}

/* モバイルメニュー */
.mobile-nav {
  display: none;
}


/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: var(--primary);
  border-radius: 1px;
  transition: 0.3s;
  box-sizing: border-box;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

  .mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: linear-gradient(to top, var(--primary), var(--primary-grad2));
    border-radius: 100px;
    color: var(--text-white);
    padding: 20px 20px;
    font-size: 20px;
    margin-top: 32px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16);
  }
  .mobile-contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  .mobile-contact .icon {
    font-size: 14px;
  }
  .mobile-contact .tel {
    font-weight: bold;
    letter-spacing: 0.6px;
    color: var(--text-white) !important;
  }
  .mobile-contact .tel a {
    color: var(--text-white) !important;
    text-decoration: none !important;
  }
  .mobile-contact .hours {
    font-size: 14px;
    display: block;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  max-height: none;
  margin-top: 70px;
  background: url('asset/hero.png') center/cover no-repeat, var(--bg-white);
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible !important;
  width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}
.hero-content {
  text-align: center;
  color: var(--primary);
  width: 100%;
  padding: 0 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  border-radius: 50px;
  padding: 16px 48px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16);
  letter-spacing: 0.6px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.btn-contact:hover {
  background: linear-gradient(to bottom, var(--primary), var(--primary-grad2));
  box-shadow: 0 3px 12px 0 rgba(39,95,195,0.15), 0 1px 4px 0 rgba(0,0,0,0.08);  transform: translateY(-3px) scale(1.04);
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08) saturate(1.2);
}



/* Service */
.service {
  background: var(--bg-light);
  padding: 120px 24px;
}
.service-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0 40px;
}

.service-text {
  flex: 1;
  max-width: 600px;
  color: var(--text-main);
  word-break: break-word;
}
.service-text p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.8;
}

.service-text p:nth-of-type(1) {
  font-weight: 500;
}

.service-images {
  display: flex;
  gap: 20px;
  flex: 1;
  max-width: 1000px;
  justify-content: center;
}
.service-images img {
  width: 45%;
  height: auto;
  min-width: 0;
  object-fit: cover;
  border-radius: 12px;
  background: #EEE;
}

.scene {
  background: var(--bg-white);
  border-radius: 12px;
  margin: 60px auto 0 auto;
  max-width: 1400px;
  padding: 50px 40px 40px 40px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
}
.scene-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}
.icon-lightbulb {
  width: 18px;
  height: 24px;
  background: url('asset/lightbulb.svg') center/contain no-repeat;
  display: inline-block;
}
.scene-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.scene-list {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-main);
  width: 340px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.scene-images {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.scene-images img {
  width: 30%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  background: #EEE;
}



/* Features */
.features {
  background: var(--bg-white);
  padding: 80px 24px;
  text-align: center;
}
.features h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 60px;
  letter-spacing: 1.28px;
}
.features-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  width: 100%;
  box-sizing: border-box;
}
.feature {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.feature-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
  flex-shrink: 0;
  flex-direction: column;
  gap: 0;
  line-height: 1.5;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.feature-circle:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px 0 rgba(39,95,195,0.2), 0 4px 10px 0 rgba(0,0,0,0.1);
}
.feature p {
  font-size: 16px;
  color: var(--text-main);
  text-align: left;
  letter-spacing: 1.3px;
  text-align: justify;
  line-height: 1.8;
}


/* Card */
.card {
  background: var(--bg-light);
  padding: 80px 24px;
}
.card h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 1.28px;
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
.card-item.card-row {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
  background: var(--bg-white);
  border-radius: 12px;
  padding: 60px;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.card-item.card-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px 0 rgba(0,0,0,0.12), 0 4px 10px 0 rgba(0,0,0,0.08);
}
.card-info {
  flex: 1 1 0%;
  min-width: 0;
}
.card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 30px;
}
.card-info p {
  margin-bottom: 24px;
}
.card-info ul {
  margin: 0 0 24px 0;
  padding-left: 20px;
  font-size: 15px;
}
.card-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  font-size: 14px;
  min-width: 500px;
}
.card-table th, .card-table td {
  border: 1px solid #ddd;
  padding: 6px 12px;
  text-align: left;
}
.card-table th {
  background: #f4f5f6;
  font-weight: 600;
}
.card-image {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-image img {
  width: 80%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
}
.card-price {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.card-price .note {
  font-size: 12px;
  color: var(--text-main);
}

.note {
  font-size: 12px;
  color: var(--text-main);
}

.option {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
  background: var(--bg-white);
  max-width: 1400px;
  margin: 80px auto;
  padding: 40px 80px;
  border-radius: 12px;
}
.option h3 {
  font-size: 24px;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.option-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 40px auto;
}
.option-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-radius: 12px;
  gap: 40px;
  box-sizing: border-box;
}
.option-img {
  flex: 0 0 340px;
  display: flex;
}
.option-img img {
  width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  background: #EEE;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
}
.option-desc {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.option-desc h4 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.option-desc p {
  font-size: 16px;
  color: var(--text-main);
  margin: 0;
}



/* Order */
.order {
  background: var(--bg-light);
  padding: 80px 0;
}
.order h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 1.28px;
}
.order-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 120px;
}
.order-step {
  display: flex;
  gap: 17px;
  align-items: stretch;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.order-step-title {
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 500;
  width: 300px;
  text-align: center;
  padding: 20px 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.order-step:hover .order-step-title {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px 0 rgba(39,95,195,0.25);
}
.order-step-desc {
  border-radius: 0 10px 10px 0;
  font-size: 20px;
  color: var(--text-main);
  padding: 10px;
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.order-contact {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
  padding: 20px;
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-main);
}
.order-arrow {
  text-align: center;
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.64px;
}



/* FAQ */
.faq {
  background: var(--text-white);
  padding: 80px 0;
}
.faq h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 1.28px;
}
.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {

  padding: 30px;
}
.faq-q {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}
.faq-a {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
  padding: 20px;
  margin-top: 8px;
  font-size: 16px;
  color: var(--text-main);
}



/* Contact */
.contact {
  background: var(--bg-light);
  padding: 80px 0;
}
.contact h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1.28px;
}
.contact-desc {
  font-size: 16px;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
}
.contact-methods {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-method {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
  width: 100%;
  max-width: 370px;
  min-width: 260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 40px 0;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px 0 rgba(0,0,0,0.12), 0 4px 10px 0 rgba(0,0,0,0.08);
}

.contact-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  text-align: center;
}

.material-icons {
  font-size: 26px;
  color: var(--primary);
}

.contact-tel {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-main);
  letter-spacing: 1.4px;
}
.contact-tel a {
  color: var(--text-main) !important;
  text-decoration: none !important;
}
.contact-hours {
  font-size: 13px;
  color: var(--text-main);
}
.contact-mailform {
  display: inline-block;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  border-radius: 200px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.contact-mailform:hover {
  background: linear-gradient(to bottom, var(--primary), var(--primary-grad2));
  box-shadow: 0 3px 12px 0 rgba(39,95,195,0.15), 0 1px 4px 0 rgba(0,0,0,0.08);
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08) saturate(1.2);
}



/* Contact */
.footer {
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  position: relative;
  padding: 120px 0 30px 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 80px;
  gap: 60px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  font-family: var(--font-accent);
}
.footer-address {
  font-size: 15px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-image img {
  width: 453px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
}
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-white);
  padding: 0 80px;
}
.footer-bottom a {
  color: var(--text-white);
  text-decoration: underline;
}
.footer-bg {
  position: absolute;
  left: -100px;
  top: 400px;
  font-size: 171px;
  color: var(--text-white);
  opacity: 0.05;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  width: 100%;
  text-align: left;
  padding-left: 80px;
}

.footer-map iframe {
  width: 600px;
  max-width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
}



/* Background Animations */
.animated-bg {
  position: relative;
  overflow: hidden;
}
.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(39,95,195,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(39,95,195,0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(39,95,195,0.04) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}
.animated-bg > * {
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1); 
  }
  33% { 
    transform: translateY(-10px) translateX(5px) scale(1.02); 
  }
  66% { 
    transform: translateY(5px) translateX(-5px) scale(0.98); 
  }
}

.particles-bg {
  position: relative;
  overflow: hidden;
}
.particles-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(39,95,195,0.1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(39,95,195,0.08), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(39,95,195,0.12), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(39,95,195,0.06), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(39,95,195,0.1), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particles 25s linear infinite;
  z-index: 1;
}
.particles-bg > * {
  position: relative;
  z-index: 2;
}
@keyframes particles {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-200px) translateY(-100px); }
}

.wave-bg {
  position: relative;
  overflow: hidden;
}
.wave-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(39,95,195,0.02) 25%, transparent 50%, rgba(39,95,195,0.03) 75%, transparent 100%);
  background-size: 400px 100%;
  animation: wave 15s ease-in-out infinite;
  z-index: 1;
}
.wave-bg > * {
  position: relative;
  z-index: 2;
}
@keyframes wave {
  0%, 100% { transform: translateX(-400px); }
  50% { transform: translateX(0); }
}

/* Mobile Optimizations */

/* Fade In Animation */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), 
  transform 1s cubic-bezier(.4,0,.2,1);
}
.fadein.visible {
  opacity: 1;
  transform: none;
}

/* Example Section */
.example-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.example-section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.example-main-image {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.example-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 1.2px;
}
.example-desc {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 32px;
  line-height: 1.8;
}
.example-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.example-btn {
  display: inline-block;
  background: linear-gradient(to top, var(--primary), var(--primary-grad2));
  color: var(--text-white);
  border-radius: 50px;
  padding: 16px 48px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16);
  letter-spacing: 0.6px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.example-btn:hover {
  background: linear-gradient(to bottom, var(--primary), var(--primary-grad2));
  box-shadow: 0 6px 24px 0 rgba(39,95,195,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08) saturate(1.2);
}
/* Mobile - 767px and below */
@media (max-width: 767px) {
  /* Header */
  .header-nav {
    display: none;
  }
  .header-contact {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    padding: 0;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s ease;
    transform-origin: center;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-width: 0;
    height: 600px !important;
    min-height: 600px !important;
    max-height: none !important;
    margin-top: 70px;
    background: url('asset/hero.png') center center / cover no-repeat var(--bg-white) !important;
    padding: 0 10px;
    overflow: visible !important;
  }
  .hero-content h1 {
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .btn-contact {
    padding: 16px 40px;
    font-size: 16px;
  }

  /* Service */
  .service {
    background: var(--bg-light);
    padding: 60px 0px;
    overflow-x: hidden;
  }
  .service-inner {
    padding: 0px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 50px;
    overflow-x: hidden;
  }
  .service-text {
    max-width: 100%;
    min-width: 0;
    word-break: break-word;
    white-space: normal;
    overflow: hidden;
    box-sizing: border-box;
  }
  .service-images {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    min-width: 0;
  }
  .service-images img {
    width: 48%;
    min-width: 0;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    background: #EEE;
  }

  /* Features */
  .features {
    padding: 60px 16px;
  }
  .features h2 {
    font-size: 22px;
  }
  .features-list {
    flex-direction: column;
    gap: 30px;
  }
  .feature {
    max-width: 100%;
  }
  .feature-circle {
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Card */
  .card {
    background: var(--bg-light);
    padding: 80px 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .card h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .card-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .card-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Order */
  .order {
    padding: 40px 0px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .order h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .order-list {
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  /* FAQ */
  .faq {
    padding: 40px 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .faq h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  /* Contact */
  .contact {
    padding: 40px 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .contact-methods {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }
  .contact-method {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .footer-inner {
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Mobile Navigation */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    padding: 80px 20px 20px;
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .mobile-nav.open {
    right: 0;
  }
  .mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
  }
  .mobile-nav a:hover {
    color: var(--primary);
  }
  .mobile-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    text-align: center;
  }

  /* Mobile Animations */
  .animated-bg::before,
  .particles-bg::after,
  .wave-bg::before {
    animation-duration: 30s;
    opacity: 0.3;
  }
  
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ================================================
   ALL MEDIA QUERIES - CONSOLIDATED
   ================================================ */

/* Desktop Large - 1440px and up */
@media (min-width: 1440px) {
  .service-inner {
    max-width: 1400px;
    padding: 0 40px;
  }
}

/* Desktop Medium - 1200px to 1439px */  
@media (min-width: 1200px) and (max-width: 1439px) {
  .service-inner {
    max-width: 1200px;
    padding: 0 32px;
  }
}

/* Desktop Small - 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .service-inner {
    max-width: 100%;
    padding: 0 24px;
  }
}

/* Tablet and Desktop - 768px and up */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .header-nav {
    display: flex;
  }
  .header-contact {
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
  
  .hero {
    height: 600px !important;
    min-height: 600px !important;
    max-height: none !important;
    display: flex !important;
    overflow: visible !important;
    background: url('asset/hero.png') center center / cover no-repeat var(--bg-white) !important;
  }
  
  .example-section {
    padding: 60px 0;
  }
  .example-title {
    font-size: 26px;
  }
  .example-desc {
    font-size: 16px;
  }
  .example-main-image {
    max-width: 300px;
    margin-bottom: 24px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .animated-bg::before,
  .particles-bg::after,
  .wave-bg::before {
    animation: none;
  }
}
