/* ========== Global Variables ========== */
:root {
  --main-blue: #3a5cff;
  --main-brown: #a86b3c;
  --main-bg: #f5f8ff;
  --section-bg: #fff;
  --card-bg: #f7ede7;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-lg: 0 8px 32px #b3c6ff44;
  --shadow-md: 0 2px 8px #eaf0ff88;
  --font-main: Arial, 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

.en-text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--main-bg);
  color: #222;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

section {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  background: var(--section-bg);
  width: 100%;
}

button, .btn {
  border-radius: var(--radius-lg);
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: inherit;
  background: var(--main-blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px #3a5cff22;
  transition: background 0.2s, transform 0.2s;
}

button:hover, .btn:hover {
  background: #2546b8;
}

button:active, .btn:active {
  transform: scale(0.98);
}

input[type="email"],
input[type="text"],
input[type="password"] {
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid #d1bfa7;
  font-size: 1.1rem;
  background: #fff;
  outline: none;
  transition: border 0.2s;
  width: 100%;
  max-width: 100%;
}

input:focus {
  border: 1.5px solid var(--main-brown);
}

a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

a:hover {
  color: #2546b8;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2em;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

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

/* ========== Header ========== */
.header {
  width: 100%;
  background: transparent;
  box-shadow: none;
  margin-bottom: 24px;
  border-radius: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 47px;
  width: auto;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

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

.nav a {
  color: #292B2D;
  text-decoration: none;
  transition: color 0.2s;
  font-family: Noto Sans TC;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  padding: 10px 20px;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--main-blue);
}

.download-btn {
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 2px 8px #3a5cff22;
  cursor: pointer;
  transition: background 0.2s;
  font-family: Noto Sans TC;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 12px 32px;
  background: #324CC1;
  white-space: nowrap;
  flex-shrink: 0;
}

.download-btn:hover {
  background: #2546b8;
}

/* ========== Hero Section ========== */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 60px;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-content h1 {
  font-family: Noto Sans TC;
  font-weight: 800;
  font-size: 54px;
  line-height: 120%;
  color: #171717;
  text-align: left;
  margin: 109px 0 20px 0;
  word-wrap: break-word;
}

.hero-content p {
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #3A3A3A;
  text-align: left;
  margin: 0 0 40px 0;
  word-wrap: break-word;
}

.download-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.download-link {
  display: block;
  flex-shrink: 0;
}

.download-btns img {
  width: 240px;
  height: auto;
  transition: transform 0.15s;
}

.download-btns img:hover {
  transform: scale(1.06);
}

.hero-img {
  flex-shrink: 0;
  width: 564px;
  max-width: 50%;
  padding-top: 70px;
}

.hero-img img {
  width: 100%;
  height: auto;
}

/* ========== Features & Services ========== */
.features-services {
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
  top: -195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  border-radius: 0 0 32px 32px;
}

.features-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 60px 40px;
  background: linear-gradient(
    216.87deg,
    rgba(255, 255, 255, 0.85) 8.6%,
    #fefefe 188.57%
  );
  backdrop-filter: blur(10px);
  border-radius: 50px 50px 0 0;
}

.title-container h2 {
  margin: 0;
  font-family: Noto Sans TC;
  font-weight: 800;
  font-size: 54px;
  line-height: 120%;
  color: #3a3a3a;
  word-wrap: break-word;
  text-align: center;
}

.subtitle {
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #324cc1;
  margin: 12px 0 0 0;
}

.feature-showcase {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 60px 40px 80px;
  overflow: hidden;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tami-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tami-cat {
  width: 350px;
  height: auto;
  z-index: 1;
  top: 65px;
  position: relative;
}

.slogan-section {
  background-color: #eaeef1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.slogan-header {
  margin-top: 30px;
  width: 80%;
  align-items: start;
}

.slogan-header h3 {
  margin: 0 0 8px 0;
  font-family: Noto Sans TC;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
}

.slogan-title {
  color: #747FB4;
}

.slogan-subtitle {
  color: #324cc1;
}

.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  z-index: 1;
  pointer-events: none;
}

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

.tablet-wave,
.mobile-wave {
  display: none;
}

/* Statistics Counter Block */
.feature-count-block {
  width: 100%;
  max-width: 100%;
  background-color: #eaeef1;
  display: flex;
  justify-content: center;
  padding: 60px 40px;
}

.feature-count {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  max-width: 1000px;
  gap: 60px;
}

.feature-count-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.feature-count-text {
  color: #747fb4;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.count-text {
  color: #324cc1;
  font-family: Outfit;
  font-weight: 800;
  font-size: 60px;
  line-height: 120%;
  word-wrap: break-word;
}

/* Services Section */
.services-section {
  width: 100%;
  background-color: #eaeef1;
  padding: 60px 40px 80px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

.semicircle-left {
  position: absolute;
  left: 0px;
  bottom: 100px;
  width: 500px;
  height: auto;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.semicircle-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 450px;
  height: auto;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
  border-radius: 0 0 32px 0px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.services-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3648;
  margin: 0 0 12px 0;
}

.services-subtitle {
  font-size: 1rem;
  color: #6b7789;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.service-card {
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
}

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

/* ========== Testimonials ========== */
.testimonials {
  padding: 0 0 40px 0;
  background: transparent;
  text-align: center;
  border-radius: 32px;
  box-shadow: none;
  margin-bottom: 40px;
  position: relative;
  top: -150px;
}

.testimonials h2 {
  font-family: Noto Sans TC;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #3a3a3a;
}

.review-wrapper {
  overflow: hidden;
  width: 100%;
  background: #f6f9ff;
  padding: 20px 0;
}

.review-track {
  display: flex;
  width: max-content;
  margin-bottom: 20px;
  animation: scroll-left 150s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  width: 317px;
  margin: 0 10px;
  padding: 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  color: #292b2d;
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 12px;
}

.stars {
  color: #ff9900;
}

.review-content {
  height: 80px;
  font-family: Noto Sans TC;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #292b2d;
  display: flex;
  border-bottom: 1px solid #dbe3ed;
  margin-bottom: 12px;
}

.review-footer {
  display: flex;
  font-size: 12px;
  color: #999;
}

.tag {
  background: #eee;
  border-radius: 12px;
  padding: 2px 8px;
  margin-right: 6px;
}

.first-row {
  animation-delay: 0s;
}

.second-row {
  animation-delay: -20s;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== Join Banner ========== */
.join {
  background: unset;
  border-radius: unset;
  box-shadow: unset;
  padding: 0;
  margin: 0;
  margin-bottom: -150px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.join-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px #d1bfa744;
  height: 568px;
  background: url('assets/join-bg.png') center center no-repeat;
  background-size: cover;
  border-radius: 50px;
  max-width: 92%;
  width: 100%;
  position: relative;
  top: -195px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.join-banner::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: url('assets/join-bg.png') center center no-repeat;
  background-size: cover;
  z-index: 0;
}

.join-banner > * {
  position: relative;
  z-index: 1;
}

.join-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex: 1;
  max-width: 730px;
  padding: 0 50px;
}

.join-content h2 {
  font-family: Noto Sans TC;
  font-weight: 800;
  font-size: 54px;
  line-height: 120%;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

.join-content p {
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

.join-form {
  display: flex;
  gap: 16px;
  min-width: 524px;
  height: 60px;
  position: relative;
}

.join-form input {
  padding: 12px 24px;
  border-radius: 32px;
  border: 1.5px solid #d1bfa7;
  font-size: 1.1rem;
  background: #fff;
  outline: none;
  transition: border 0.2s;
  width: 100%;
}

.join-form input:focus {
  border: 1.5px solid var(--main-brown);
}

.join-form button {
  position: absolute;
  background: #304AC1;
  color: #fff;
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  box-shadow: 0px 1px 6px 0px #00262D1A;
  transition: background 0.2s;
  border-radius: 100px;
  height: 52px;
  right: 4px;
  top: 4px;
  cursor: pointer;
  border: none;
  padding: 0 32px;
}

.join-form button:hover {
  background: #2546b8;
}

.join-img {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
  height: 100%;
}

.join-img img {
  height: 400px;
  width: auto;
  display: block;
}

/* ========== Footer ========== */
.footer {
  width: 100%;
  background: var(--main-blue);
  color: #fff;
  border-radius: 50px 50px 0 0;
  padding: 48px 40px 40px 40px;
  box-shadow: 0 0 32px #b3c6ff44;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-bottom: 24px;
}

.footer-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-title {
  border-radius: 50px;
  padding: 12px 24px;
  font-family: Noto Sans TC;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #324CC1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 145px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-divider {
  width: 1px;
  height: 100px;
  background: #fff;
  opacity: 0.2;
  flex-shrink: 0;
}

.footer-links {
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.footer-links span {
  word-wrap: break-word;
}

.footer-links a {
  color: #fff;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.footer-social img {
  width: 100%;
  height: auto;
}

.footer-download {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-download .download-link {
  display: block;
  flex-shrink: 0;
}

.footer-download img {
  width: 240px;
  height: auto;
  transition: transform 0.15s;
}

.footer-download img:hover {
  transform: scale(1.05);
}

.footer-copyright {
  margin: 16px 0 0 0;
  font-size: 14px;
  color: #eaf0ff;
  text-align: center;
  width: 100%;
}

/* =============================================
   Responsive - Tablet (768px - 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --radius-lg: 28px;
    --radius-md: 20px;
  }

  section {
    margin-bottom: 32px;
  }

  button, .btn {
    padding: 10px 24px;
    font-size: 1rem;
  }

  input[type="email"],
  input[type="text"],
  input[type="password"] {
    font-size: 1rem;
    padding: 10px 20px;
  }

  /* Header */
  .header-inner {
    padding: 20px 32px;
  }

  .logo img {
    height: 42px;
  }

  .nav a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .download-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 40px 32px;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
    margin-top: 20px;
    text-align: center;
  }

  .hero-content p {
    font-size: 18px;
    text-align: center;
  }

  .download-btns {
    justify-content: center;
    gap: 16px;
  }

  .download-btns img {
    width: 200px;
  }

  .hero-img {
    width: 100%;
    max-width: 500px;
    padding-top: 20px;
  }

  /* Features */
  .features-services {
    top: -195px;
  }

  .title-container {
    padding: 40px 24px;
    width: 100%;
  }

  .title-container h2 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }

  .feature-showcase {
    padding: 40px 24px 60px;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .tami-section {
    padding-left: 24px;
  }

  .tami-cat {
    width: 280px;
    margin-bottom: 10px;
  }

  .desktop-wave {
    display: none;
  }

  .tablet-wave {
    display: block;
  }

  .wave-background {
    height: 280px;
  }

  .feature-count-block {
    padding: 40px 24px;
    width: 100%;
  }

  .feature-count {
    flex-direction: column;
    width: 90%;
    gap: 32px;
    align-items: center;
  }

  .feature-count-item {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .count-text {
    font-size: 48px;
  }

  /* Services */
  .services-section {
    width: 100%;
    padding: 40px 24px 60px;
  }

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

  .semicircle-left,
  .semicircle-right {
    width: 300px;
  }

  /* Join */
  .join-banner {
    overflow: hidden;
  }

  .join-content {
    padding-left: 30px;
    padding-right: 0;
    max-width: 480px;
  }

  .join-content h2 {
    font-size: 40px;
  }

  .join-content p {
    font-size: 18px;
  }

  .join-form {
    min-width: 420px;
  }

  .join-img img {
    height: 300px;
  }

  /* Footer */
  .footer {
    border-radius: 40px 40px 0 0;
    padding: 40px 32px 32px 32px;
  }

  .footer-row {
    gap: 32px;
    margin-bottom: 20px;
  }

  .footer-title {
    font-size: 18px;
    padding: 10px 20px;
  }

  .footer-logo-container {
    gap: 20px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-divider {
    height: 80px;
  }

  .footer-links {
    font-size: 14px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
  }

  .footer-download img {
    width: 200px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

/* =============================================
   Responsive - Mobile (< 768px)
   ============================================= */
@media (max-width: 767px) {
  :root {
    --radius-lg: 24px;
    --radius-md: 16px;
  }

  body {
    font-size: 14px;
  }

  section {
    border-radius: var(--radius-md);
    margin-bottom: 24px;
  }

  button, .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  input[type="email"],
  input[type="text"],
  input[type="password"] {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .card {
    padding: 1.5em;
  }

  /* Header */
  .header-inner {
    padding: 16px 16px;
  }

  .header {
    margin-bottom: 16px;
  }

  .logo img {
    height: 36px;
  }

  .header-container {
    gap: 12px;
  }

  .nav {
    display: none !important;
  }

  .download-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-top: 0;
    text-align: center;
  }

  .hero-content p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
  }

  .download-btns {
    flex-direction: column;
    width: 180px;
    align-items: center;
    gap: 12px;
  }

  .download-link {
    width: 100%;
    max-width: 240px;
  }

  .download-btns img {
    width: 100%;
  }

  .hero-img {
    width: 100%;
    max-width: 400px;
    padding-top: 0;
  }

  /* Features */
  .features-services {
    top: -100px;
  }

  .title-container {
    padding: 32px 20px;
    border-radius: 32px 32px 0 0;
    width: 100%;
  }

  .title-container h2 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .feature-showcase {
    padding: 32px 20px 50px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .tami-section {
    padding-left: 20px;
    align-items: center;
  }

  .tami-cat {
    width: 220px;
    margin-bottom: 15px;
  }

  .tablet-wave {
    display: none;
  }

  .mobile-wave {
    display: block;
  }

  .wave-background {
    height: 250px;
  }

  .feature-count-block {
    width: 100%;
    padding: 32px 20px;
  }

  .feature-count {
    flex-direction: column;
    width: 100%;
    gap: 28px;
  }

  .feature-count-item {
    width: 100%;
    align-items: center;
  }

  .feature-count-text {
    font-size: 16px;
  }

  .count-text {
    font-size: 40px;
  }

  /* Services */
  .services-section {
    width: 100%;
    padding: 32px 20px 50px;
  }

  .services-title {
    font-size: 1.5rem;
  }

  .services-subtitle {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .semicircle-left {
    left: -30px;
    bottom: 1000px;
    width: 250px;
  }

  .semicircle-right {
    bottom: 0px;
    width: 250px;
  }

  /* Testimonials */
  .testimonials {
    margin-top: 100px;
  }

  /* Join */
  .join-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    height: 100%;
    border-radius: 32px;
  }

  .join-content {
    max-width: 100%;
    padding: 0 5px;
    gap: 24px;
    align-items: start;
    text-align: start;
  }

  .join-content h2 {
    font-size: 28px;
    text-align: start;
  }

  .join-content p {
    font-size: 16px;
    text-align: start;
  }

  .join-form {
    min-width: unset;
    width: 100%;
    max-width: 400px;
  }

  .join-form input {
    font-size: 1rem;
  }

  .join-form button {
    font-size: 18px;
    padding: 0 24px;
  }

  .join-img {
    margin-top: 32px;
  }

  .join-img img {
    height: 280px;
  }

  /* Footer */
  .footer {
    border-radius: 32px 32px 0 0;
    padding: 32px 20px 24px 20px;
  }

  .footer-row {
    gap: 24px;
    margin-bottom: 16px;
  }

  .footer-title-container {
    gap: 20px;
    width: 100%;
  }

  .footer-title {
    font-size: 16px;
    padding: 10px 16px;
    white-space: normal;
    width: 100%;
    max-width: 300px;
  }

  .footer-logo-container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-divider {
    display: none;
  }

  .footer-links {
    align-items: center;
    text-align: center;
    font-size: 13px;
    width: 100%;
  }

  .footer-links span {
    word-break: break-word;
  }

  .footer-social {
    justify-content: center;
    gap: 20px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-download {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
  }

  .footer-download .download-link {
    width: 100%;
    max-width: 240px;
  }

  .footer-download img {
    width: 100%;
  }

  .footer-copyright {
    font-size: 12px;
    margin-top: 12px;
  }
}

/* =============================================
   Responsive - Small Phone (< 480px)
   ============================================= */
@media (max-width: 480px) {
  button, .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Header */
  .header-inner {
    padding: 12px 12px;
  }

  .logo img {
    height: 32px;
  }

  .download-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 16px 12px;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-img {
    max-width: 320px;
  }

  /* Features */
  .title-container {
    padding: 24px 16px;
  }

  .title-container h2 {
    margin-top: 20px;
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  .feature-showcase {
    padding: 0px 16px 45px;
  }

  .feature-card {
    padding: 0;
  }

  .tami-section {
    padding-left: 16px;
  }

  .tami-cat {
    width: 150px;
    margin-bottom: 20px;
  }

  .feature-count-block {
    padding: 24px 16px;
  }

  .count-text {
    font-size: 36px;
  }

  /* Services */
  .services-section {
    padding: 24px 16px 40px;
  }

  .services-title {
    font-size: 1.3rem;
  }

  /* Join */
  .join-content {
    margin-top: 30px;
  }

  .join-content h2 {
    font-size: 24px;
    margin-left: 10px;
  }

  .join-content p {
    font-size: 14px;
    margin-left: 10px;
  }

  .join-form {
    height: 56px;
  }

  .join-form input {
    width: 320px;
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .join-form button {
    height: 48px;
    width: 70px;
    font-size: 16px;
    padding: 3px;
  }

  .join-img img {
    height: 220px;
  }

  /* Footer */
  .footer-download .download-link {
    width: 100%;
    max-width: 200px;
  }

  .footer {
    padding: 24px 16px 20px 16px;
  }

  .footer-title {
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer-logo {
    width: 100%;
    max-width: 150px;
  }

  .footer-links {
    font-size: 12px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}
