/* ── ACTION MODAL ── */
.act-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s;
}

.act-overlay.open {
  display: block;
  opacity: 1;
}

.act-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 310;
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.act-modal.open {
  transform: translateY(0);
}

.act-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 8px;
}

.act-head h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--td);
}

.act-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--tm);
  transition: all .25s;
}

.act-close:hover {
  background: var(--pink-p);
  color: var(--pink);
}

.act-sub {
  padding: 0 24px 16px;
  font-size: 13px;
  color: var(--tm);
}

.act-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px 28px;
}

.act-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--bg);
  border-radius: 16px;
  text-decoration: none;
  transition: all .3s;
  border: 2px solid transparent;
}

.act-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 157, .15);
}

.act-icon {
  font-size: 26px;
  line-height: 1;
}

.act-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--td);
  text-align: center;
  line-height: 1.3;
}

.act-desc {
  font-size: 10px;
  color: var(--tm);
  text-align: center;
  line-height: 1.3;
}

@media(max-width:400px) {
  .act-grid {
    grid-template-columns: 1fr;
  }

  .act-card {
    flex-direction: row;
    padding: 14px 16px;
  }

  .act-icon {
    font-size: 24px;
  }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8C42 25%, #FFD23F 50%, #4ECDC4 75%, #45B7D1 100%);
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-blob1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  bottom: -80px;
  left: -60px;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-blob3 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 210, 63, .15);
  top: 30%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}

.hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-l {
  animation: fadeUp .7s ease both;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}

.htitle {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.htitle .hl {
  position: relative;
  display: inline-block;
}

.htitle .hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 14px;
  background: rgba(255, 210, 63, .5);
  border-radius: 8px;
  z-index: -1;
}

.hsub {
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
  line-height: 2.1;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 500;
}

.hbtns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-m {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pink);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .06em;
  transition: all .25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.btn-m:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .85);
  color: #1A1A2E;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .06em;
  transition: all .25s;
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.btn-s:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.hstats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, .85);
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transition: transform .3s;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.snum {
  font-size: 26px;
  font-weight: 900;
  color: #1A1A2E;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.slab {
  font-size: 10px;
  color: #4A4A68;
  letter-spacing: .06em;
  font-weight: 600;
}

.nav-btn {
  background: linear-gradient(135deg, #FF6B9D, #FF8C42);
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 30px;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0;
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(255, 107, 157, .3);
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 157, .4);
}

/* Hero right */
.hero-r {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounceIn .9s ease both .2s;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hcard {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s;
  animation: slideRight .6s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.hcard:nth-child(2) {
  animation-delay: .15s;
}

.hcard:nth-child(3) {
  animation-delay: .3s;
}

.hcard:nth-child(4) {
  animation-delay: .45s;
}

.hcard:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.hcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.hcard-icon.c1 {
  background: rgba(255, 107, 157, .25);
}

.hcard-icon.c2 {
  background: rgba(255, 210, 63, .25);
}

.hcard-icon.c3 {
  background: rgba(78, 205, 196, .25);
}

.hcard-icon.c4 {
  background: rgba(167, 139, 250, .25);
}

.hcard-text {
  color: #1A1A2E;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.hcard-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #4A4A68;
  opacity: 1;
  margin-top: 2px;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 48px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.slabel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--pink);
  margin-bottom: 14px;
  text-transform: uppercase;
  background: var(--pink-p);
  padding: 6px 18px;
  border-radius: 50px;
}

.stitle {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--td);
  margin-bottom: 16px;
}

.stitle em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(255, 210, 63, .4) 60%);
}

.sdesc {
  font-size: 14px;
  color: var(--tm);
  max-width: 520px;
  line-height: 2.1;
  margin-bottom: 56px;
  font-weight: 400;
}

/* ── MESSAGE ── */
#message {
  background: var(--wh);
}

.msg-g {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.msg-v {
  background: linear-gradient(135deg, var(--pink-p), var(--orange-p), var(--yellow-p));
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  border: 2px solid rgba(255, 107, 157, .12);
  position: relative;
  overflow: hidden;
}

.msg-emoji {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  animation: wobble 3s ease-in-out infinite;
}

.msg-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--td);
  line-height: 1.9;
}

.msg-c p {
  font-size: 14px;
  color: var(--tm);
  line-height: 2.2;
  margin-bottom: 18px;
  font-weight: 400;
}

/* ── SALARY ── */
#salary {
  background: linear-gradient(135deg, var(--yellow-p), var(--orange-p));
}

.sal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sal-card {
  background: var(--wh);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.sal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
}

.sal-card.t1::before {
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.sal-card.t2::before {
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.sal-card.t3::before {
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.sal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
  border-color: rgba(255, 107, 157, .15);
}

.sal-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.sal-type {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 12px;
  padding: 4px 16px;
  border-radius: 50px;
  display: inline-block;
}

.t1 .sal-type {
  background: var(--pink-p);
  color: var(--pink);
}

.t2 .sal-type {
  background: var(--mint-p);
  color: #2BA89F;
}

.t3 .sal-type {
  background: var(--purple-p);
  color: var(--purple);
}

.sal-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--td);
  line-height: 1.2;
  margin-bottom: 4px;
}

.sal-amount small {
  font-size: 14px;
  font-weight: 700;
  color: var(--tm);
}

.sal-note {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.8;
  margin-top: 8px;
}

.sal-sub {
  font-size: 12px;
  color: var(--tm);
  text-align: center;
  font-weight: 500;
}

/* Benefits */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.ben-card {
  background: var(--wh);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid transparent;
  transition: all .3s;
}

.ben-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
  border-color: rgba(78, 205, 196, .2);
}

.ben-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ben-icon.b1 {
  background: var(--mint-p);
}

.ben-icon.b2 {
  background: var(--orange-p);
}

.ben-icon.b3 {
  background: var(--yellow-p);
}

.ben-icon.b4 {
  background: var(--blue-p);
}

.ben-icon.b5 {
  background: var(--purple-p);
}

.ben-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--td);
  line-height: 1.5;
}

.ben-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--tm);
  margin-top: 2px;
}

/* ── SHIFTS ── */
#shifts {
  background: var(--wh);
}

.sw {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.shcard {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 28px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.shcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  transition: opacity .3s;
  opacity: 0;
}

.shcard:nth-child(1)::before {
  background: linear-gradient(90deg, #6C5CE7, #A78BFA);
}

.shcard:nth-child(2)::before {
  background: linear-gradient(90deg, #FF6B9D, #FF8FB8);
}

.shcard:nth-child(3)::before {
  background: linear-gradient(90deg, #FFD23F, #FFAB6B);
}

.shcard:nth-child(4)::before {
  background: linear-gradient(90deg, #4ECDC4, #45B7D1);
}

.shcard:nth-child(5)::before {
  background: linear-gradient(90deg, #45B7D1, #6C5CE7);
}

.shcard:hover::before {
  opacity: 1;
}

.shcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  border-color: rgba(255, 107, 157, .12);
  background: var(--wh);
}

.semi {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.shn {
  font-size: 17px;
  font-weight: 800;
  color: var(--td);
  margin-bottom: 6px;
}

.sht {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-p);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.shtk {
  list-style: none;
  font-size: 12px;
  color: var(--tm);
  line-height: 2;
}

.shtk li {
  padding-left: 18px;
  position: relative;
}

.shtk li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

/* ── TIMELINE ── */
#workflow {
  background: var(--bg);
}

.tbl {
  margin-bottom: 56px;
}

.th {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .04em;
}

.tp.mo {
  background: var(--orange-p);
  color: #CC6F00;
  border: 2px solid rgba(255, 140, 66, .2);
}

.tp.fo {
  background: var(--mint-p);
  color: #2BA89F;
  border: 2px solid rgba(78, 205, 196, .2);
}

.tp.af {
  background: var(--pink-p);
  color: var(--pink);
  border: 2px solid rgba(255, 107, 157, .2);
}

.tp.ev {
  background: var(--purple-p);
  color: #7C5CDB;
  border: 2px solid rgba(167, 139, 250, .2);
}

.tline {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 107, 157, .2), transparent);
  border-radius: 2px;
}

.tcs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding-left: 20px;
}

.tc {
  border-radius: 20px;
  padding: 20px 22px;
  border: 2px solid;
  transition: all .25s;
}

.tc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}

.tc.mo {
  background: var(--orange-p);
  border-color: rgba(255, 140, 66, .12);
}

.tc.fo {
  background: var(--mint-p);
  border-color: rgba(78, 205, 196, .12);
}

.tc.af {
  background: var(--pink-p);
  border-color: rgba(255, 107, 157, .12);
}

.tc.ev {
  background: var(--purple-p);
  border-color: rgba(167, 139, 250, .12);
}

.ttime {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mo .ttime {
  color: #CC6F00;
}

.fo .ttime {
  color: #2BA89F;
}

.af .ttime {
  color: var(--pink);
}

.ev .ttime {
  color: #7C5CDB;
}

.tttl {
  font-size: 14px;
  font-weight: 700;
  color: var(--td);
  margin-bottom: 6px;
  line-height: 1.4;
}

.tdet {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.9;
  font-weight: 400;
}

/* ── FEATURES ── */
#features {
  background: var(--wh);
}

.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fc {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 28px;
  padding: 40px 28px;
  transition: all .3s;
  text-align: center;
}

.fc:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .06);
  border-color: rgba(255, 107, 157, .12);
  background: var(--wh);
}

.fiw {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 32px;
  transition: transform .3s;
}

.fc:hover .fiw {
  transform: scale(1.1) rotate(-5deg);
}

.fiw.g {
  background: linear-gradient(135deg, var(--mint-p), var(--blue-p));
}

.fiw.y {
  background: linear-gradient(135deg, var(--yellow-p), var(--orange-p));
}

.fiw.o {
  background: linear-gradient(135deg, var(--pink-p), var(--purple-p));
}

.ftitle {
  font-size: 17px;
  font-weight: 800;
  color: var(--td);
  margin-bottom: 12px;
}

.ftext {
  font-size: 13px;
  color: var(--tm);
  line-height: 2;
  font-weight: 400;
}

/* ── REQUIREMENTS ── */
#requirements {
  background: var(--bg);
}

.rg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.rb {
  background: var(--wh);
  border: 2px solid rgba(78, 205, 196, .12);
  border-radius: 28px;
  padding: 40px 32px;
}

.rb.y {
  border-color: rgba(255, 140, 66, .12);
}

.rbh {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--td);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--bg);
}

.rico {
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rb:not(.y) .rico {
  background: var(--mint-p);
}

.rb.y .rico {
  background: var(--orange-p);
}

.rl {
  list-style: none;
  font-size: 14px;
  color: var(--tm);
}

.rl li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--bg);
}

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

.rl li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

/* ── CTA ── */
#cta {
  position: relative;
  overflow: hidden;
  padding: 110px 48px;
  text-align: center;
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8C42 30%, #FFD23F 60%, #4ECDC4 100%);
}

.cta-blob1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  top: -100px;
  right: -60px;
  animation: float 7s ease-in-out infinite;
}

.cta-blob2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  bottom: -80px;
  left: -60px;
  animation: float 9s ease-in-out infinite reverse;
}

.cinner {
  position: relative;
  z-index: 2;
}

.ctitle {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.ctitle span {
  background: rgba(255, 255, 255, .25);
  padding: 2px 12px;
  border-radius: 8px;
}

.csub {
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 44px;
  line-height: 2;
  font-weight: 500;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--pink);
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .25s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
}

.cta-phone:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .18);
}

.cta-form {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .25s;
  border: 3px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.cta-form:hover {
  background: rgba(255, 255, 255, .3);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .15);
  border-color: rgba(255, 255, 255, .8);
}

.cta-phone-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--tm);
  letter-spacing: .08em;
}

.cta-form-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  margin-top: 4px;
}

.cta-address {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  line-height: 2;
}

.cnote {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
}

/* ── BLOG ── */
#blog {
  background: var(--wh);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 28px 24px;
  transition: all .3s;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  border-color: rgba(255, 107, 157, .12);
  background: var(--wh);
}

.blog-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--td);
  line-height: 1.5;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 12px;
  color: var(--tl);
  font-weight: 500;
}

.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 800;
  color: var(--pink);
  text-decoration: none;
  transition: color .25s;
}

.blog-more:hover {
  color: var(--orange);
}

/* ── FOOTER ── */
footer {
  background: #2D3436;
  color: rgba(255, 255, 255, .6);
  padding: 56px 48px;
  text-align: center;
}

.flogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.flogo-icon {
  height: 32px;
  flex-shrink: 0;
}

.flogo-icon img {
  height: 100%;
  width: auto;
  display: block;
}

.fname {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .04em;
}

.finfo {
  font-size: 12px;
  line-height: 2.2;
  font-weight: 400;
}

.finfo a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.finfo a:hover {
  color: var(--pink-l);
}

.fsocial {
  margin: 16px 0 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.fsocial a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .2);
  transition: all .3s;
}

.fsocial a:hover {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 42, 123, .3);
}

.fsocial svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── WAVE DIVIDERS ── */
.wave-div {
  display: block;
  width: 100%;
  margin: -2px 0;
  height: 50px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.9);
  }

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

  to {
    opacity: 1;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wobble {

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

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

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

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

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

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

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  header {
    padding: 12px 20px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  section {
    padding: 72px 24px;
  }

  .hero-in {
    grid-template-columns: 1fr;
  }

  .hero-r {
    display: none;
  }

  #hero {
    padding: 100px 28px 60px;
  }

  .msg-g {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

@media(max-width:560px) {
  .fg {
    grid-template-columns: 1fr;
  }

  .hstats {
    gap: 12px;
  }

  .stat {
    padding: 14px 18px;
  }

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

/* ── SECTION INTERNAL LINK BANNERS ── */
.sec-link{display:flex;align-items:center;gap:16px;background:linear-gradient(135deg,#FFF0F5,#FFF3E8);border:2.5px solid rgba(255,107,157,.25);border-radius:50px;padding:18px 32px;text-decoration:none;transition:all .3s;margin:40px auto 0;max-width:560px;box-shadow:0 4px 16px rgba(255,107,157,.1);}
.sec-link:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(255,107,157,.2);border-color:rgba(255,107,157,.4);background:linear-gradient(135deg,#FFE8F0,#FFE8D8);}
.sec-link-icon{width:52px;height:52px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0;}
.sec-link-icon.pink{background:linear-gradient(135deg,var(--pink-p),var(--orange-p));}
.sec-link-icon.mint{background:linear-gradient(135deg,var(--mint-p),var(--blue-p));}
.sec-link-icon.purple{background:linear-gradient(135deg,var(--purple-p),var(--pink-p));}
.sec-link-body{flex:1;}
.sec-link-title{font-size:14px;font-weight:800;color:var(--td);line-height:1.4;margin-bottom:2px;}
.sec-link-desc{font-size:11px;color:var(--tm);font-weight:500;line-height:1.5;}
.sec-link-arrow{font-size:18px;color:var(--pink);font-weight:900;flex-shrink:0;transition:transform .3s;}
.sec-link:hover .sec-link-arrow{transform:translateX(4px);}
@media(max-width:600px){.sec-link{padding:16px 20px;gap:12px;}.sec-link-icon{width:44px;height:44px;font-size:20px;}.sec-link-title{font-size:13px;}}
