/* ===== Login Plus LP - Static CSS ===== */
/* Design: Kinetic Trust — Motion-First LP */
/* Color: White base + Trust Blue (#2563EB) + LINE Green (#06C755) */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.9);
}

.header-nav a:hover {
  color: #2563eb;
}

.scrolled .header-nav a {
  color: #334155;
}

.scrolled .header-nav a:hover {
  color: #2563eb;
}

.header-cta-btn {
  background: #06C755;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.header-cta-btn:hover {
  background: #05b34c;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.scrolled .mobile-menu-btn svg {
  color: #1e293b;
}

.mobile-menu {
  display: none;
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

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

.mobile-menu a {
  display: block;
  color: #334155;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-menu .mobile-cta {
  display: block;
  background: #06C755;
  color: white;
  text-align: center;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-top: 1rem;
}

/* ===== 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(to right, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.5));
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(96, 165, 250, 0.3);
  border-radius: 9999px;
  animation: pulse 2s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0;
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-badge svg {
    width: 1rem;
    height: 1rem;
  }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, #60a5fa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 0.875rem;
  color: rgba(191, 219, 254, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 0;
  }
}

/* Hero mobile mockup */
.hero-mobile-mockup {
  display: block;
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .hero-mobile-mockup {
    display: none;
  }
}

.hero-mobile-mockup .mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mobile-mockup .mockup-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 1.5rem;
  filter: blur(2rem);
}

.hero-mobile-mockup img {
  position: relative;
  width: 10rem;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  border-radius: 1rem;
}

@media (min-width: 640px) {
  .hero-mobile-mockup img {
    width: 13rem;
  }
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }
}

.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .btn-details {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
}

.btn-details:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-details svg {
  width: 1rem;
  height: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

/* SNS icons */
.hero-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

@media (min-width: 640px) {
  .hero-sns {
    gap: 1.5rem;
    padding-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-sns {
    justify-content: flex-start;
  }
}

.hero-sns-label {
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.6);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-sns-label {
    font-size: 0.875rem;
  }
}

.sns-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .sns-icons {
    gap: 0.75rem;
  }
}

.sns-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

@media (min-width: 640px) {
  .sns-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
  }
}

.sns-icon:hover {
  transform: scale(1.1);
}

.sns-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 640px) {
  .sns-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Hero desktop mockup */
.hero-desktop-mockup {
  display: none;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-desktop-mockup {
    display: flex;
  }
}

.hero-desktop-mockup .mockup-wrapper {
  position: relative;
}

.hero-desktop-mockup .mockup-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 1.5rem;
  filter: blur(2rem);
}

.hero-desktop-mockup img {
  position: relative;
  width: 20rem;
  margin: 0 auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  border-radius: 1.5rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== LINE Button ===== */
.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #06C755;
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .line-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.line-btn:hover {
  background: #05b34c;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.line-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.line-btn .arrow {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.line-btn:hover .arrow {
  transform: translateX(0.25rem);
}

.line-btn-md {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .line-btn-md {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== Infographic Section ===== */
.infographic-section {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .infographic-section {
    padding: 6rem 0;
  }
}

.infographic-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .infographic-grid {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }
}

.infographic-grid > div {
  flex: 1;
}

/* ===== Problems Section ===== */
.problems-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-label {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title .accent-blue {
  color: #2563eb;
}

.section-title .accent-red {
  color: #ef4444;
}

.section-subtitle {
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.3s;
  height: 100%;
}

.problem-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  color: white;
  margin-bottom: 1.5rem;
}

.problem-icon svg {
  width: 2rem;
  height: 2rem;
}

.problem-icon.gradient-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.problem-icon.gradient-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
}

.problem-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f87171;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.problems-resolve {
  text-align: center;
  margin-top: 3rem;
}

.problems-resolve-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.problems-resolve-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Features Section ===== */
.features-section {
  padding: 6rem 0;
  background: white;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #3b82f6, #22d3ee);
  border-radius: 1rem 1rem 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover .top-bar {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-card:hover .feature-icon {
  background: #2563eb;
  color: white;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #475569;
  line-height: 1.7;
}

/* ===== Mid CTA ===== */
.mid-cta {
  padding: 5rem 0;
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  position: relative;
  overflow: hidden;
}

.mid-cta .bg-circle {
  position: absolute;
  background: white;
  border-radius: 9999px;
  opacity: 0.1;
}

.mid-cta .bg-circle-1 {
  width: 24rem;
  height: 24rem;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.mid-cta .bg-circle-2 {
  width: 16rem;
  height: 16rem;
  bottom: 0;
  right: 0;
  transform: translate(33%, 33%);
}

.mid-cta-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.mid-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .mid-cta h2 {
    font-size: 2.25rem;
  }
}

.mid-cta p {
  color: #bfdbfe;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Functions Section ===== */
.functions-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.function-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .function-block {
    grid-template-columns: 1fr 1fr;
  }
}

.function-block:last-child {
  margin-bottom: 0;
}

.function-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.function-text {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

.function-image {
  min-width: 0;
  max-width: 100%;
}

.function-image img {
  max-width: 100% !important;
}

.function-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.function-block .func-desc {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.function-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
}

.function-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.function-image {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.function-image img {
  margin: 0 auto;
}

.function-image .icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.function-image .icon-placeholder svg {
  width: 5rem;
  height: 5rem;
  color: #06C755;
}

/* Reverse order for even items */
.function-block.reverse .function-text {
  order: 1;
}
.function-block.reverse .function-image {
  order: 2;
}

@media (min-width: 1024px) {
  .function-block.reverse .function-text {
    order: 2;
  }
  .function-block.reverse .function-image {
    order: 1;
  }
}



/* ===== Flow Section ===== */
.flow-section {
  padding: 6rem 0;
  background: white;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  position: relative;
  text-align: center;
}

.flow-connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #93c5fd, #dbeafe);
}

@media (min-width: 768px) {
  .flow-connector {
    display: block;
  }
}

.flow-icon {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.flow-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.flow-icon .step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background: white;
  color: #2563eb;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flow-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.flow-step p {
  color: #475569;
  font-size: 0.875rem;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* ===== Comparison Section ===== */
.comparison-section {
  padding: 6rem 0;
  background: white;
}

.comparison-table {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  .comparison-table {
    display: table;
  }
}

.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: center;
  color: #64748b;
  font-weight: 500;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th .lp-badge {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #0f172a;
}

.comparison-table td:nth-child(2) {
  text-align: center;
  color: #64748b;
}

.comparison-table td:nth-child(3) {
  text-align: center;
  color: #2563eb;
  font-weight: 500;
  background: rgba(239, 246, 255, 0.5);
}

.comparison-table tr:hover {
  background: #f8fafc;
}

.comparison-table tr:hover td:nth-child(3) {
  background: rgba(239, 246, 255, 0.7);
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pricing-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.pricing-card .plan-users {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.pricing-card .plan-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.pricing-card .plan-price .custom {
  font-size: 1.25rem;
}

.pricing-card .plan-period {
  color: #94a3b8;
  font-size: 0.875rem;
}

.pricing-extra {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 42rem;
  margin: 0 auto;
}

.pricing-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.pricing-extra-label {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.pricing-extra-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.pricing-extra-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.pricing-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.pricing-note svg {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
}

/* ===== Security Section ===== */
.security-section {
  padding: 6rem 0;
  background: white;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.security-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.security-item-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.security-item h3 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.security-item p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

.security-image {
  position: relative;
}

.security-image .glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  border-radius: 1.5rem;
  filter: blur(1.5rem);
  opacity: 0.5;
}

.security-image img {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 28rem;
  margin: 0 auto;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-button:hover {
  background: #f8fafc;
}

.faq-button span {
  font-weight: 500;
  color: #0f172a;
  padding-right: 1rem;
}

.faq-button svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-button.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s;
}

.faq-answer.open {
  max-height: 10rem;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.final-cta .cta-bg {
  position: absolute;
  inset: 0;
}

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

.final-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.8));
}

.final-cta-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta h2 {
    font-size: 2.25rem;
  }
}

.final-cta .cta-desc {
  color: #bfdbfe;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .cta-note {
  color: rgba(191, 219, 254, 0.6);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
  background: #0f172a;
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 28rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-divider {
  width: 100%;
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.75rem;
}

/* ===== Scroll to Top ===== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background: #2563eb;
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  border: none;
  cursor: pointer;
}

.scroll-to-top:hover {
  background: #1d4ed8;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Utility ===== */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
