/* ------------------------------
   ベーススタイル
------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #0071e3;
  transition: color 0.3s ease;
}

a:hover {
  color: #0058b0;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------
   ヘッダー
------------------------------ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: #ffffff;
  z-index: 999;
  transition: all 0.3s;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  height: 60px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-weight: 600;
  font-size: 1.4rem;
  color: #0071e3;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 30px;
  font-size: 0.9rem;
  color: #333;
  opacity: 0.8;
  font-weight: 500;
}

header nav a:hover {
  opacity: 1;
  color: #0071e3;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0071e3;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュー展開時のアニメーション */
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0%;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.cta-btn {
  margin-left: 30px;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #0071e3;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #0058b0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
}

/* ------------------------------
   ボタンスタイル共通
------------------------------ */
.primary-btn, .secondary-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #0071e3;
  color: #fff;
}

.primary-btn:hover {
  background-color: #0058b0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
}

.secondary-btn {
  background: #f2f8fd;
  color: #0071e3;
  border: 1px solid #e8f4fc;
}

.secondary-btn:hover {
  background-color: #e8f4fc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.1);
}

/* ------------------------------
   セクション共通
------------------------------ */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
  color: #333;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0071e3;
  margin: 15px auto 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   Heroセクション
------------------------------ */
.hero {
  padding-top: 70px; /* ヘッダー分の余白 */
  background: linear-gradient(145deg, #f7fcff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 500px;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.hero-image-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: #e8f4fc;
  border-radius: 8px;
  z-index: 1;
}

.partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.partners p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logos img {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logos img:hover {
  opacity: 1;
}

/* ------------------------------
   問題提起セクション
------------------------------ */
.problem-section {
  background-color: #f7fcff;
  padding: 80px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.problem-card p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* ------------------------------
   ソリューション概要
------------------------------ */
.solution-overview {
  padding: 80px 0;
}

.solution-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.solution-image {
  flex: 1 1 450px;
}

.solution-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-text {
  flex: 1 1 450px;
}

.solution-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.solution-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 15px;
}

.point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.feature-point p {
  margin-bottom: 0;
  font-weight: 500;
}

/* ------------------------------
   特長セクション
------------------------------ */
.features-section {
  background-color: #f7fcff;
  padding: 80px 0;
}

.feature-circle-container {
  max-width: 800px;
  margin: 0 auto 60px;
}

.feature-circle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.circle-item {
  text-align: center;
  width: 140px;
}

.circle-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.circle-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.circle-icon img {
  width: 60px;
  height: 60px;
}

.circle-item p {
  font-weight: 500;
  color: #333;
}

/* 特長カードリスト - 新規追加 */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 0 auto 60px;
  max-width: 1200px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #f2f8fd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.feature-diagram {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0;
}

.diagram-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto 30px;
}

.diagram-circle.blue {
  background: #0071e3;
}

.diagram-circle.green {
  background: #34c759;
}

.diagram-circle.orange {
  background: #ff9500;
}

.diagram-text {
  flex: 1 1 300px;
  text-align: center;
  margin-top: 30px;
}

.diagram-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.diagram-text p {
  color: #555;
  max-width: 500px;
  margin: 0 auto;
}

.feature-demo {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.demo-image {
  margin-bottom: 30px;
}

.demo-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ------------------------------
   詳細機能
------------------------------ */
.details-section {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.detail-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  width: 80px;
  flex-shrink: 0;
}

.detail-content {
  flex: 1;
}

.detail-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.detail-content p {
  color: #555;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.detail-image {
  flex-shrink: 0;
  width: 150px;
}

.detail-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   導入効果
------------------------------ */
.benefits-section {
  background-color: #f7fcff;
  padding: 80px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.comparison-item {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-item h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.comparison-item ul {
  margin-bottom: 30px;
}

.comparison-item li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
  color: #555;
}

.comparison-item li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0071e3;
  font-weight: bold;
}

.comparison-item.before li:before {
  color: #999;
}

.comparison-image {
  text-align: center;
}

.comparison-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   導入事例
------------------------------ */
.case-studies {
  padding: 80px 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.case-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.case-industry {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.case-content p {
  color: #555;
  font-size: 0.95rem;
}

/* ------------------------------
   導入の流れ
------------------------------ */
.flow-section {
  background-color: #f7fcff;
  padding: 80px 0;
}

.flow-steps {
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.flow-step:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 35px;
  width: 2px;
  height: 30px;
  background: #0071e3;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #0071e3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.step-content p {
  color: #555;
  margin-bottom: 0;
}

/* ------------------------------
   料金プラン
------------------------------ */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-item {
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-item.featured {
  position: relative;
  border: 2px solid #0071e3;
  transform: scale(1.05);
  z-index: 2;
}

.pricing-item.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.price {
  margin-bottom: 20px;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0071e3;
}

.period {
  font-size: 1rem;
  color: #777;
}

.custom-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0071e3;
}

.pricing-features {
  margin-bottom: 30px;
  min-height: 180px;
}

.pricing-features li {
  padding: 10px 0;
  color: #555;
}

/* ------------------------------
   FAQ
------------------------------ */
.faq-section {
  background-color: #f7fcff;
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #0071e3;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 300px;
}

.faq-answer p {
  color: #555;
  margin: 0;
}

/* ------------------------------
   CTA
------------------------------ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #0071e3 0%, #34c759 100%);
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-section .primary-btn {
  background: #fff;
  color: #0071e3;
}

.cta-section .primary-btn:hover {
  background: #f2f8fd;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .secondary-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cta-section .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ------------------------------
   フッター
------------------------------ */
footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 80px 0 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo .logo {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-logo p {
  opacity: 0.8;
  max-width: 250px;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.link-group {
  flex: 1 1 150px;
}

.link-group h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.link-group ul li {
  margin-bottom: 12px;
}

.link-group a {
  color: #f9fafb;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.link-group a:hover {
  opacity: 1;
  color: #f9fafb;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #111827;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ------------------------------
   レスポンシブ
------------------------------ */
@media (max-width: 1024px) {
  header {
    padding: 0 20px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .feature-circle {
    gap: 30px;
  }
  
  .detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  
  header nav.active {
    right: 0;
  }
  
  header nav a {
    margin: 0 0 25px 0;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    display: inline-block;
  }
  
  header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0071e3;
    transition: width 0.3s ease;
  }
  
  header nav a:hover::after {
    width: 100%;
  }
  
  .cta-btn {
    margin: 15px 0 0 0;
    padding: 12px 30px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .detail-item {
    flex-direction: column;
  }
  
  .detail-image {
    width: 100%;
    margin-top: 20px;
  }
  
  .case-item {
    flex-direction: column;
    text-align: center;
  }
  
  .case-icon {
    margin-bottom: 20px;
  }
  
  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  header {
    padding: 0 15px;
    height: 60px;
  }
  
  header.scrolled {
    height: 50px;
  }
  
  header .logo {
    font-size: 1.2rem;
  }
  
  header nav {
    width: 100%;
    max-width: none;
    padding: 70px 25px;
  }
  
  header nav a {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    margin-top: 10px;
    padding: 10px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .comparison-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-item.featured {
    transform: none;
  }
  
  .pricing-item.featured:hover {
    transform: translateY(-5px);
  }
} 