@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary-green: #2ECC71;
  --primary-dark: #27AE60;
  --text-black: #1A1A1A;
  --text-gray: #666666;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --border-color: #E5E5E5;
}

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

/* Remove tap highlight on mobile devices */
a,
button,
[role="button"],
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-black);
  background-color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-gray);
}

button {
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F5F5F5;
  /* Light Gray */
  color: #212121;
  /* Near Black for text */
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}/* Apple-inspired smooth animations */

/* Fade in from bottom (most common Apple animation) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Simple fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scale in (for images) */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide up with scale (Apple hero style) */
@keyframes slideUpScale {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animation utility classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
}

/* Fade in up */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in right */
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide up with scale */
.slide-up-scale {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for lists */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax effect */
.parallax-slow {
  transition: transform 0.3s ease-out;
}

/* Smooth entrance for hero */
.hero-entrance {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .scale-in,
  .slide-up-scale,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.hero-buttons .coming-soon-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-buttons .coming-soon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-buttons .coming-soon-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.hero-buttons .coming-soon-subtitle {
  font-size: 1rem !important;
  font-weight: 400 !important;
  opacity: 0.9;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-buttons .store-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-buttons .store-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons .launch-notice {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.hero-buttons .store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-buttons .app-store-button,
.hero-buttons .google-play-button {
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-buttons .app-store-button.disabled,
.hero-buttons .google-play-button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-buttons .button-icon {
  margin-right: 8px;
  font-size: 1.2rem;
} .coming-soon {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

.coming-soon p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.coming-soon-subtitle {
  font-size: 1rem !important;
  font-weight: 400 !important;
  margin-top: 0.5rem !important;
  opacity: 0.8;
}

.cta-buttons .coming-soon-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-buttons .coming-soon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-buttons .coming-soon-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.cta-buttons .coming-soon-subtitle {
  font-size: 1rem !important;
  font-weight: 400 !important;
  opacity: 0.9;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-buttons .store-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-buttons .store-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-buttons .store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons .launch-notice {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.cta-buttons .app-store-button,
.cta-buttons .google-play-button {
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cta-buttons .app-store-button.disabled,
.cta-buttons .google-play-button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-buttons .button-icon {
  margin-right: 8px;
  font-size: 1.2rem;
} .cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #388E3C;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .app-store-button,
.cta-buttons .google-play-button {
  padding: 15px 30px;
  margin: 10px;
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: transparent;
  color: white;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-buttons .app-store-button.disabled,
.cta-buttons .google-play-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-buttons .app-store-button:hover,
.cta-buttons .google-play-button:hover {
    background-color: white;
    color: #388E3C;
}

.button-icon {
  margin-right: 8px;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-buttons .app-store-button,
  .cta-buttons .google-play-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
} .demo-video-section {
  padding: 100px 0;
  background-color: var(--white);
}

@media screen and (max-width: 768px) {
  .demo-video-section {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-section {
    padding: 40px 0;
  }
}

.demo-video-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .demo-video-container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-container {
    padding: 0 16px;
  }
}

.demo-video-title {
  text-align: center;
  margin-bottom: 24px;
}

.demo-video-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .demo-video-title h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-title h2 {
    font-size: 1.75rem;
  }
}

.demo-video-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .demo-video-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-description {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
}

.demo-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

@media screen and (max-width: 960px) {
  .demo-videos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .demo-videos-grid {
    gap: 32px;
  }
}

.demo-video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-video-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--text-black);
  margin-bottom: 24px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .demo-video-wrapper {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-wrapper {
    border-radius: 12px;
    margin-bottom: 16px;
  }
}

.demo-video-player {
  width: 100%;
  height: auto;
  display: block;
  background-color: var(--text-black);
}

.demo-video-player::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.7);
}

.demo-video-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-black);
  margin: 0 0 8px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .demo-video-label {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-label {
    font-size: 1.125rem;
  }
}

.demo-video-caption {
  font-size: 1rem;
  color: var(--text-gray);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .demo-video-caption {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .demo-video-caption {
    font-size: 0.875rem;
  }
}
.download-cta-section {
    padding: 100px 0;
    background-color: var(--white);
}

.download-cta-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 768px) {
    .download-cta-section {
        padding: 60px 0;
    }

    .download-cta-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .download-cta-section {
        padding: 40px 0;
    }

    .download-cta-container {
        padding: 0 16px;
    }
}

.download-cta-content {
    width: 100%;
    text-align: center;
    background-color: var(--text-black);
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.download-cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.download-cta-description {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-cta-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-cta-badges .store-badge {
    display: flex;
    align-items: center;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.download-cta-badges .app-store-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-cta-badges .app-store-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.download-cta-badges .google-play-badge {
    background-color: var(--primary-green);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-cta-badges .google-play-badge:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
    transform: translateY(-2px);
}

.download-cta-badges .store-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.download-cta-badges .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.download-cta-badges .store-text span:first-child {
    font-size: 0.7rem;
}

.download-cta-badges .store-name {
    font-size: 1.1rem;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .download-cta-content {
        padding: 60px 30px;
    }

    .download-cta-headline {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .download-cta-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .download-cta-badges .store-icon {
        font-size: 1.5rem;
        margin-right: 8px;
    }

    .download-cta-badges .store-text span:first-child {
        font-size: 0.65rem;
    }

    .download-cta-badges .store-name {
        font-size: 0.95rem;
    }

    .download-cta-badges .store-badge {
        padding: 10px 18px;
    }
}

@media screen and (max-width: 480px) {
    .download-cta-content {
        padding: 40px 20px;
    }

    .download-cta-headline {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .download-cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .download-cta-badges {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .download-cta-badges .store-badge {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .download-cta-badges .store-icon {
        font-size: 1.25rem;
        margin-right: 8px;
    }

    .download-cta-badges .store-text span:first-child {
        font-size: 0.6rem;
    }

    .download-cta-badges .store-name {
        font-size: 0.85rem;
    }
}

.features-section {
  display: flex;
  flex-direction: column;
}

.feature-block {
  padding: 100px 0;
  background-color: var(--white);
}

@media screen and (max-width: 768px) {
  .feature-block {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  .feature-block {
    padding: 40px 0;
  }
}

.feature-block.bg-light {
  background-color: var(--bg-light);
}

.feature-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .feature-container {
    padding: 0 20px;
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .feature-container {
    padding: 0 16px;
    gap: 30px;
  }
}

.feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
}

/* 1:1 flex ratio only for features with carousels */
.feature-container:has(.feature-carousel-wrapper) .feature-content,
.feature-container:has(.feature-carousel-wrapper) .feature-image-wrapper {
  flex: 1 1 50%;
}

@media screen and (max-width: 768px) {
  .feature-content {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .feature-content {
    padding: 0;
  }
}

.feature-content-bg.feature-content-tracking {
  max-width: none;
  min-height: auto !important;
  overflow-y: auto;
  background-color: var(--bg-light);
  box-shadow: none !important;
  border-radius: 12px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .feature-content-bg.feature-content-tracking {
    padding: 30px 20px;
    max-height: none;
  }
}

@media screen and (max-width: 480px) {
  .feature-content-bg.feature-content-tracking {
    padding: 24px 16px;
  }
}

.feature-content-bg {
  background-color: var(--bg-light);
  padding: 40px 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .feature-content-bg {
    padding: 30px 20px;
    min-height: auto;
  }
}

@media screen and (max-width: 480px) {
  .feature-content-bg {
    padding: 24px 16px;
  }
}

.feature-image-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  /* Removed overflow: hidden to allow phone frame shadows to be visible */
}

.feature-image-bg {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .feature-image-bg {
    padding: 30px 20px;
    min-height: auto;
  }
}

@media screen and (max-width: 480px) {
  .feature-image-bg {
    padding: 20px 16px;
  }
}

.feature-image-tracking {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  max-height: 600px;
  /* Removed overflow: hidden to allow phone frame shadows to be visible */
  width: 100%;
  background-color: #E8F5E9;
}

.feature-image-tracking .phone-frame-container {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  display: block;
}

/* Mobile and tablet: Make tracking feature display like visualise progress section */
@media screen and (max-width: 1024px) {
  .feature-image-tracking {
    max-height: none;
    background-color: transparent;
    padding: 0;
  }

  .feature-image-tracking .phone-frame-container {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: none;
  }
}

@media screen and (max-width: 768px) {
  .feature-image-tracking {
    max-height: none;
    background-color: transparent;
    padding: 0;
  }

  .feature-image-tracking .phone-frame-container {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: none;
  }
}

@media screen and (max-width: 480px) {
  .feature-image-tracking {
    max-height: none;
    background-color: transparent;
    padding: 0;
  }

  .feature-image-tracking .phone-frame-container {
    width: 100%;
    max-width: 240px;
    height: auto;
    max-height: none;
  }
}

/* Removed feature-image-community */

.feature-image-bg .phone-frame-container {
  background-color: transparent;
}

.feature-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 24px;
}

.feature-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #E8F5E9;
  color: var(--primary-green);
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 28px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.2rem;
}

.feature-demo-video-row {
  width: 100%;
  max-width: 1600px;
  margin: 60px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .feature-demo-video-row {
    margin-top: 40px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .feature-demo-video-row {
    margin-top: 32px;
    padding: 0 16px;
  }
}

.feature-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.feature-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #8B6F47;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid #8B6F47;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.feature-carousel-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.feature-carousel-button svg {
  font-size: 16px;
  font-weight: 700;
}

.feature-carousel-button-next {
  right: 20px;
}

.feature-carousel-button-prev {
  left: 20px;
}

@media screen and (max-width: 768px) {
  .feature-carousel-button {
    width: 36px;
    height: 36px;
  }

  .feature-carousel-button svg {
    font-size: 12px;
  }

  .feature-carousel-button-next {
    right: 16px;
  }

  .feature-carousel-button-prev {
    left: 16px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame-container {
    max-width: 280px;
    max-height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .feature-carousel-button {
    width: 32px;
    height: 32px;
  }

  .feature-carousel-button svg {
    font-size: 10px;
  }

  .feature-carousel-button-next {
    right: 12px;
  }

  .feature-carousel-button-prev {
    left: 12px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame-container {
    max-width: 240px;
    max-height: 300px;
  }
}

.feature-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  max-height: 600px;
  height: 100%;
  width: 100%;
  background-color: #FFF9F5;
  border-radius: 16px;
  padding: 40px;
}

.feature-carousel-wrapper .feature-swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.feature-carousel-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  max-height: 600px;
  height: 100%;
  overflow: hidden;
  width: 100%;
  background-color: transparent;
}

.feature-carousel-wrapper .swiper-slide .phone-frame-container {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}

.feature-carousel-wrapper .swiper-slide .phone-frame {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.feature-carousel-wrapper .swiper-slide .phone-screenshot {
  object-fit: contain;
}

.feature-video-wrapper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-image-wrapper .feature-video-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet view (769px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .feature-video-wrapper {
    border-radius: 14px;
    min-height: 400px;
    max-height: 500px;
  }

  .feature-carousel-wrapper {
    min-height: 500px;
    max-height: 500px;
    padding: 40px 30px;
    border-radius: 14px;
  }

  .feature-carousel-wrapper .feature-swiper {
    min-height: 420px;
    height: 420px;
  }

  .feature-carousel-wrapper .swiper-slide {
    min-height: 420px;
    height: 420px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame-container {
    max-width: 350px;
    max-height: 420px;
    height: 420px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame {
    max-height: 420px;
    height: 420px;
  }

  .feature-carousel-button {
    width: 40px;
    height: 40px;
  }

  .feature-carousel-button svg {
    font-size: 14px;
  }

  .feature-carousel-button-next {
    right: 18px;
  }

  .feature-carousel-button-prev {
    left: 18px;
  }

  .feature-image-wrapper:has(.feature-carousel-wrapper) {
    min-height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .feature-video-wrapper {
    border-radius: 12px;
    min-height: 280px;
    max-height: 350px;
  }

  .feature-carousel-wrapper {
    min-height: 350px;
    max-height: 350px;
    padding: 30px 20px;
    border-radius: 12px;
  }

  .feature-carousel-wrapper .feature-swiper {
    min-height: 290px;
    height: 290px;
  }

  .feature-carousel-wrapper .swiper-slide {
    min-height: 290px;
    height: 290px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame-container {
    max-width: 280px;
    max-height: 290px;
    height: 290px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame {
    max-height: 290px;
    height: 290px;
  }
}

@media screen and (max-width: 480px) {
  .feature-video-wrapper {
    border-radius: 10px;
    min-height: 240px;
    max-height: 300px;
  }

  .feature-carousel-wrapper {
    min-height: 300px;
    max-height: 300px;
    padding: 20px 16px;
    border-radius: 10px;
  }

  .feature-carousel-wrapper .feature-swiper {
    min-height: 260px;
    height: 260px;
  }

  .feature-carousel-wrapper .swiper-slide {
    min-height: 260px;
    height: 260px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame-container {
    max-width: 240px;
    max-height: 260px;
    height: 260px;
  }

  .feature-carousel-wrapper .swiper-slide .phone-frame {
    max-height: 260px;
    height: 260px;
  }
}

.feature-video-player {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  min-height: 0;
}


.feature-video-player::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .feature-headline {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .feature-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .feature-headline {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .feature-description {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
}

.activity-icons {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  justify-content: center;
}

.activity-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
}

.activity-icon > svg {
  width: 60px;
  height: 60px;
  padding: 12px;
  border-radius: 12px;
  background-color: transparent;
  color: var(--text-gray);
  border: 2px solid var(--text-gray);
  box-shadow: none;
}


.icon-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  text-align: center;
  margin-top: 4px;
}

.food-bowls-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.food-bowl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-bowl-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.food-bowl-calories {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-black);
  margin: 0;
}

.diary-grid-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.dual-phones-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.dual-phone {
  max-width: 200px;
  flex: 0 0 auto;
}

/* Removed feature-image-community dual phones */


@media screen and (max-width: 960px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .feature-container.reverse {
    flex-direction: column;
  }

  /* Ensure image is always on top and text is always on bottom in mobile view */
  .feature-image-wrapper {
    order: 1;
    width: 100%;
  }

  .feature-image-wrapper:has(.feature-carousel-wrapper) {
    min-height: 350px;
  }
}

@media screen and (max-width: 960px) {

  .feature-content {
    order: 2;
  }

  .activity-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .activity-icon {
    width: 70px;
  }

  .activity-icon > svg {
    width: 50px;
    height: 50px;
    padding: 10px;
    border: 2px solid var(--text-gray);
  }

  .icon-label {
    font-size: 0.75rem;
  }

  .food-bowls-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .food-bowl-image {
    width: 150px;
    height: 150px;
  }

  .dual-phones-container {
    flex-direction: column;
    gap: 30px;
  }

  .dual-phone {
    max-width: 180px;
  }

/* Removed feature-image-community mobile styles */
}

@media screen and (max-width: 480px) {
  .feature-image-wrapper:has(.feature-carousel-wrapper) {
    min-height: 300px;
  }

  .activity-icon {
    width: 60px;
  }

  .activity-icon > svg {
    width: 45px;
    height: 45px;
    padding: 8px;
  }

  .icon-label {
    font-size: 0.7rem;
  }

  .food-bowl-image {
    width: 120px;
    height: 120px;
  }

  .dual-phone {
    max-width: 160px;
  }

/* Removed feature-image-community mobile small styles */
}.footer-container {
  background-color: var(--bg-light);
  padding: 40px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-container {
    padding: 30px 0 16px;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 24px 0 12px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .footer-content {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    padding: 0 16px;
    margin-bottom: 24px;
  }
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.footer-badges {
  display: flex;
  gap: 12px;
}

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

.footer-social-link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon {
  font-size: 1.5rem;
}

.footer-social-link:hover {
  color: #5865F2; /* Discord brand color */
  transform: translateY(-1px);
}

.store-badge {
  display: flex;
  align-items: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.app-store-badge {
  background-color: var(--text-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-badge:hover {
  background-color: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.google-play-badge {
  background-color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-play-badge:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
}

.store-icon {
  font-size: 1.5rem;
  margin-right: 8px;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-text span:first-child {
  font-size: 0.6rem;
}

.store-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-bottom {
  width: 100%;
  max-width: 1600px;
  padding: 20px 40px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 16px 20px 0;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-bottom {
    padding: 12px 16px 0;
  }
}

.footer-year {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-green);
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-badges {
    flex-direction: row;
    width: auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-badges .store-badge {
    width: auto;
    max-width: none;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media screen and (max-width: 480px) {
  .footer-content {
    gap: 24px;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-badges .store-badge {
    max-width: none;
    width: auto;
  }

  .footer-year {
    font-size: 0.75rem;
  }

  .footer-legal-links a {
    font-size: 0.75rem;
  }
}.header {
  background: transparent;
  min-height: 80px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 0;
  overflow-x: hidden;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  height: auto;
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.header.scrolled .header-container::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  z-index: -1;
}

  .logo-container {
    justify-self: start;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

.navbar-logo {
  color: var(--text-black);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.logo-icon-img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-links-btn {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-links-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-icon {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 80px;
    transition: min-height 0.3s ease;
  }

  .header-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    position: relative;
    min-height: 80px;
    transition: min-height 0.3s ease, padding-bottom 0.3s ease;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Expand header and container when menu is active */
  .header.menu-active {
    min-height: auto;
  }

  .header.menu-active .header-container {
    min-height: auto;
    padding-bottom: 10px;
  }

  /* Always show floating background when menu is active, even if not scrolled */
  .header.menu-active .header-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    z-index: -1;
  }

  /* Top row with logo and menu icon - keep them in a row */
  .logo-container {
    display: flex;
    align-items: center;
    height: 80px;
    flex-shrink: 1;
    flex-grow: 0;
    order: 1;
    min-width: 0;
    overflow: hidden;
  }

  .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-black);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    padding-right: 8px;
    transition: color 0.2s ease;
  }

  .navbar-logo {
    font-size: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .logo-icon-img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin: 0;
    order: 3;
    position: relative;
    z-index: 1;
    background: transparent;
    margin-top: 0;
  }

  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
    padding: 0 0 30px 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    overflow: visible;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .nav-link {
    color: var(--text-black);
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    font-size: 1.5rem;
  }

  .menu-icon:hover {
    color: var(--primary-green);
  }

  .menu-icon:focus {
    outline: none;
  }

  .menu-icon:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* When scrolled and menu active, use existing scrolled background but extend it */
  .header.scrolled.menu-active .header-container::before {
    bottom: 10px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
    transition: border-radius 0.3s ease, bottom 0.3s ease;
  }
}

@media screen and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .header-container {
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .navbar-logo {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .logo-icon-img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .menu-icon {
    font-size: 1.4rem;
    background: none;
    border: none;
    padding-right: 8px;
  }

  .nav-link {
    font-size: 1.25rem;
  }
}.hero-section {
  min-height: 100vh;
  padding: 160px 0 80px 0;
  background-color: var(--bg-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 140px 0 60px 0;
    min-height: auto;
  }

  .hero-container {
    padding: 0 20px;
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 120px 0 40px 0;
  }

  .hero-container {
    padding: 0 16px;
    gap: 30px;
  }
}

.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
  min-width: 0;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .hero-headline {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .hero-content .hero-headline,
  .hero-headline {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges .store-badge {
  display: flex;
  align-items: center;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.hero-badges .app-store-badge {
  background-color: var(--text-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badges .app-store-badge:hover {
  background-color: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-badges .google-play-badge {
  background-color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badges .google-play-badge:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
}

.hero-badges .store-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.hero-badges .store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hero-badges .store-text span:first-child {
  font-size: 0.7rem;
}

.hero-badges .store-name {
  font-size: 1.1rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .hero-badges .store-icon {
    font-size: 1.5rem;
    margin-right: 8px;
  }

  .hero-badges .store-text span:first-child {
    font-size: 0.65rem;
  }

  .hero-badges .store-name {
    font-size: 0.95rem;
  }

  .hero-badges .store-badge {
    padding: 10px 18px;
  }
}

@media screen and (max-width: 480px) {
  .hero-badges .store-icon {
    font-size: 1.25rem;
    margin-right: 8px;
  }

  .hero-badges .store-text span:first-child {
    font-size: 0.6rem;
  }

  .hero-badges .store-name {
    font-size: 0.85rem;
  }

  .hero-badges .store-badge {
    padding: 8px 16px;
  }
}

.hero-image-wrapper {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 0;
}

.hero-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--primary-green);
  border-radius: 50%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .hero-bg-circle {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .hero-bg-circle {
    width: 280px;
    height: 280px;
  }
}

.hero-image-animation-wrapper {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-animation-wrapper.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-img-frame {
  width: 100%;
  max-width: 320px;
  /* Slightly larger for hero */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  /* Drop shadow on the frame */
}

@media screen and (max-width: 768px) {
  .hero-img-frame {
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .hero-img-frame {
    max-width: 240px;
  }
}

@media screen and (max-width: 960px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hero-badges {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .hero-badges .store-badge {
    flex: 1;
    max-width: 200px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-content {
    margin-bottom: 30px;
  }

  .hero-badges {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .hero-badges .store-badge {
    flex: 1;
    max-width: 48%;
    width: auto;
  }
}

.hero-text {
  max-width: 500px;
  margin-right: 50px;
  text-align: left;
}

.highlight-text {
  color: #388E3C;
}

.hero-buttons .app-store-button,
.hero-buttons .google-play-button {
  padding: 14px 28px;
  margin-right: 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hero-buttons .app-store-button.disabled,
.hero-buttons .google-play-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-buttons .app-store-button:hover,
.hero-buttons .google-play-button:hover {
  transform: translateY(-2px);
}

.hero-buttons .app-store-button {
  background-color: #000;
  color: #fff;
}

.hero-buttons .google-play-button {
  background-color: transparent;
  color: #333;
  border-color: #ccc;
}

.hero-buttons .google-play-button:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
}

.button-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}.phone-frame-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: auto;
    /* 3D Bezel Effect - Thinner */
    border: 8px solid #1a1a1a;
    border-radius: 48px;
    background-color: #1a1a1a;
    overflow: hidden;
    /* Layered shadows for depth and metallic rim */
    box-shadow: 
        /* Inner bezel shadow */
        inset 0 0 4px 1px rgba(0,0,0,0.3),
        /* Outer metallic rim (Dark Grey) */
        0 0 0 1px #333,
        /* Outer rim (Black) */
        0 0 0 3px #000,
        /* Ambient light reflection (Top-Left Highlight) */
        -2px -2px 5px rgba(255,255,255,0.05),
        /* Deep Drop Shadow */
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.phone-frame-container:hover {
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
    .phone-frame-container {
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .phone-frame-container {
        max-width: 240px;
    }
}

.feature-image-tracking .phone-frame-container {
    position: relative;
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}

.phone-frame {
    display: none !important;
}

.feature-image-tracking .phone-frame {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobile and tablet: Make tracking feature phone frame display like standard phone frame */
@media screen and (max-width: 1024px) {
    .feature-image-tracking .phone-frame-container {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .feature-image-tracking .phone-frame {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
    }
}

@media screen and (max-width: 768px) {
    .feature-image-tracking .phone-frame-container {
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .feature-image-tracking .phone-frame-container {
        max-width: 240px;
    }
}

.phone-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
}

/* Border radius for smaller displays (carousel, etc.) */
@media screen and (max-width: 768px) {
    .phone-screenshot {
        border-radius: 24px;
    }
}

@media screen and (max-width: 480px) {
    .phone-screenshot {
        border-radius: 20px;
    }
}

/* Border radius for tracking feature (bigger images) */
.feature-image-tracking .phone-screenshot {
    border-radius: 40px;
}

@media screen and (max-width: 768px) {
    .feature-image-tracking .phone-screenshot {
        border-radius: 32px;
    }
}

@media screen and (max-width: 480px) {
    .feature-image-tracking .phone-screenshot {
        border-radius: 28px;
    }
}

/* Feature community styles removed */.premium-section {
    padding: 100px 0;
    background-color: var(--white);
}

.premium-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 768px) {
    .premium-section {
        padding: 60px 0;
    }

    .premium-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .premium-section {
        padding: 40px 0;
    }

    .premium-container {
        padding: 0 16px;
    }
}

.premium-content {
    width: 100%;
    text-align: center;
    background-color: var(--text-black);
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.premium-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .premium-content {
        padding: 60px 30px;
    }

    .premium-headline {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .premium-content {
        padding: 40px 20px;
    }

    .premium-headline {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    text-align: left;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 90px;
}

@media screen and (max-width: 768px) {
    .premium-features-grid {
        padding-left: 0;
        gap: 20px 30px;
        margin-bottom: 30px;
        /* Center the grid container */
        margin-left: auto;
        margin-right: auto;
        /* Limit width so it doesn't stretch too wide */
        max-width: 500px;
        width: fit-content;
    }
}

@media screen and (max-width: 480px) {
    .premium-features-grid {
        gap: 16px;
        margin-bottom: 24px;
        max-width: 100%;
        width: fit-content;
    }
}

.premium-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .premium-feature-item {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .premium-feature-item {
        font-size: 0.95rem;
    }
}

.premium-check-icon {
    color: var(--primary-green);
    margin-right: 12px;
    flex-shrink: 0;
}

.premium-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-option {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

@media screen and (max-width: 480px) {
    .pricing-amount {
        font-size: 2rem;
    }
}

.pricing-period {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 8px;
    min-height: 24px;
}

.pricing-savings {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 4px;
    min-height: 24px;
}

.pricing-divider {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.7;
    font-weight: 500;
    align-self: center;
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .premium-features-grid {
        grid-template-columns: 1fr;
    }

    .premium-pricing {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-divider {
        order: 2;
    }

    .pricing-option:first-of-type {
        order: 1;
    }

    .pricing-option:last-of-type {
        order: 3;
    }
}.contact-page {
  min-height: 85vh;
  padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-page h1 {
  text-align: center;
  color: var(--text-black);
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-content {
  background: var(--white);
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.contact-content > p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

.contact-methods {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.contact-method h3 {
  color: var(--text-black);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-method p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.email-button {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
  margin: 1rem 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.email-button:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.email-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(46, 204, 113, 0.3);
}

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

.message-label {
  display: block;
  color: var(--text-black);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.message-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
  color: var(--text-black);
}

.message-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.message-textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.contact-note {
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.9rem;
  opacity: 0.8;
}

.support-note {
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}


.contact-method ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.contact-method li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .contact-page {
    padding: 120px 0 80px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-page h1 {
    font-size: 2.5rem;
  }
  
  .contact-content {
    padding: 40px 30px;
  }
  
  .contact-methods {
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .contact-page {
    padding: 120px 0 60px 0;
  }
  
  .contact-container {
    padding: 0 16px;
  }
  
  .contact-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-content {
    padding: 30px 20px;
  }

  .contact-content > p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .contact-methods {
    gap: 1.25rem;
  }

  .contact-method h3 {
    font-size: 1.25rem;
  }

  .contact-method p {
    font-size: 0.95rem;
  }

  .email-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
.privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .privacy-policy-container {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .privacy-policy-container {
    padding: 1rem;
  }
}.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.terms-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-content h1 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  text-align: center;
}

.last-updated {
  color: #666;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}

.terms-content section {
  margin-bottom: 2rem;
}

.terms-content h2 {
  color: #444;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.terms-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 1rem;
  }

  .terms-content {
    padding: 1.5rem;
  }

  .terms-content h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .terms-container {
    padding: 0.75rem;
  }

  .terms-content {
    padding: 1.25rem;
  }

  .terms-content h1 {
    font-size: 1.75rem;
  }

  .terms-content h2 {
    font-size: 1.25rem;
  }

  .terms-content p {
    font-size: 0.95rem;
  }
}.contact-page {
  min-height: 85vh;
  padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-page h1 {
  text-align: center;
  color: var(--text-black);
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-content {
  background: var(--white);
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.contact-content > p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

.contact-methods {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.contact-method h3 {
  color: var(--text-black);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-method p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.email-button {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
  margin: 1rem 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.email-button:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.email-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(46, 204, 113, 0.3);
}

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

.message-label {
  display: block;
  color: var(--text-black);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.message-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
  color: var(--text-black);
}

.message-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.message-textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.contact-note {
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.9rem;
  opacity: 0.8;
}

.support-note {
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}


.contact-method ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.contact-method li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .contact-page {
    padding: 120px 0 80px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-page h1 {
    font-size: 2.5rem;
  }
  
  .contact-content {
    padding: 40px 30px;
  }
  
  .contact-methods {
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .contact-page {
    padding: 120px 0 60px 0;
  }
  
  .contact-container {
    padding: 0 16px;
  }
  
  .contact-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-content {
    padding: 30px 20px;
  }

  .contact-content > p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .contact-methods {
    gap: 1.25rem;
  }

  .contact-method h3 {
    font-size: 1.25rem;
  }

  .contact-method p {
    font-size: 0.95rem;
  }

  .email-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
