/* =========================
   APPLE-INSPIRED DESIGN
   Theme: Minimal White with Futuristic Accents
========================= */

:root {
  --primary: #131787;
  --secondary: #5AC8FA;
  --accent: #34C759;
  --gold: #FFD60A;
  --dark: #1a1a1a;
  --light-gray: #F5F5F7;
  --medium-gray: #E5E5EA;
  --text: #1a1a1a;
  --text-light: #86868B;
  --white: #f3f4f6;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 54px;
}

.hero-image {
  border-radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  letter-spacing: -0.3px;
  animation: fadeSoft 0.5s ease;
}

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

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

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover::after {
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

section {
  padding: 0 0;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes riseSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



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

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}


@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}


/* =========================
   HEADER & NAVBAR
========================= */

header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(19, 23, 135, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header:hover {
  box-shadow: 0 8px 40px rgba(19, 23, 135, 0.12);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  width: 130px;
  height: auto;
  transition: var(--transition);
  opacity: 0.95;
  cursor: pointer;
}

.logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(19, 23, 135, 0.2));
}

#main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

#main-nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: var(--transition);
  color: var(--text);
  letter-spacing: -0.2px;
  border-radius: 8px;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

#main-nav a:hover {
  color: var(--primary);
  background: rgba(19, 23, 135, 0.06);
}

#main-nav a:hover::after {
  width: calc(100% - 24px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(19, 23, 135, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  #main-nav.active {
    display: block;
    animation: slideInRight 0.3s ease;
    background: #f3f4f6;
  }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  #main-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  #main-nav li:last-child {
    border-bottom: none;
  }

  #main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 4px 0;
  }

  #main-nav a:hover {
    background: rgba(19, 23, 135, 0.08);
  }

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

/* =========================
   HERO SECTION
========================= */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
  animation: fadeInUp 0.8s ease;
  min-height: auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: subtleFloat 4s ease-in-out infinite;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

#home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  height: 90vh;
  padding-top: 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #f3f4f6 100%);
  animation: fadeInUp 0.8s ease;
  min-height: auto;
  box-sizing: border-box;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col.s6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Easy h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary);
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.Pay {
  margin: 28px 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  animation: fadeInUp 0.8s ease 0.2s both;
  font-weight: 400;
}

em {
  font-style: normal;
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primarys,
.btn-secondarys {
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.3px;
  min-height: 44px;
  width: 100%;
}

.btn-primarys {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(19, 23, 135, 0.2);
  position: relative;
  border: 2px solid var(--dark);
}

.btn-primarys::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn-primarys:hover::before {
  animation: ripple 0.6s ease-out;
}

.btn-primarys:hover {
  background: #0d0f47;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(19, 23, 135, 0.4);
}

.btn-secondarys {
  border: 2px solid var(--dark);
  background: var(--white);
  color: var(--text);
  position: relative;
}

.btn-secondarys::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(19, 23, 135, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn-secondarys:hover::before {
  animation: ripple 0.6s ease-out;
}

.btn-secondarys:hover {
  background: var(--light-gray);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(19, 23, 135, 0.15);
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: subtleFloat 4s ease-in-out infinite;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  position: relative;
  height: fit-content;
  padding: 0;
  margin: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 0%, transparent 60%, rgba(243, 244, 246, 0.4) 85%, rgba(243, 244, 246, 0.8) 100%);
  pointer-events: none;
}

.hero-image:hover {
  box-shadow: 0 30px 60px rgba(19, 23, 135, 0.15);
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #f3f4f6 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 40px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  animation: fadeInUp 0.8s ease both;
  cursor: pointer;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-item:hover {
  background: linear-gradient(135deg, #f3f4f6 0%, rgba(90, 200, 250, 0.08) 100%);
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(19, 23, 135, 0.15);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  transform: scale(1.25) rotate(-5deg);
  animation: pulse 0.5s ease-out;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.stat-text {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

/* =========================
   SECTIONS COMMON
========================= */

.section-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.section-title p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section {
  background: var(--white);
  padding: 100px 0;
}

.mission-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.mission-text {
  flex: 1;
  animation: slideInRight 0.8s ease;
}

.mission-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.8px;
}

.mission-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 400;
}

.mission-image {
  flex: 1;
  animation: subtleFloat 4s ease-in-out infinite;
}

.mission-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.mission-image img:hover {
  box-shadow: 0 28px 52px rgba(19, 23, 135, 0.18);
}

/* =========================
   VALUES SECTION
========================= */

.values-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #f3f4f6 100%);
  padding: 100px 0;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

@media (max-width: 1200px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .values-container {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

.value-card {
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease both;
  cursor: pointer;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(19, 23, 135, 0.15);
  border-color: var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, rgba(90, 200, 250, 0.05) 100%);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.2) rotate(5deg);
}

.value-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
  background: var(--white);
  padding: 100px 0;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.member-image {
  width: 100%;
  max-width: 420px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--medium-gray);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.member-image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
}

.member-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

/* =========================
   SUSTAINABILITY SECTION
========================= */

.sustainability-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #f3f4f6 100%);
  padding: 100px 0;
}

.sustainability-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.sustainability-text {
  flex: 1.1;
  animation: slideInRight 0.8s ease;
}

.sustainability-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.8px;
}

.sustainability-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 400;
}

.sustainability-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sustainability-features li {
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--medium-gray);
  line-height: 1.6;
  transition: background 0.2s ease, border-color 0.2s ease;
  animation: fadeInUp 0.8s ease both;
  cursor: default;
}

.sustainability-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.sustainability-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.sustainability-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.sustainability-features li:nth-child(4) {
  animation-delay: 0.4s;
}

.sustainability-features li:nth-child(5) {
  animation-delay: 0.5s;
}

.sustainability-features li:hover {
  background: #ffffff;
  border-color: var(--medium-gray);
}

.sustainability-features strong {
  color: var(--text);
  font-weight: 700;
  display: inline;
  margin-right: 6px;
  font-size: 13px;
}


.sustainability-image {
  flex: 0.9;
  animation: subtleFloat 4s ease-in-out infinite;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.sustainability-image img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-form {
  background: #f3f4f6;
  padding: 56px;
  border-radius: 16px;
  border: 1px solid var(--medium-gray);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  animation: riseSoft 0.7s ease both;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #ffffff;
  transition: var(--transition);
  letter-spacing: -0.2px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23131787' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19, 23, 135, 0.1);
}

.form-group select option {
  color: var(--text);
  background: white;
  padding: 8px 12px;
}

.form-group select option:checked {
  background: linear-gradient(var(--primary), var(--primary));
  background-color: var(--primary);
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
  font-size: 15px;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  letter-spacing: -0.3px;
}

.submit-btn:hover {
  background: #0d0f47;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 23, 135, 0.25);
}

/* =========================
   PAGE-SPECIFIC STYLES
========================= */

/* Contact & Policy Pages Hero */
.contact-hero,
.policy-hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
  padding: 100px 0;
  text-align: center;
  margin-bottom: 60px;
  animation: riseSoft 0.7s ease both;
}

.contact-hero h1,
.policy-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.contact-hero p,
.policy-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Content */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 60px 0;
  animation: riseSoft 0.7s ease both;
}

.contact-info h2,
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--text);
  position: relative;
  padding-bottom: 16px;
  font-weight: 600;
}

.contact-info h2::after,
.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Contact Methods */
.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 12px;
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  animation: riseSoft 0.6s ease both;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(19, 23, 135, 0.12);
  background: rgba(19, 23, 135, 0.02);
}

.contact-method:nth-of-type(2) {
  animation-delay: 0.06s;
}

.contact-method:nth-of-type(3) {
  animation-delay: 0.12s;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 16px rgba(19, 23, 135, 0.2);
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 6px;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
}

.contact-details a {
  color: var(--primary);
  transition: var(--transition);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Business Hours */
.business-hours {
  margin-top: 40px;
  padding: 28px;
  background: var(--light-gray);
  border-radius: 12px;
  border: 1px solid var(--medium-gray);
  animation: riseSoft 0.7s ease both;
}

.business-hours h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 600;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 600;
  color: var(--text);
}

.hours-list span {
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: #f3f4f6;
  padding: 56px;
  border-radius: 16px;
  border: 1px solid var(--medium-gray);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  animation: riseSoft 0.7s ease both;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  letter-spacing: -0.3px;
}

.submit-btn:hover {
  background: #0d0f47;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 23, 135, 0.25);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  animation: riseSoft 0.7s ease both;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--medium-gray);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

.map-placeholder h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.map-placeholder a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

.map-placeholder a:hover {
  opacity: 0.8;
}

/* FAQ Preview Section */
.faq-preview {
  background: var(--light-gray);
  padding: 80px 0;
}

.faq-preview h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  animation: riseSoft 0.6s ease both;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.faq-item h3 i {
  color: var(--primary);
  font-size: 20px;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.faq-link {
  text-align: center;
}

/* Policy Pages Content */
.policy-section {
  padding: 60px 0;
  animation: riseSoft 0.7s ease both;
}

.policy-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
  position: relative;
  padding-bottom: 16px;
}

.policy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text);
}

.policy-section h4 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.policy-section ul {
  list-style: none;
  margin: 16px 0 24px;
  padding-left: 0;
}

.policy-section li {
  padding-left: 0;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}


.policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 60px 0;
}

.policy-text {
  grid-column: 1;
}

.policy-image {
  grid-column: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  animation: riseSoft 0.7s ease both;
}

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

/* =========================
   CTA SECTION
========================= */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  margin: 80px 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(19, 23, 135, 0.2);
  animation: riseSoft 0.7s ease both;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.95);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* =========================
   FOOTER
========================= */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-column:first-child {
  margin-top: -8px;
}

.footer-column:not(:first-child) {
  padding-top: 8px;
}

.footer-column .logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-column .logo-img {
  width: 140px;
  height: auto;
}

.footer-column h3 {
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.2px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
  font-weight: 400;
}

.footer-links a {
  color: inherit;
  transition: var(--transition);
}

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

.footer-links li:hover {
  color: var(--white);
}

.footer-links i {
  color: var(--primary);
  margin-top: 1px;
  flex-shrink: 0;
  font-size: 15px;
}

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.social-media a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.app-stores {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.app-stores img {
  width: 120px;
  height: auto;
  transition: var(--transition);
}

.app-stores img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.copyright {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

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

  .section-title {
    margin-bottom: 48px;
  }

  .section-title h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-section {
    padding: 60px 0;
    gap: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.6px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hero-image {
    max-width: 100%;
    height: 280px;
    width: 100%;
    border-radius: 16px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 28px 16px;
    border-radius: 14px;
  }

  .stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .stat-number {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .stat-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.6;
  }

  .mission-content,
  .sustainability-content {
    flex-direction: column;
    gap: 32px;
  }

  .mission-text,
  .sustainability-text {
    text-align: left;
  }

  .mission-text h3,
  .sustainability-text h3 {
    font-size: 22px;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .mission-text p,
  .sustainability-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .mission-image,
  .sustainability-image {
    width: 100%;
  }

  .mission-image img,
  .sustainability-image img {
    max-height: 280px;
    border-radius: 14px;
    width: 100%;
  }

  .values-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 28px 20px;
    border-radius: 14px;
    text-align: center;
  }

  .value-icon {
    font-size: 36px;
    margin-bottom: 14px;
    color: var(--primary);
  }

  .value-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .value-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .sustainability-features {
    margin-top: 20px;
    gap: 12px;
    flex-direction: column;
  }

  .sustainability-features li {
    font-size: 14px;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
  }

  .sustainability-features li:active {
    background: rgba(19, 23, 135, 0.12);
    transform: translateX(2px);
  }


  .sustainability-features strong {
    font-size: 14px;
    font-weight: 700;
  }

  .Easy h1 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
    text-align: center;
  }

  .Pay {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
  }

  #home {
    flex-direction: column;
    height: auto;
    padding-top: 40px;
    gap: 32px;
    align-items: stretch;
  }

  .col.s6 {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primarys,
  .btn-secondarys {
    width: 100%;
    padding: 12px 40px;
    min-height: 48px;
    font-size: 19px;
  }

  .member-image img {
    max-width: 100%;
    border-radius: 16px;
    max-height: 400px;
  }

  .contact-form {
    padding: 32px 20px;
    border-radius: 14px;
    background: #f3f4f6;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 12px;
    font-size: 15px;
    border-radius: 8px;
  }

  .form-group select {
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 38px;
  }

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

  .submit-btn {
    min-height: 44px;
    padding: 14px 24px;
    font-size: 16px;
  }

  header {
    padding: 0;
  }

  .header-main .container {
    gap: 12px;
  }

  .logo-img {
    width: 90px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  #main-nav {
    max-height: calc(100vh - 54px);
    overflow-y: auto;
    z-index: 999;
  }

  #main-nav a {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-column p {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-links li {
    font-size: 15px;
    margin-bottom: 8px;
    gap: 8px;
  }

  .social-media {
    gap: 8px;
  }

  .social-media a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    min-width: 44px;
    min-height: 44px;
  }

  .app-stores {
    gap: 8px;
  }

  .app-stores img {
    width: 110px;
  }

  .copyright {
    font-size: 15px;
    margin-top: 24px;
    padding-top: 16px;
  }

  /* Mobile CTA Section */
  .cta-section {
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 12px;
  }

  .cta-content h2 {
    font-size: 28px;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .cta-buttons .btn {
    padding: 12px 24px;
    font-size: 15px;
    min-height: 44px;
    flex: 1;
    justify-content: center;
  }

  /* Mobile Contact & Policy Pages */
  .contact-hero,
  .policy-hero {
    padding: 60px 0;
    margin-bottom: 40px;
  }

  .contact-hero h1,
  .policy-hero h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .contact-hero p,
  .policy-hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0;
  }

  .contact-method {
    padding: 16px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .business-hours {
    padding: 20px;
    margin-top: 32px;
  }

  .map-container {
    height: 300px;
  }

  /* Mobile FAQ Preview */
  .faq-preview {
    padding: 60px 0;
  }

  .faq-preview h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .faq-item {
    padding: 24px;
    border-radius: 12px;
  }

  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-link {
    padding: 0 0;
  }

  .faq-link .btn {
    width: 100%;
    min-height: 44px;
  }

  /* Mobile FAQ */
  .faq-search {
    padding: 20px 0;
  }

  .search-container {
    flex-direction: column;
    gap: 10px;
  }

  .search-input,
  .search-button {
    width: 100%;
  }

  .search-button {
    padding: 12px 20px;
  }

  .faq-items {
    gap: 12px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-answer-content {
    padding: 16px;
    font-size: 14px;
  }

  /* Smaller Mobile (480px and below) */
  @media (max-width: 480px) {
    section {
      padding: 40px 0;
    }

    .hero-section {
      padding: 50px 0;
    }

    .hero-text h1 {
      font-size: 24px;
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .hero-text p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .hero-image {
      height: 240px;
      border-radius: 14px;
    }

    .stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .stat-item {
      padding: 20px 12px;
      border-radius: 12px;
    }

    .stat-icon {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .stat-number {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .stat-text {
      font-size: 13px;
      line-height: 1.4;
    }

    .section-title h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .section-title p {
      font-size: 13px;
    }

    .mission-text h3,
    .sustainability-text h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .mission-text p,
    .sustainability-text p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .mission-image img,
    .sustainability-image img {
      max-height: 240px;
      border-radius: 12px;
    }

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

    .value-icon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .value-card h4 {
      font-size: 15px;
      margin-bottom: 8px;
    }

    .value-card p {
      font-size: 13px;
      line-height: 1.5;
    }

    .sustainability-features li {
      font-size: 13px;
      gap: 10px;
      padding: 12px 10px;
    }

    .sustainability-features strong {
      font-size: 13px;
    }

    .Easy h1 {
      font-size: 28px;
    }

    .Pay {
      font-size: 16px;
    }

    .cta-section {
      padding: 40px 0;
      margin: 40px 0;
    }

    .cta-content h2 {
      font-size: 24px;
    }

    .cta-content p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .cta-buttons .btn {
      padding: 10px 20px;
      font-size: 14px;
      min-height: 40px;
    }

    .contact-hero h1,
    .policy-hero h1,
    .faq-hero h1 {
      font-size: 24px;
    }

    .contact-hero p,
    .policy-hero p,
    .faq-hero p {
      font-size: 15px;
    }

    .contact-method {
      padding: 12px;
      margin-bottom: 16px;
    }

    .policy-title {
      font-size: 22px;
    }

    .policy-section h3 {
      font-size: 18px;
    }

    .faq-category-title {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .logo-img {
      width: 80px;
    }

    .btn-primarys,
    .btn-secondarys {
      padding: 10px 24px;
      font-size: 14px;
      min-height: 40px;
    }
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
    letter-spacing: -0.7px;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.6;
  }

  .Easy h1 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.9px;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    word-spacing: 2px;
  }

  .Pay {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 18px 0;
  }

  #home {
    padding: 48px 0;
    gap: 32px;
    align-items: stretch;
    flex-direction: column;
    height: auto;
  }

  .col.s6 {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .btn-primarys,
  .btn-secondarys {
    width: 100%;
    padding: 12px 40px;
    min-height: 60px;
    font-size: 19px;
    font-weight: 600;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 28px 18px;
  }

  .stat-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .stat-text {
    font-size: 15px;
  }

  .mission-section,
  .team-section,
  .sustainability-section {
    padding: 48px 0;
  }

  .mission-content,
  .sustainability-content {
    gap: 36px;
  }

  .mission-text,
  .sustainability-text {
    text-align: left;
  }

  .mission-text h3,
  .sustainability-text h3 {
    font-size: 26px;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
  }

  .mission-text p,
  .sustainability-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .mission-image img,
  .sustainability-image img {
    border-radius: 16px;
  }

  .sustainability-features {
    margin-top: 16px;
    gap: 12px;
  }

  .sustainability-features li {
    font-size: 15px;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    line-height: 1.5;
  }

  .sustainability-features strong {
    margin-bottom: 2px;
  }


  .values-section {
    padding: 48px 0;
  }

  .values-container {
    gap: 12px;
  }

  .value-card {
    padding: 28px 20px;
  }

  .value-icon {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .value-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .value-card::before {
    height: 2px;
  }

  .team-section {
    padding: 48px 0;
  }

  .team-container {
    gap: 24px;
  }

  .member-image img {
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }

  .contact-form {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 11px 11px;
    font-size: 15px;
    border-radius: 8px;
  }

  .form-group input {
    height: 44px;
  }

  .form-group textarea {
    min-height: 110px;
    font-size: 15px;
  }

  header {
    padding: 10px 0;
  }

  .header-main .container {
    gap: 8px;
  }

  .logo-img {
    width: 90px;
  }

  #main-nav ul {
    gap: 0;
  }

  #main-nav a {
    font-size: 15px;
    padding: 12px 12px;
  }

  .mobile-menu-btn {
    font-size: 18px;
  }

  footer {
    padding: 60px 0 16px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-column p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .footer-links li {
    font-size: 15px;
    margin-bottom: 8px;
    gap: 8px;
  }

  .footer-links i {
    font-size: 15px;
  }

  .social-media {
    gap: 8px;
    margin-top: 16px;
  }

  .social-media a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .app-stores {
    gap: 8px;
    margin-top: 16px;
  }

  .app-stores img {
    width: 110px;
  }

  .copyright {
    font-size: 15px;
    margin-top: 28px;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
