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

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FCF7F9;
  color: #3B373E;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
}

/* ========================= SHARED SECTION HEADING SYSTEM ========================= */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #2F2C30;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16px;
  color: #8E8A90;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

.title-orange {
  color: #c11f2f;
}

/* ========================= HERO ========================= */
.hero-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.hero-left {
  max-width: 520px;
}

.hero-title-1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-title-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-title-plain {
  font-size: 40px;
}

.hero-title-orange {
  font-size: 40px;
  font-weight: 700;
  color: #c11f2f;
}

.hero-desc {
  font-size: 17px;
  color: #777278;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 28px;
  margin-top: 16px;
}

.hero-btns {
  display: flex;
  gap: 14px;
}

.btn-start {
  background: #c11f2f;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.btn-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(238, 93, 40, .35);
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  animation: heroFloat 6s ease-in-out infinite;
  display: block;
}

.overlay-brandaid-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 120px !important;
  height: auto;
  animation: logoFloat 5s ease-in-out infinite;
  z-index: 3;
}

.ui-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

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

.card1 {
  width: 180px;
  height: 110px;
  left: 40px;
  bottom: 80px;
  animation: floatCard1 5s ease-in-out infinite;
}

.card2 {
  width: 200px;
  height: 120px;
  right: 80px;
  top: 90px;
  animation: floatCard2 6s ease-in-out infinite;
}

.card3 {
  width: 90px;
  height: 70px;
  right: 30px;
  bottom: 120px;
  animation: floatCard3 4.5s ease-in-out infinite;
}

.card4 {
  width: 100px;
  height: 70px;
  right: 140px;
  bottom: 60px;
  animation: floatCard4 5.5s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  33% {
    transform: translateY(-10px) rotate(1deg)
  }

  66% {
    transform: translateY(-5px) rotate(-0.5deg)
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  40% {
    transform: translateY(-12px) rotate(-1deg)
  }

  70% {
    transform: translateY(-6px) rotate(0.5deg)
  }
}

@keyframes floatCard3 {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-8px) scale(1.02)
  }
}

@keyframes floatCard4 {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  45% {
    transform: translateY(-9px) scale(1.03)
  }
}

/* ========================= REVEAL ANIMATION ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.card-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-animate.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-animate:nth-child(1) {
  transition-delay: 0.05s
}

.card-animate:nth-child(2) {
  transition-delay: 0.15s
}

.card-animate:nth-child(3) {
  transition-delay: 0.25s
}

.card-animate:nth-child(4) {
  transition-delay: 0.35s
}

/* ========================= ABOUT ========================= */
.about-section {
  padding: 110px 0 80px;
  text-align: center;
}

.about-headline {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-headline-orange {
  color: #c11f2f;
}

.about-text {
  font-size: 18px;
  color: #777;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 20px 24px;
}

.feature-icon {
  width: 38px;
  flex-shrink: 0;
}

.feature-label {
  text-align: left;
}

/* ========================= CULTURE SECTION ========================= */
.culture-section {
  padding: 70px 0 50px;
  text-align: center;
}

.culture-header {
  margin-bottom: 50px;
}

.culture-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.culture-card,
.community-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.culture-card img,
.community-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.culture-card:hover img,
.community-card:hover img {
  transform: scale(1.05);
}

.culture-card:hover,
.community-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.culture-card h4,
.community-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 14px 15px 6px;
  text-align: center;
  color: #2F2C30;
}

.culture-card p,
.community-card p {
  font-size: 13px;
  color: #777;
  padding: 0 15px 20px;
  text-align: center;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

/* ========================= COMMUNITY SECTION ========================= */
.community-section {
  padding: 70px 0 50px;
  text-align: center;
}

.community-header {
  margin-bottom: 50px;
}

/* ========================= OUR PHILOSOPHY ========================= */
.philosophy-section {
  background: #fff;
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.phil-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.phil-eyebrow-center {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 12px;
}

.phil-title-center {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2F2C30;
  margin-bottom: 10px;
  line-height: 1.2;
}

.phil-title-center span {
  color: #c11f2f;
}

.phil-sub-center {
  font-size: 15px;
  color: #8E8A90;
  font-style: italic;
}

.phil-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.phil-text-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phil-left-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #2F2C30;
  margin-bottom: 18px;
}

.phil-left-heading span {
  color: #c11f2f;
}

.phil-left-desc {
  font-size: 15px;
  color: #8E8A90;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.phil-left-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phil-left-perks li {
  font-size: 15px;
  font-weight: 500;
  color: #3B373E;
}

.phil-diagram-wrap {
  width: 100%;
  position: relative;
}

.phil-diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

@keyframes spin-dash {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.spin-circle {
  transform-origin: 240px 218px;
  animation: spin-dash 12s linear infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.12
  }

  50% {
    opacity: 0.28
  }
}

.center-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes arrow-pulse {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 0.8
  }
}

.arrow-line {
  animation: arrow-pulse 2.5s ease-in-out infinite;
}

@keyframes leaf-breathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.12)
  }
}

.leaf-icon {
  transform-origin: 240px 218px;
  animation: leaf-breathe 3s ease-in-out infinite;
}

/* ========================= BRAND SYSTEM + CONTACT FORM ========================= */
.brand-system {
  padding: 80px 0 100px;
}

.brand-system-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-system-left {
  text-align: left;
}

.brand-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 16px;
}

.about-botton {
  margin-bottom: 28px;
}

.brand-desc {
  font-size: 16px;
  color: #8E8A90;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.brand-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-perks li {
  font-size: 15px;
  font-weight: 500;
  color: #3B373E;
}

.contact-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 28px 28px;
  box-shadow: 0 20px 60px rgba(59, 55, 62, 0.10);
  border: 1px solid rgba(240, 108, 66, 0.08);
  transition: box-shadow 0.5s ease;
}

.contact-form-card.highlight {
  box-shadow: 0 0 0 3px rgba(240, 108, 66, 0.35), 0 24px 64px rgba(59, 55, 62, 0.14);
  animation: formPulse 0.6s ease;
}

@keyframes formPulse {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.012)
  }

  100% {
    transform: scale(1)
  }
}

.form-heading {
  font-size: 22px;
  font-weight: 700;
  color: #2F2C30;
  margin-bottom: 6px;
}

.form-heading span {
  color: #c11f2f;
}

.form-sub {
  font-size: 14px;
  color: #9E9A9F;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #3B373E;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #EDE8EC;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #2F2C30;
  background: #FAF8F9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: none;
  width: 100%;
}

.form-group textarea {
  border-radius: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c11f2f;
  box-shadow: 0 0 0 3px rgba(240, 108, 66, 0.10);
  background: #fff;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: #c11f2f;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(238, 93, 40, 0.35);
  background: #b60f20;
}

/* Required asterisk */
.req {
  color: #c11f2f;
}

/* Field error text */
.field-error {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1;
}

/* Input invalid state */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10) !important;
}

/* Input valid state */
.form-group input.valid,
.form-group textarea.valid {
  border-color: #48bb78 !important;
}

/* Error banner */
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: #c53030;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 36px 20px 20px;
  animation: fadeInUp 0.5s ease;
}

.form-success-icon {
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2F2C30;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.form-reset-btn {
  background: transparent;
  border: 2px solid #c11f2f;
  color: #c11f2f;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.form-reset-btn:hover {
  background: #c11f2f;
  color: #fff;
}

/* Loader spinner */
@keyframes spin-anim {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin-anim 0.8s linear infinite;
}

/* Disabled button */
.form-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reCAPTCHA note */
.recaptcha-note {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

.recaptcha-note a {
  color: #bbb;
  text-decoration: underline;
}

/* Hide reCAPTCHA badge (we show our own notice) */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-wrap {
  margin-bottom: 4px;
}

.recaptcha-wrap .g-recaptcha {
  transform: scale(0.92);
  transform-origin: left top;
}

/*
SUCCESS STORIES CSS — uncomment to enable
.success-section { padding: 80px 0 90px; background: #FAFAF9; }
.success-title { font-size: 36px; font-weight: 700; color: #2F2C30; margin-bottom: 10px; }
.success-title span { color: #c11f2f; }
.success-sub { font-size: 15px; color: #8E8A90; }
.success-logos { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-bottom: 50px; }
.success-logos span { font-size: 13px; font-weight: 600; color: #B0ACAA; letter-spacing: 0.08em; text-transform: uppercase; }
.success-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.success-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sc-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.sc-head strong { font-size: 14px; font-weight: 700; color: #2F2C30; }
.sc-divider { color: #ccc; margin: 0 6px; }
.success-card p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 18px; }
.sc-brand span { font-size: 13px; font-weight: 600; color: #2F2C30; }
*/


/* ========================= CUSTOM CURSOR ========================= */
body {
  cursor: none;
}

#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c11f2f;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.15s ease;
  mix-blend-mode: multiply;
}

.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: sparkle-out 0.7s ease-out forwards;
}

@keyframes sparkle-out {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0);
  }
}

@media (max-width: 800px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }
}

/* ── SVG ICON FLOAT ANIMATIONS ── */
@keyframes float-top {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

@keyframes float-left {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

@keyframes float-right {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.icon-top {
  animation: float-top 3.2s ease-in-out infinite;
  transform-origin: 240px 36px;
}

.icon-left {
  animation: float-left 3.8s ease-in-out infinite;
  transform-origin: 52px 382px;
}

.icon-right {
  animation: float-right 3.5s ease-in-out infinite;
  transform-origin: 428px 382px;
}

/* ========================= FOOTER ========================= */
.brandaid-footer {
  background: #1E1B20;
  color: #C8C3CC;
}

.footer-inner {
  text-align: center;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-copy {
  font-size: 13px;
  color: #5E5A62;
}

[id] {
  scroll-margin-top: 90px;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {

  .culture-grid,
  .community-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .culture-card img,
  .community-card img {
    height: 140px;
  }
}

@media (max-width: 992px) {
  .hero-title-1 {
    font-size: 38px;
  }

  .hero-title-row {
    display: block;
  }

  .hero-title-plain,
  .hero-title-orange {
    font-size: 32px;
  }

  .about-headline {
    font-size: 32px;
  }

  .section-title,
  .brand-system-left h2 {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section .row {
    flex-direction: column;
  }

  .hero-left {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-wrapper {
    width: 380px;
    height: 320px;
    margin: 0 auto;
  }

  .card1 {
    width: 155px;
    height: 104px;
    top: 60px;
    left: 6px
  }

  .card2 {
    width: 165px;
    height: 110px;
    top: 36px;
    right: 8px
  }

  .card3 {
    width: 126px;
    height: 84px;
    bottom: 40px;
    left: 36px
  }

  .card4 {
    width: 142px;
    height: 94px;
    bottom: 24px;
    right: 24px
  }

  .overlay-brandaid-logo {
    width: 90px !important;
    top: 8px;
  }

  .brand-system-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-system-left {
    text-align: center;
  }

  .brand-desc {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .brand-perks {
    align-items: center;
  }

  .phil-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phil-left-heading {
    font-size: 28px;
  }

  .phil-title-center {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .nav-right,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }

  a.nav-logo img {
    height: 48px;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .culture-card img,
  .community-card img {
    height: 160px;
  }

  .philosophy-section {
    padding: 60px 20px 70px;
  }

  .phil-title-center,
  .section-title {
    font-size: 28px;
  }

  .section-sub {
    font-size: 15px;
  }

  .phil-left-heading {
    font-size: 24px;
  }

  .phil-text-left {
    text-align: center;
  }

  .phil-left-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .phil-left-perks {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .nav-inner {
    max-width: none;
    height: auto;
  }

  a.nav-logo img {
    height: 44px;
  }

  .hero-title-1 {
    font-size: 30px;
  }

  .hero-title-plain,
  .hero-title-orange {
    font-size: 28px;
  }

  .about-headline {
    font-size: 26px;
  }

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

  .section-title,
  .brand-system-left h2 {
    font-size: 24px;
  }

  .section-sub {
    font-size: 14px;
  }

  .hero-section {
    padding: 36px 0 20px;
  }

  .about-section {
    padding: 64px 0 48px;
  }

  .culture-section,
  .community-section,
  .brand-system {
    padding: 40px 0;
  }

  .hero-left {
    text-align: center;
    padding: 0;
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-wrapper {
    width: 300px;
    height: 260px;
    margin: 32px auto 0;
  }

  .overlay-brandaid-logo {
    width: 76px !important;
    top: -30px;
    left: 90px;
  }

  .card1 {
    width: 122px;
    height: 82px;
    top: 46px;
    left: 4px
  }

  .card2 {
    width: 130px;
    height: 86px;
    top: 28px;
    right: 4px
  }

  .card3 {
    width: 100px;
    height: 66px;
    bottom: 30px;
    left: 26px
  }

  .card4 {
    width: 112px;
    height: 74px;
    bottom: 18px;
    right: 18px
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }

  .feature-item {
    padding: 14px 16px;
    gap: 14px;
    border-bottom: 1px solid rgba(240, 108, 66, 0.08);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-icon {
    width: 32px;
  }

  .feature-label {
    font-size: 15px;
    font-weight: 500;
  }

  .culture-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .culture-card img,
  .community-card img {
    height: 200px;
    object-position: center;
  }

  .culture-card h4,
  .community-card h4 {
    font-size: 16px;
    margin: 14px 16px 6px;
    text-align: left;
  }

  .culture-card p,
  .community-card p {
    font-size: 13px;
    padding: 0 16px 18px;
    text-align: left;
  }

  .philosophy-section {
    padding: 50px 16px 60px;
  }

  .phil-title-center {
    font-size: 24px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-heading {
    font-size: 19px;
  }
}

@media (max-width: 400px) {
  .hero-img-wrapper {
    width: 260px;
    height: 220px;
  }

  .card1 {
    width: 104px;
    height: 70px;
    top: 38px;
    left: 2px
  }

  .card2 {
    width: 112px;
    height: 74px;
    top: 22px;
    right: 2px
  }

  .card3 {
    width: 86px;
    height: 56px;
    bottom: 22px;
    left: 16px
  }

  .card4 {
    width: 96px;
    height: 64px;
    bottom: 12px;
    right: 12px
  }

  .culture-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .culture-card img,
  .community-card img {
    height: 185px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-1 {
    font-size: 26px;
  }

  .hero-title-orange {
    font-size: 24px;
  }

  .about-headline {
    font-size: 22px;
  }

  .section-title,
  .phil-title-center {
    font-size: 20px;
  }
}