:root {
  /* Colors */
  --primary: #66dbba;
  --primary-dark: #4cbfa0; /* Slightly darker for hover/active states */
  --primary-light: #e0fbf4; /* Very light background tint */

  --text-main: #2c3e50;
  --text-muted: #475569;
  --text-light: #ffffff;

  --bg-main: #ffffff;
  --bg-secondary: #f8fbfb; /* Cool gray/white */
  --bg-accent: #f0fdfa; /* Mint tint */

  --border-color: #eef2f5;

  /* Shadows - Soft & Modern */
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 62, 80, 0.06);
  --shadow-lg: 0 16px 48px rgba(44, 62, 80, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #66dbba 0%, #45caff 100%);
  --gradient-text: linear-gradient(135deg, #2c3e50 0%, #66dbba 100%);

  /* Layout */
  --container-width: 1140px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(120deg, #2c3e50, #66dbba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--primary-light);
  color: #00796b; /* Darker shade of primary for text readability */
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.btn-primary {
  background-color: var(--text-main);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 219, 186, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background-color: var(--bg-secondary);
}

/* Header */
header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 6rem);
  padding-bottom: 8rem;
  background: radial-gradient(
    circle at top right,
    var(--primary-light) 0%,
    #ffffff 40%
  );
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Abstract Visual in Hero */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light), #ffffff);
  border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
  z-index: 1;
}

.abstract-shape::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--primary);
  border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.3;
  animation: morph 8s ease-in-out infinite reverse;
}

@keyframes morph {
  0% {
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Bento Grid (Problems) */
.bento-section {
  padding: 8rem 0;
  background-color: #ffffff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.bento-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.bento-lg {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  color: var(--text-main);
}

.bento-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.bento-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.bento-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.03;
  color: var(--text-main);
  z-index: 1;
}

/* Features (Solution) */
.features-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-card .feature-icon {
  background: var(--primary-light);
  color: #00796b;
}

/* Service Showcase */
.service-showcase {
  padding: 8rem 0;
  background: #ffffff;
}

.showcase-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.showcase-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-image {
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #ffffff;
  border-radius: 40px;
  border: 8px solid #2c3e50;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

/* FAQ */
.faq-section {
  padding: 8rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .fa-plus {
  transform: rotate(45deg);
  color: var(--primary);
}

/* Contact */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #ffffff, var(--bg-accent));
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary);
}

/* Footer */
footer {
  background: #ffffff;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --container-width: 90%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .abstract-shape {
    width: 300px;
    height: 300px;
  }

  .grid-3,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-lg,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-content {
    padding: 3rem 2rem;
  }

  .showcase-image {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Hero Floating Icons */
.hero-floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

.hero-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.icon-1 {
  top: 15%;
  left: 0%;
  animation-delay: 0s;
}
.icon-2 {
  top: 75%;
  left: 10%;
  animation-delay: 1.5s;
}
.icon-3 {
  top: 40%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Hero Transformation Visual */
.transformation-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.state-group {
  position: relative;
  width: 100px;
  height: 100px;
}

.floating-item {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.before-state .floating-item {
  color: #e74c3c;
  background: #fff5f5;
}

.after-state .floating-item {
  color: var(--primary);
  background: #f0fdfa;
}

.item-paper {
  top: 0;
  left: 0;
  animation: float 4s infinite;
}
.item-excel {
  bottom: 0;
  right: 0;
  animation: float 4s infinite 1s;
}
.item-warning {
  top: 35%;
  left: 35%;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  animation: pulse 2s infinite;
}

.item-phone {
  top: 10%;
  left: 15%;
  width: 60px;
  height: 90px;
  z-index: 2;
  border-radius: 10px;
  border: 2px solid var(--primary);
  animation: float 5s infinite;
}
.item-check {
  bottom: 10%;
  right: -10px;
  animation: float 5s infinite 1s;
}

.process-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-weight: bold;
  font-size: 0.8rem;
  animation: slide-right 2s infinite;
}

@keyframes slide-right {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

/* Case Study Section */
.case-study-section {
  padding: 8rem 0;
  background: #ffffff;
}

.case-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

.case-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.case-industry {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.case-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.case-result {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.result-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Enhanced Header CTA */
.nav-links .btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 219, 186, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 219, 186, 0.6);
}

/* HubSpot Form Styling */
#hubspot-form-container {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

/* HubSpot form field styling */
.hs-form-field {
  margin-bottom: 1.5rem;
}

.hs-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.hs-form-field input[type="text"],
.hs-form-field input[type="email"],
.hs-form-field input[type="tel"],
.hs-form-field textarea,
.hs-form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.hs-form-field input:focus,
.hs-form-field textarea:focus,
.hs-form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 219, 186, 0.1);
}

.hs-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* HubSpot submit button */
.hs-button.primary {
  background: var(--text-main);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.hs-button.primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 219, 186, 0.4);
}

/* Error messages */
.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.hs-error-msg {
  color: #e74c3c;
  font-size: 0.875rem;
}

/* Success message */
.submitted-message {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  color: var(--text-main);
}

/* Custom Contact Form Styling */
.custom-contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 219, 186, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.form-success {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
}

.form-success i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* HubSpot Embedded Form Styling Override */
#hubspotForm {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

#hubspotForm .hs-form-field {
  margin-bottom: 1.5rem !important;
}

#hubspotForm .hs-form-field label {
  display: block !important;
  margin-bottom: 0.5rem !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
  font-size: 0.95rem !important;
}

#hubspotForm .hs-form-field .hs-input {
  width: 100% !important;
  padding: 0.875rem 1rem !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  transition: all 0.3s ease !important;
  background: white !important;
  color: var(--text-main) !important;
}

#hubspotForm .hs-form-field .hs-input:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(102, 219, 186, 0.1) !important;
}

#hubspotForm .hs-form-field textarea.hs-input {
  min-height: 140px !important;
  resize: vertical !important;
}

#hubspotForm .hs-button {
  background: var(--text-main) !important;
  color: white !important;
  padding: 1.1rem 2rem !important;
  border: none !important;
  border-radius: 100px !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

#hubspotForm .hs-button:hover {
  background: var(--primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 219, 186, 0.4) !important;
}

#hubspotForm .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin-top: 0.5rem !important;
}

#hubspotForm .hs-error-msg {
  color: #e74c3c !important;
  font-size: 0.875rem !important;
}

#hubspotForm .submitted-message {
  background: var(--primary-light) !important;
  border: 2px solid var(--primary) !important;
  border-radius: var(--radius-md) !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
}

/* ========================================
   マイクロインタラクション - Advanced Animations
   ======================================== */

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* Enhanced Button Hover Effects */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(102, 219, 186, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Enhanced Card Hover Effects */
.feature-card,
.bento-item,
.showcase-card,
.case-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after,
.bento-item::after,
.showcase-card::after,
.case-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(102, 219, 186, 0.1),
    rgba(102, 219, 186, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::after,
.bento-item:hover::after,
.showcase-card:hover::after,
.case-card:hover::after {
  opacity: 1;
}

.feature-card:hover,
.bento-item:hover,
.showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 219, 186, 0.2);
}

/* Icon Animation on Hover */
.feature-card:hover .feature-icon,
.case-card:hover .case-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-icon,
.case-icon {
  transition: transform 0.4s ease;
}

/* Floating Animation for Hero Elements */
@keyframes float-smooth {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-content h1 {
  animation: float-smooth 6s ease-in-out infinite;
}

/* Gradient Text Animation */
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #60a5fa, var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Pulse Effect for CTA Buttons */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(102, 219, 186, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(102, 219, 186, 0);
  }
}

.btn-primary.pulse {
  animation: pulse-glow 2s infinite;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Parallax Effect */
.parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Loading State Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.2s ease;
}

/* Number Counter Animation */
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter {
  animation: count-up 0.6s ease-out;
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Smooth Icon Transitions */
.faq-question i {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Enhanced Link Hover */
a:not(.btn-primary):not(.logo) {
  position: relative;
  transition: color 0.3s ease;
}

a:not(.btn-primary):not(.logo)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

a:not(.btn-primary):not(.logo):hover::after {
  width: 100%;
}

/* Bento Grid Enhanced Hover */
.bento-item.large:hover {
  z-index: 10;
}

/* Phone Mockup Animation */
.phone-mockup {
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Section Title Animation */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  animation: expand-line 1s ease-out;
}

@keyframes expand-line {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Stagger Grid Animation */
.grid-3 > *:nth-child(1) {
  animation-delay: 0.1s;
}
.grid-3 > *:nth-child(2) {
  animation-delay: 0.2s;
}
.grid-3 > *:nth-child(3) {
  animation-delay: 0.3s;
}
.grid-3 > *:nth-child(4) {
  animation-delay: 0.4s;
}
.grid-3 > *:nth-child(5) {
  animation-delay: 0.5s;
}
.grid-3 > *:nth-child(6) {
  animation-delay: 0.6s;
}

/* Smooth Page Transitions */
body {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced Input Focus */
input:focus,
textarea:focus,
select:focus {
  transform: scale(1.01);
  transition: all 0.3s ease;
}

/* Navbar Scroll Effect */
header.scrolled {
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Success Message Animation */
.form-success {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Loading Dots Animation */
@keyframes dot-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}

.loading-dots span {
  animation: dot-pulse 1.4s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Hover Lift Effect for Images */
img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Process Arrow Animation */
.process-arrow {
  animation: slide-right 2s ease-in-out infinite;
}

@keyframes slide-right {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* Glassmorphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Smooth Transitions for All Interactive Elements */
button,
a,
input,
textarea,
select {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Company Section - 会社概要
   ======================================== */

.company-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

/* Company Info Card */
.company-info-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.company-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.company-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-value {
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.6;
}

/* Representative Card */
.representative-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.representative-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.rep-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(102, 219, 186, 0.3);
}

.rep-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 25px rgba(102, 219, 186, 0.3);
  transition: all 0.4s ease;
}

.rep-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 219, 186, 0.5);
}

.rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rep-info {
  flex: 1;
}

.rep-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rep-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.rep-role {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 400;
}

.rep-message {
  color: var(--text-main);
  line-height: 1.8;
}

.rep-message p {
  margin-bottom: 1rem;
  color: var(--text-main);
}

/* Responsive Design for Company Section */
@media (max-width: 968px) {
  .company-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rep-header {
    flex-direction: column;
    text-align: center;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-label {
    font-size: 0.85rem;
  }
}

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

  .company-info-card,
  .representative-card {
    padding: 2rem;
  }

  .rep-photo {
    width: 100px;
    height: 100px;
  }

  .rep-name {
    font-size: 1.5rem;
  }
}
