.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #e7c873 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION (dark) ===== */
.aone-well-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #143628 0%, #0f2a1f 55%, #102619 100%); padding: 160px 0 110px; font-family: 'Inter', sans-serif; color: #fff; }
.aone-well-hero i { line-height: 1; }
.wh-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.wh-orb--1 { width: 440px; height: 440px; top: -16%; right: 2%; background: radial-gradient(circle, rgba(212,175,55,0.20) 0%, transparent 70%); animation: whFloat 18s ease-in-out infinite; }
.wh-orb--2 { width: 360px; height: 360px; bottom: -20%; left: -6%; background: radial-gradient(circle, rgba(95,160,130,0.28) 0%, transparent 70%); animation: whFloat 23s ease-in-out infinite reverse; }
@keyframes whFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(22px,-26px); } }

.wh-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

/* ===== LEFT ===== */
.wh-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 8px 17px; border-radius: 50px; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.4); margin-bottom: 24px; }
.wh-dot { width: 9px; height: 9px; border-radius: 50%; background: #D4AF37; box-shadow: 0 0 0 0 rgba(212,175,55,0.6); animation: whPulse 2s infinite; }
@keyframes whPulse { 0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); } 70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); } 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); } }
.wh-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.5rem, 5vw, 3.7rem); line-height: 1.08; margin: 0 0 18px; color: #fff; }
.wh-title .aone-gold-italic { font-style: italic; font-weight: 400; }
.wh-lead { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 0 32px; }

.wh-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-wh { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; background: #D4AF37; color: #143628; padding: 17px 34px; border-radius: 6px; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 16px 38px rgba(212,175,55,0.28); transition: 0.3s ease; }
.btn-wh i { font-size: 16px; transition: transform 0.3s ease; }
.btn-wh:hover { background: #fff; transform: translateY(-3px); }
.btn-wh:hover i { transform: translateX(5px); }
.btn-wh-ghost { display: inline-flex; align-items: center; gap: 9px; padding: 16px 28px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; transition: 0.3s ease; }
.btn-wh-ghost i { font-size: 18px; color: #D4AF37; }
.btn-wh-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(212,175,55,0.5); color: #fff; }

.wh-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.wh-checks li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.75); }
.wh-checks i { color: #5fcf9b; font-size: 16px; }

/* ===== RIGHT ===== */
.wh-figure { position: relative; }
.wh-frame { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; border: 1px solid rgba(212,175,55,0.25); box-shadow: 0 36px 70px rgba(0,0,0,0.4); background: #0f2a1f; }
.wh-frame img { width: 100%; height: auto; display: block; }
.wh-tag { position: absolute; z-index: 2; left: -22px; bottom: 34px; display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 16px; padding: 14px 20px; box-shadow: 0 20px 44px rgba(0,0,0,0.28); }
.wh-tag-ico { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: #f0f7f4; color: #143628; font-size: 22px; }
.wh-tag-tx { display: flex; flex-direction: column; line-height: 1.3; }
.wh-tag-tx strong { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #143628; }
.wh-tag-tx span { font-size: 11.5px; color: #7c8a82; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-well-hero { padding: 130px 0 80px; }
  .wh-grid { grid-template-columns: 1fr; gap: 56px; }
  .wh-tag { left: 14px; }
}
@media (max-width: 575px) {
  .wh-actions { flex-direction: column; align-items: stretch; }
  .btn-wh, .btn-wh-ghost { width: 100%; justify-content: center; }
  .wh-tag { left: 50%; transform: translateX(-50%); bottom: -22px; white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine, .wh-orb, .wh-dot { animation: none; }
  .btn-wh, .btn-wh i, .btn-wh-ghost { transition: none; }
}
.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* dialog sizing */
.aone-wellmodal .modal-dialog { max-width: 760px; width: 100%; margin: 1.2rem auto; }

/* content = flex column so header pins and body scrolls */
.wm-content { display: flex; flex-direction: column; max-height: calc(100dvh - 2.4rem); border: none; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 40px 90px rgba(0,0,0,0.35); font-family: 'Inter', sans-serif; }

/* header (pinned) */
.wm-header { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; background: linear-gradient(160deg, #143628 0%, #0f2a1f 100%); color: #fff; }
.wm-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.wm-eyebrow i { font-size: 15px; color: #D4AF37; }
.wm-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin: 0; color: #fff; }
.wm-close { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 16px; cursor: pointer; transition: 0.25s ease; }
.wm-close:hover { background: rgba(212,175,55,0.9); color: #143628; }

/* trust strip (pinned) */
.wm-trust { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 13px 26px; background: #f0f7f4; border-bottom: 1px solid #e0eadd; }
.wm-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #4f5f57; }
.wm-trust i { font-size: 16px; color: #143628; }

/* body (scrolls) */
.wm-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; background: #fff; }
.wm-iframe { display: block; width: 100%; min-height: 620px; border: none; }

/* mobile = full screen */
@media (max-width: 575px) {
  .aone-wellmodal .modal-dialog { max-width: 100%; margin: 0; }
  .wm-content { max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .wm-header { padding: 18px 20px; }
  .wm-title { font-size: 19px; }
  .wm-trust { padding: 11px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .wm-close { transition: none; }
}/* ===== MARQUEE ===== */
.aone-marquee { overflow: hidden; background: linear-gradient(160deg, #143628 0%, #0f2a1f 100%); padding: 20px 0; font-family: 'Inter', sans-serif; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mq-track { display: flex; align-items: center; width: max-content; animation: mqScroll 32s linear infinite; }
@keyframes mqScroll { to { transform: translateX(-50%); } }
.aone-marquee:hover .mq-track { animation-play-state: paused; }

.mq-item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; font-style: italic; color: #fff; padding: 0 38px; }
.mq-item i { font-size: 24px; color: #D4AF37; font-style: normal; line-height: 1; }
.mq-sep { width: 7px; height: 7px; border-radius: 50%; background: rgba(212,175,55,0.6); flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 575px) {
  .aone-marquee { padding: 16px 0; }
  .mq-item { font-size: 18px; padding: 0 26px; gap: 9px; }
  .mq-item i { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; justify-content: center; flex-wrap: wrap; gap: 16px 8px; transform: none; }
}

.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wabout { background: #ffffff; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; overflow: hidden; }
.aone-wabout i { line-height: 1; }
.wa-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

/* ===== LEFT FIGURE ===== */
.wa-figure { position: relative; padding: 18px; }
.wa-orb { position: absolute; top: -20px; left: -20px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.26) 0%, transparent 70%); filter: blur(46px); z-index: 0; animation: waFloat 16s ease-in-out infinite; }
@keyframes waFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(16px,-20px); } }
.wa-frame { position: relative; z-index: 2; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(20,54,40,0.18); background: #f0f7f4; }
.wa-frame img { width: 100%; height: auto; display: block; }
.wa-gold-edge { position: absolute; z-index: 1; right: -2px; bottom: -2px; width: 62%; height: 70%; border: 2px solid #D4AF37; border-radius: 24px; pointer-events: none; }

/* ===== RIGHT CONTENT ===== */
.wa-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 22px; }
.wa-eyebrow i { font-size: 15px; color: #D4AF37; }
.wa-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0 0 16px; color: #143628; }
.wa-lead { font-size: 16.5px; line-height: 1.75; color: #586a61; max-width: 540px; margin: 0 0 30px; }

.wa-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.wa-feature { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 600; color: #143628; }
.wa-feat-ico { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; font-size: 22px; transition: 0.35s ease; }
.wa-feature:hover .wa-feat-ico { background: #143628; border-color: #143628; color: #D4AF37; }

.btn-wa { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; background: #143628; color: #fff; padding: 17px 32px; border-radius: 6px; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 14px 30px rgba(20,54,40,0.2); transition: 0.3s ease; }
.btn-wa i { font-size: 16px; transition: transform 0.3s ease; }
.btn-wa:hover { background: #D4AF37; color: #143628; transform: translateY(-3px); }
.btn-wa:hover i { transform: translateX(5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wabout { padding: 70px 0; }
  .wa-grid { grid-template-columns: 1fr; gap: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine, .wa-orb { animation: none; }
  .wa-feat-ico, .btn-wa, .btn-wa i { transition: none; }
}.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wserv { background: #fcfdfc; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-wserv i { line-height: 1; }

/* head */
.ws-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.ws-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.ws-eyebrow i { font-size: 15px; color: #D4AF37; }
.ws-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; color: #143628; }
.ws-head-right p { font-size: 15.5px; line-height: 1.7; color: #586a61; margin: 0; }

/* grid */
.ws-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ws-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eef0f2; border-radius: 20px; padding: 32px 28px; box-shadow: 0 12px 34px rgba(20,54,40,0.05); transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.35s ease, border-color 0.35s ease; }
.ws-card:hover { transform: translateY(-8px); border-color: #D4AF37; box-shadow: 0 26px 50px rgba(20,54,40,0.12); }
.ws-ico { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; font-size: 29px; margin-bottom: 20px; transition: 0.35s ease; }
.ws-card:hover .ws-ico { background: #143628; border-color: #143628; color: #D4AF37; }
.ws-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #143628; margin: 0 0 10px; }
.ws-card p { font-size: 14px; color: #586a61; line-height: 1.65; margin: 0 0 20px; flex-grow: 1; }
.ws-link { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: none; border: none; padding: 0; cursor: pointer; font-size: 13px; font-weight: 800; letter-spacing: 0.3px; text-transform: uppercase; color: #143628; transition: gap 0.3s ease; }
.ws-link i { font-size: 13px; color: #D4AF37; transition: transform 0.3s ease; }
.ws-link:hover i { transform: translateX(4px); }

/* active (featured) card */
.ws-card--active { background: linear-gradient(160deg, #143628 0%, #0f2a1f 100%); border-color: rgba(212,175,55,0.3); }
.ws-card--active .ws-ico { background: rgba(212,175,55,0.16); border-color: rgba(212,175,55,0.4); color: #D4AF37; }
.ws-card--active h4 { color: #fff; }
.ws-card--active p { color: rgba(255,255,255,0.78); }
.ws-card--active .ws-link { color: #fff; }
.ws-card--active:hover .ws-ico { background: #D4AF37; color: #143628; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wserv { padding: 70px 0; }
  .ws-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .ws-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .ws-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .ws-card, .ws-ico, .ws-link i { transition: none; }
}
.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wwhy { background: #ffffff; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-wwhy i { line-height: 1; }
.ww-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.ww-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.ww-eyebrow i { font-size: 15px; color: #D4AF37; }
.ww-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; color: #143628; }

/* ===== BENTO ===== */
.ww-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.ww-col { display: flex; flex-direction: column; gap: 22px; }

.ww-cell--img { border-radius: 24px; overflow: hidden; box-shadow: 0 15px 40px rgba(20,54,40,0.1); background: #f0f7f4; min-height: 460px; }
.ww-cell--img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ww-card { flex: 1; border-radius: 22px; padding: 30px 28px; display: flex; flex-direction: column; transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.35s ease; }
.ww-card:hover { transform: translateY(-5px); }
.ww-ico { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; font-size: 26px; margin-bottom: 16px; }
.ww-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin: 0 0 9px; }
.ww-card p { font-size: 14px; line-height: 1.65; margin: 0; }

/* green card */
.ww-card--green { background: linear-gradient(160deg, #143628 0%, #0f2a1f 100%); box-shadow: 0 16px 40px rgba(20,54,40,0.18); }
.ww-card--green .ww-ico { background: rgba(212,175,55,0.16); color: #D4AF37; }
.ww-card--green h3 { color: #fff; }
.ww-card--green p { color: rgba(255,255,255,0.75); }
.ww-card--green:hover { box-shadow: 0 26px 54px rgba(20,54,40,0.26); }

/* white card */
.ww-card--white { background: #fcfdfc; border: 1px solid #eef0f2; box-shadow: 0 12px 30px rgba(20,54,40,0.05); }
.ww-card--white .ww-ico { background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; }
.ww-card--white h3 { color: #143628; }
.ww-card--white p { color: #586a61; }

/* gold card */
.ww-card--gold { background: linear-gradient(160deg, #D4AF37 0%, #c8a13e 100%); box-shadow: 0 16px 40px rgba(212,175,55,0.28); }
.ww-card--gold .ww-ico { background: rgba(20,54,40,0.14); color: #143628; }
.ww-card--gold h3 { color: #143628; }
.ww-card--gold p { color: rgba(20,54,40,0.82); }

/* photo cell */
.ww-cell--photo { position: relative; flex: 1; min-height: 230px; border-radius: 22px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 26px; box-shadow: 0 16px 40px rgba(20,54,40,0.12); }
.ww-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,42,31,0.1) 0%, rgba(15,42,31,0.78) 100%); }
.ww-cell--photo h3 { position: relative; z-index: 1; font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: #fff; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wwhy { padding: 70px 0; }
  .ww-bento { grid-template-columns: 1fr 1fr; }
  .ww-cell--img { min-height: 320px; }
}
@media (max-width: 600px) {
  .ww-bento { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .ww-card { transition: none; }
}.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-weff { background: #fcfdfc; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-weff i { line-height: 1; }
.we-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.we-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.we-eyebrow i { font-size: 15px; color: #D4AF37; }
.we-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; color: #143628; }

/* ===== GRID ===== */
.we-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.we-card { background: #fff; border: 1px solid #eef0f2; border-radius: 20px; padding: 32px 28px; box-shadow: 0 12px 34px rgba(20,54,40,0.05); transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.35s ease, border-color 0.35s ease; }
.we-card:hover { transform: translateY(-6px); border-color: #D4AF37; box-shadow: 0 24px 48px rgba(20,54,40,0.12); }
.we-ico { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; font-size: 28px; margin-bottom: 18px; transition: 0.35s ease; }
.we-card:hover .we-ico { background: #143628; border-color: #143628; color: #D4AF37; }
.we-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: #143628; margin: 0 0 9px; }
.we-card p { font-size: 14px; color: #586a61; line-height: 1.65; margin: 0; }

.we-disclaimer { text-align: center; font-size: 11.5px; color: #9aa8a0; font-style: italic; line-height: 1.6; max-width: 680px; margin: 30px auto 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-weff { padding: 70px 0; }
  .we-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .we-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .we-card, .we-ico { transition: none; }
}
.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wscope { background: #ffffff; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-wscope i { line-height: 1; }
.sc-head { max-width: 680px; margin: 0 0 40px; }
.sc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.sc-eyebrow i { font-size: 15px; color: #D4AF37; }
.sc-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; color: #143628; }

/* ===== BENTO ===== */
.sc-bento { display: flex; flex-direction: column; gap: 22px; }
.sc-row { display: grid; gap: 22px; }
.sc-row--2 { grid-template-columns: 1fr 1fr; }
.sc-row--3 { grid-template-columns: repeat(3, 1fr); }

.sc-card { background: #fcfdfc; border: 1px solid #eef0f2; border-radius: 20px; padding: 30px 28px; box-shadow: 0 12px 34px rgba(20,54,40,0.05); transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.35s ease, border-color 0.35s ease; }
.sc-card:hover { transform: translateY(-6px); border-color: #D4AF37; box-shadow: 0 24px 48px rgba(20,54,40,0.12); }
.sc-card--lg { padding: 38px 34px; background: #fff; }
.sc-ico { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; font-size: 28px; margin-bottom: 18px; transition: 0.35s ease; }
.sc-card:hover .sc-ico { background: #143628; border-color: #143628; color: #D4AF37; }
.sc-card--lg .sc-ico { width: 64px; height: 64px; font-size: 31px; }
.sc-card h3 { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: #143628; margin: 0 0 10px; }
.sc-card h4 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: #143628; margin: 0 0 8px; }
.sc-card p { font-size: 14px; color: #586a61; line-height: 1.65; margin: 0; }
.sc-card--lg p { font-size: 15px; }

/* crisis note */
.sc-note { margin: 34px 0 0; background: #f0f7f4; border: 1px solid #e0eadd; border-left: 3px solid #D4AF37; border-radius: 12px; padding: 16px 20px; font-size: 13px; color: #4f5f57; line-height: 1.6; }
.sc-note strong { color: #143628; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wscope { padding: 70px 0; }
  .sc-row--3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sc-row--2 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .sc-card, .sc-ico { transition: none; }
}.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wpath { background: #fcfdfc; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-wpath i { line-height: 1; }
.wp-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.wp-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.wp-eyebrow i { font-size: 15px; color: #D4AF37; }
.wp-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; color: #143628; }

/* ===== TIMELINE ===== */
.wp-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.wp-line { position: absolute; top: 130px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, rgba(212,175,55,0.55) 0 10px, transparent 10px 20px); z-index: 0; }

.wp-step { position: relative; z-index: 1; text-align: center; }
.wp-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #143628; color: #D4AF37; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 22px; box-shadow: 0 10px 24px rgba(20,54,40,0.22); border: 3px solid #fcfdfc; }
.wp-frame { width: 150px; height: 150px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 5px solid #fff; box-shadow: 0 18px 40px rgba(20,54,40,0.14); background: #f0f7f4; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.wp-step:hover .wp-frame { transform: translateY(-6px); box-shadow: 0 26px 52px rgba(20,54,40,0.22); }
.wp-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-step h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #143628; margin: 0 0 9px; }
.wp-step p { font-size: 14px; color: #586a61; line-height: 1.6; margin: 0; max-width: 230px; margin-left: auto; margin-right: auto; }

/* ===== CTA ===== */
.wp-cta { text-align: center; margin-top: 54px; }
.btn-wp { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; background: #143628; color: #fff; padding: 17px 34px; border-radius: 6px; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 14px 30px rgba(20,54,40,0.2); transition: 0.3s ease; }
.btn-wp i { font-size: 16px; transition: transform 0.3s ease; }
.btn-wp:hover { background: #D4AF37; color: #143628; transform: translateY(-3px); }
.btn-wp:hover i { transform: translateX(5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wpath { padding: 70px 0; }
  .wp-timeline { grid-template-columns: 1fr 1fr; gap: 40px 26px; }
  .wp-line { display: none; }
}
@media (max-width: 540px) {
  .wp-timeline { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .wp-frame, .btn-wp, .btn-wp i { transition: none; }
}
.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wtesti { background: #ffffff; padding: 40px 0; font-family: 'Inter', sans-serif; color: #143628; }
.aone-wtesti i { line-height: 1; }
.wt-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.wt-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.10); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 16px; }
.wt-eyebrow i { font-size: 15px; color: #D4AF37; }
.wt-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0 0 14px; color: #143628; }
.wt-lead { font-size: 16px; line-height: 1.7; color: #586a61; margin: 0; }

/* ===== GRID ===== */
.wt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wt-card { position: relative; overflow: hidden; background: #fcfdfc; border: 1px solid #eef0f2; border-radius: 22px; padding: 34px 30px; box-shadow: 0 12px 34px rgba(20,54,40,0.05); transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1), box-shadow 0.35s ease, border-color 0.35s ease; }
.wt-card:hover { transform: translateY(-6px); border-color: #D4AF37; box-shadow: 0 24px 48px rgba(20,54,40,0.12); }
.wt-quote-mark { position: absolute; top: 22px; right: 26px; font-size: 46px; line-height: 1; color: rgba(212,175,55,0.16); pointer-events: none; }
.wt-stars { color: #D4AF37; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.wt-text { font-size: 15px; color: #4f5f57; line-height: 1.75; margin: 0 0 26px; position: relative; z-index: 1; }
.wt-author { display: flex; align-items: center; gap: 13px; }
.wt-avatar { width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: #f0f7f4; border: 1px solid #e0eadd; color: #143628; font-size: 25px; }
.wt-meta { display: flex; flex-direction: column; line-height: 1.35; }
.wt-meta strong { font-size: 14.5px; font-weight: 700; color: #143628; }
.wt-tag { font-size: 12px; color: #b8902f; font-weight: 600; }

/* active (featured) card */
.wt-card--active { background: linear-gradient(160deg, #143628 0%, #0f2a1f 100%); border-color: rgba(212,175,55,0.3); }
.wt-card--active .wt-quote-mark { color: rgba(212,175,55,0.22); }
.wt-card--active .wt-text { color: rgba(255,255,255,0.88); }
.wt-card--active .wt-avatar { background: rgba(212,175,55,0.16); border-color: rgba(212,175,55,0.4); color: #D4AF37; }
.wt-card--active .wt-meta strong { color: #fff; }
.wt-card--active .wt-tag { color: #e7c873; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wtesti { padding: 70px 0; }
  .wt-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine { animation: none; }
  .wt-card { transition: none; }
}.gold-shine {
  background: linear-gradient(100deg, #b8902f, #f4d98a 25%, #D4AF37 45%, #fbe7b4 65%, #c8a13e);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: goldShine 4.5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }

/* ===== SECTION ===== */
.aone-wcta { background: #fcfdfc; padding: 40px 0; font-family: 'Inter', sans-serif; }
.aone-wcta i { line-height: 1; }

.wc-panel { position: relative; overflow: hidden; background: linear-gradient(160deg, #143628 0%, #0f2a1f 60%, #102619 100%); border-radius: 32px; padding: 56px 60px; box-shadow: 0 40px 90px rgba(20,54,40,0.30); }
.wc-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.wc-orb--1 { width: 400px; height: 400px; top: -22%; left: -5%; background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%); animation: wcFloat 18s ease-in-out infinite; }
.wc-orb--2 { width: 340px; height: 340px; bottom: -26%; right: -4%; background: radial-gradient(circle, rgba(95,160,130,0.26) 0%, transparent 70%); animation: wcFloat 22s ease-in-out infinite reverse; }
@keyframes wcFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(22px,-26px); } }

.wc-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 50px; align-items: center; }

/* content */
.wc-content { color: #fff; }
.wc-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.35); margin-bottom: 22px; }
.wc-badge i { color: #D4AF37; font-size: 15px; }
.wc-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.3rem); line-height: 1.1; margin: 0 0 16px; color: #fff; }
.wc-title .aone-gold-italic { font-style: italic; font-weight: 400; }
.wc-lead { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0; }

/* actions */
.wc-actions { display: flex; flex-direction: column; gap: 16px; }
.btn-wc { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; border: none; background: #D4AF37; color: #143628; padding: 18px 16px 18px 26px; border-radius: 8px; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; box-shadow: 0 16px 38px rgba(212,175,55,0.28); transition: 0.3s ease; }
.btn-wc-ico { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 7px; background: #143628; color: #D4AF37; font-size: 16px; transition: transform 0.3s ease; }
.btn-wc:hover { background: #fff; transform: translateY(-3px); }
.btn-wc:hover .btn-wc-ico { transform: scale(1.05); }

.btn-wc-call { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; padding: 16px 26px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; font-weight: 700; transition: 0.3s ease; }
.btn-wc-call i { font-size: 19px; color: #D4AF37; }
.btn-wc-call:hover { background: rgba(255,255,255,0.1); border-color: rgba(212,175,55,0.5); color: #fff; }

.wc-trust { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.wc-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); }
.wc-trust i { color: #D4AF37; font-size: 16px; }
.wc-dot { color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .aone-wcta { padding: 70px 0; }
  .wc-panel { padding: 40px 28px; border-radius: 24px; }
  .wc-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-shine, .wc-orb { animation: none; }
  .btn-wc, .btn-wc-ico, .btn-wc-call { transition: none; }
}