/*
 * iBlogger — Luminae-inspired visual layer
 * Loaded after the original styles so the existing PHP/JS functionality remains intact.
 */
:root {
  --color-brand-yellow: #d7efb1;
  --color-brand-gold: #bddb8e;
  --color-charcoal: #1f2c23;
  --color-deep: #142019;
  --color-neutral-light: #e6e2d9;
  --color-neutral: #667068;
  --color-positive: #9fc9aa;
  --color-negative: #c96a72;
  --color-primary: #203027;
  --color-primary-hover: #35483c;
  --color-primary-active: #142019;
  --color-primary-soft: #edf2e9;
  --color-secondary: #8fb6a4;
  --color-secondary-hover: #769d8b;
  --color-secondary-soft: #e8f1ed;
  --color-accent: #d8c5ea;
  --color-accent-soft: #f2eafa;
  --color-background: #f5f2eb;
  --color-background-alt: #ece8df;
  --color-surface: #fbfaf6;
  --color-surface-elevated: #ffffff;
  --color-surface-subtle: #efede6;
  --color-text-primary: #213027;
  --color-text-secondary: #687169;
  --color-text-muted: #929990;
  --color-border: rgba(33,48,39,.14);
  --color-border-strong: rgba(33,48,39,.25);
  --color-success: #719a82;
  --color-success-soft: #e5efe8;
  --color-warning: #c9a952;
  --color-warning-soft: #f7efd7;
  --color-error: #b75e69;
  --color-error-soft: #fae9eb;
  --color-info: #728078;
  --color-info-soft: #e9eeeb;
  --color-on-primary: #f9f7f1;
  --color-on-dark: #f9f7f1;
  --color-overlay: rgba(18,29,23,.65);
  --shadow-xs: 0 2px 8px rgba(34,43,38,.04);
  --shadow-sm: 0 12px 32px rgba(34,43,38,.07);
  --shadow-md: 0 24px 70px rgba(34,43,38,.10);
  --shadow-lg: 0 44px 120px rgba(34,43,38,.16);
  --shadow-primary: 0 16px 42px rgba(31,44,35,.16);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container-width: 1240px;
  --header-height: 78px;
  --brand-logo-height: 36px;
  --brand-logo-height-mobile: 30px;
  --transition-fast: 180ms ease;
  --transition-normal: 360ms cubic-bezier(.2,.75,.2,1);
  --transition-slow: 700ms cubic-bezier(.16,1,.3,1);
}

html[data-theme="dark"] {
  --color-primary: #dce9d9;
  --color-primary-hover: #ffffff;
  --color-primary-active: #d2e4ce;
  --color-primary-soft: #26372d;
  --color-secondary: #9bc8b2;
  --color-secondary-hover: #b7dec9;
  --color-secondary-soft: #20372d;
  --color-accent: #d7c4e7;
  --color-accent-soft: #332d3a;
  --color-background: #152019;
  --color-background-alt: #1c2a21;
  --color-surface: #1b2920;
  --color-surface-elevated: #223229;
  --color-surface-subtle: #1d2d23;
  --color-text-primary: #f3f0e7;
  --color-text-secondary: #bbc3bb;
  --color-text-muted: #8e9a90;
  --color-border: rgba(240,240,230,.13);
  --color-border-strong: rgba(240,240,230,.23);
  --color-on-primary: #17231b;
  --color-overlay: rgba(4,9,6,.76);
}

html { scroll-padding-top: 96px; }
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(213,231,199,.28), transparent 28rem),
    var(--color-background);
  letter-spacing: -.01em;
}

.container { width: min(calc(100% - 48px), var(--container-width)); }
.section { padding-block: clamp(82px, 10vw, 150px); }

h1,h2,h3,h4 { font-weight: 650; letter-spacing: -.045em; }
h1,h2 { text-wrap: balance; }
p { text-wrap: pretty; }

/* Floating minimalist header */
.site-header {
  height: var(--header-height);
  top: 14px;
  width: min(calc(100% - 32px), 1280px);
  margin-inline: auto;
  border: 1px solid rgba(33,48,39,.10);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 76%, transparent);
  box-shadow: 0 8px 30px rgba(38,49,42,.05);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border-color: var(--color-border);
  box-shadow: 0 16px 50px rgba(38,49,42,.09);
}
.header-inner { gap: 18px; padding-inline: 14px 10px; }
.site-logo-image { filter: none; max-width: 138px; }
.desktop-nav { gap: 0; }
.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
}
.nav-link::after { display:none; }
.nav-link:hover,.nav-link.is-active { background: rgba(33,48,39,.07); color: var(--color-text-primary); }
.header-actions { gap: 5px; }
.icon-button {
  width: 40px; height: 40px; border-radius: 50%; background: transparent; box-shadow:none;
}
.icon-button:hover { background: rgba(33,48,39,.07); color:var(--color-text-primary); box-shadow:none; transform:none; }
.header-actions .button { min-height:40px; padding:8px 16px; }
.button {
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: -.015em;
  box-shadow: none;
}
.button-primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: 0 10px 30px rgba(31,44,35,.12); }
.button-primary:hover { background: var(--color-primary-hover); box-shadow: 0 14px 38px rgba(31,44,35,.16); }
.button-secondary { background: transparent; border-color:var(--color-border-strong); box-shadow:none; }
.button-secondary:hover { background:rgba(33,48,39,.05); box-shadow:none; }
.button-ghost:hover { background:rgba(33,48,39,.05); color:var(--color-text-primary); }
.button-large { min-height: 54px; padding-inline: 24px; }

/* Homepage hero closely follows the airy editorial composition of the reference. */
.lm-hero {
  position: relative;
  min-height: 950px;
  padding: 178px 0 108px;
  overflow: hidden;
  isolation: isolate;
}
.lm-hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 31%, rgba(255,255,255,.90) 0 10%, rgba(255,255,255,.45) 28%, transparent 53%),
    linear-gradient(180deg, rgba(240,238,231,.62), rgba(246,243,236,.2));
  z-index:-3;
}
.lm-hero-copy { width:min(720px, 88vw); margin:0 auto; text-align:center; position:relative; z-index:5; }
.lm-trust { display:flex; align-items:center; justify-content:center; gap:12px; color:var(--color-text-secondary); font-size:.84rem; margin-bottom:24px; }
.lm-trust-avatars { display:flex; direction:ltr; padding-left:8px; }
.lm-trust-avatars img { width:34px;height:34px;border-radius:50%;border:3px solid var(--color-background);margin-left:-9px;object-fit:cover; }
.lm-trust-badge { width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:var(--color-primary);color:var(--color-on-primary);border:3px solid var(--color-background);margin-left:-9px;font-size:.66rem;font-weight:700; }
.lm-hero h1 { font-size:clamp(3rem,7vw,6.7rem); line-height:.98; font-weight:560; margin:0 auto 24px; max-width:920px; letter-spacing:-.065em; }
.lm-hero h1 span { display:block; font-style:italic; font-weight:430; }
.lm-hero-copy > p { font-size:clamp(1rem,1.4vw,1.18rem); line-height:2; color:var(--color-text-secondary); max-width:570px; margin:0 auto 30px; }
.lm-hero .button { min-width:172px; }
.lm-orbit { position:absolute; inset:0; pointer-events:none; z-index:0; }
.lm-shot { position:absolute; overflow:hidden; border-radius:32px; box-shadow:0 26px 80px rgba(40,46,41,.14); transform-origin:center; }
.lm-shot img { width:100%;height:100%;object-fit:cover; }
.lm-shot::after { content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.35);border-radius:inherit; }
.lm-s1 { width:210px;height:265px;left:1.5%;top:128px;transform:rotate(-7deg); }
.lm-s2 { width:165px;height:205px;left:17%;top:48px;transform:rotate(7deg); }
.lm-s3 { width:190px;height:245px;right:14%;top:50px;transform:rotate(-4deg); }
.lm-s4 { width:220px;height:180px;right:-2%;top:196px;transform:rotate(7deg); }
.lm-s5 { width:205px;height:250px;left:6%;bottom:78px;transform:rotate(5deg); }
.lm-s6 { width:162px;height:208px;left:23%;bottom:18px;transform:rotate(-6deg); }
.lm-s7 { width:178px;height:230px;right:22%;bottom:10px;transform:rotate(6deg); }
.lm-s8 { width:220px;height:260px;right:2%;bottom:78px;transform:rotate(-5deg); }
.lm-glow { position:absolute;border-radius:50%;filter:blur(4px);z-index:-2; }
.lm-glow-a { width:420px;height:420px;right:25%;top:50px;background:radial-gradient(circle,#d7edc8,transparent 68%);opacity:.55; }
.lm-glow-b { width:450px;height:450px;left:25%;bottom:0;background:radial-gradient(circle,#eedcf4,transparent 68%);opacity:.50; }

/* Section language */
.lm-kicker,.section-kicker,.eyebrow { text-transform:uppercase; letter-spacing:.13em; font-size:.72rem; font-weight:700; color:var(--color-text-secondary); background:none; border:0; padding:0; border-radius:0; margin-bottom:14px; }
.lm-heading { font-size:clamp(2.3rem,5vw,4.8rem); line-height:1.08; font-weight:540; margin:0; }
.lm-section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:38px; margin-bottom:54px; }
.lm-section-head p { max-width:520px; color:var(--color-text-secondary); margin:0; line-height:1.9; }

.lm-impact { padding-top:28px; }
.lm-impact-wrap { background:var(--color-surface); border:1px solid var(--color-border); border-radius:42px; padding:clamp(34px,5vw,68px); box-shadow:var(--shadow-xs); }
.lm-impact-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:46px; }
.lm-stat { min-height:260px;border-radius:30px;padding:28px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden;background:#dde8df; }
.lm-stat:nth-child(2){background:#e9ddf1}.lm-stat:nth-child(3){background:#efe0c7}
.lm-stat::before { content:"";position:absolute;inset:auto -35px -70px auto;width:170px;height:170px;border-radius:50%;background:rgba(255,255,255,.48);filter:blur(1px); }
.lm-stat strong { font-size:clamp(3rem,6vw,5rem);font-weight:520;letter-spacing:-.07em;line-height:1; }
.lm-stat span { color:#3f4c44;font-size:.92rem; }

.lm-split { display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(42px,8vw,110px);align-items:center; }
.lm-philosophy-media { position:relative;min-height:610px; }
.lm-philosophy-media > img { width:86%;height:580px;border-radius:36px;object-fit:cover;box-shadow:var(--shadow-md); }
.lm-peace-card { position:absolute;bottom:18px;left:0;width:min(290px,72%);padding:22px;border-radius:26px;background:rgba(251,250,246,.86);backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,.7);box-shadow:var(--shadow-sm); }
.lm-peace-card b { display:block;font-size:2rem;margin-block:7px 2px; }
.lm-philosophy-copy .lm-heading { margin-bottom:28px; }
.lm-philosophy-copy p { color:var(--color-text-secondary);line-height:2;font-size:1.03rem;margin-bottom:26px; }

/* Dynamic blogger area */
.bloggers-section { background:#213028; color:#f6f3eb; border-radius:48px; width:min(calc(100% - 28px), 1450px); margin-inline:auto; overflow:hidden; }
.bloggers-section .lm-section-head { color:#f6f3eb; }
.bloggers-section .lm-section-head p,.bloggers-section .lm-kicker { color:#b9c4bb; }
.blogger-grid { gap:20px; }
.blogger-card,.skeleton-card { border-radius:28px!important; border-color:rgba(255,255,255,.09)!important; box-shadow:none!important; overflow:hidden; }
.blogger-card { background:#f8f5ee!important;color:#203027!important; }
.blogger-card:hover { transform:translateY(-5px)!important; box-shadow:0 25px 70px rgba(0,0,0,.16)!important; }

.lm-services-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.lm-service { min-height:520px;border-radius:34px;position:relative;overflow:hidden;background:var(--color-surface);border:1px solid var(--color-border);display:flex;flex-direction:column; }
.lm-service-media { height:270px;overflow:hidden; }
.lm-service-media img { width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.16,1,.3,1); }
.lm-service:hover .lm-service-media img { transform:scale(1.035); }
.lm-service-body { padding:26px;display:flex;flex-direction:column;flex:1; }
.lm-service h3 { font-size:1.75rem;font-weight:560;margin-bottom:12px; }
.lm-service p { color:var(--color-text-secondary);line-height:1.9;font-size:.94rem; }
.lm-service-meta { margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:10px;padding-top:18px; }
.lm-pill { display:inline-flex;align-items:center;padding:7px 11px;border:1px solid var(--color-border);border-radius:999px;font-size:.72rem;color:var(--color-text-secondary); }
.lm-arrow { width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--color-primary);color:var(--color-on-primary);font-size:1.2rem; }

.lm-how { background:#e5e0d6; border-radius:48px; width:min(calc(100% - 28px),1450px); margin-inline:auto; }
.lm-steps { display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:50px; }
.lm-step { border-radius:30px;overflow:hidden;background:var(--color-surface);min-height:470px;border:1px solid rgba(33,48,39,.07); }
.lm-step img { width:100%;height:225px;object-fit:cover; }
.lm-step-body { padding:25px; }
.lm-step small { color:var(--color-text-muted);font-size:.7rem;letter-spacing:.1em; }
.lm-step h3 { font-size:1.55rem;margin:10px 0 12px;font-weight:560; }
.lm-step p { color:var(--color-text-secondary);font-size:.9rem;line-height:1.85; }

.lm-stories { overflow:hidden; }
.lm-story-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.lm-story { min-height:420px;border-radius:32px;position:relative;overflow:hidden; }
.lm-story img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover; }
.lm-story::after { content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(12,20,15,.75)); }
.lm-story-caption { position:absolute;z-index:2;inset:auto 24px 24px;color:white; }
.lm-story-caption h3 { margin-bottom:4px;font-size:1.4rem; }
.lm-story-caption p { margin:0;color:rgba(255,255,255,.78);font-size:.86rem; }

.lm-feature { background:linear-gradient(135deg,#cfdfcc,#e9daf2 55%,#e7dcc5);border-radius:48px;overflow:hidden; }
.lm-feature-grid { display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;padding:clamp(40px,7vw,90px); }
.lm-feature-copy .lm-heading { margin-bottom:22px; }
.lm-feature-copy p { max-width:520px;line-height:1.95;color:#4d5c52;margin-bottom:26px; }
.lm-device { min-height:480px;position:relative;display:grid;place-items:center; }
.lm-device-phone { width:250px;height:470px;border:10px solid #1d2a22;border-radius:48px;background:#f7f4ec;box-shadow:0 40px 80px rgba(39,48,42,.20);padding:22px;transform:rotate(4deg); }
.lm-device-phone::before { content:"";display:block;width:76px;height:19px;border-radius:20px;background:#1d2a22;margin:-14px auto 24px; }
.lm-chat { padding:12px 14px;border-radius:18px;background:#dce9dd;margin-bottom:12px;font-size:.78rem;line-height:1.65; }
.lm-chat:nth-child(3){background:#eee5f4;margin-right:28px}.lm-chat:nth-child(4){background:#eadfce;margin-left:20px}
.lm-feature-orb { position:absolute;width:210px;height:210px;border-radius:50%;background:rgba(255,255,255,.46);right:4%;top:6%; }

.lm-gift { padding-block:64px; }
.lm-gift-card { display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;background:var(--color-surface);border:1px solid var(--color-border);border-radius:34px;padding:34px 38px; }
.lm-gift-card h3 { font-size:clamp(1.7rem,3vw,2.7rem);font-weight:550;margin:3px 0 8px; }
.lm-gift-card p { margin:0;color:var(--color-text-secondary); }

.lm-faq-wrap { display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:start; }
.lm-faq-list { border-top:1px solid var(--color-border); }
.lm-faq-item { border-bottom:1px solid var(--color-border); }
.lm-faq-item summary { list-style:none;cursor:pointer;padding:24px 2px;font-size:1.06rem;font-weight:600;display:flex;justify-content:space-between;gap:20px; }
.lm-faq-item summary::-webkit-details-marker{display:none}.lm-faq-item summary::after{content:"+";font-size:1.35rem;font-weight:400}.lm-faq-item[open] summary::after{content:"−"}
.lm-faq-item p { padding:0 2px 24px;margin:0;color:var(--color-text-secondary);line-height:1.95; }

.lm-final { padding:18px 0 94px; }
.lm-final-card { min-height:620px;border-radius:46px;position:relative;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;text-align:center;padding:64px;color:white;background:#1e2d24; }
.lm-final-card > img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:saturate(.85); }
.lm-final-card::after { content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(21,30,24,.08),rgba(19,28,22,.76)); }
.lm-final-copy { position:relative;z-index:2;max-width:760px; }
.lm-final-copy .lm-heading { font-size:clamp(2.6rem,6vw,5.4rem);margin-bottom:18px; }
.lm-final-copy p { color:rgba(255,255,255,.78);max-width:600px;margin:0 auto 24px; }
.lm-final-copy .button { background:#f6f2e8;color:#1e2d24; }

/* Footer */
.site-footer { background:transparent;color:var(--color-text-primary);padding-top:20px;border:0; }
.footer-grid { border-top:1px solid var(--color-border);padding-top:52px; }
.footer-brand p,.footer-column a,.footer-newsletter p,.footer-bottom { color:var(--color-text-secondary); }
.footer-column h3,.footer-newsletter h3 { font-size:.84rem;letter-spacing:.08em;text-transform:uppercase;font-weight:650; }
.footer-bottom { border-top:1px solid var(--color-border); }
.social-links a { border-color:var(--color-border);background:transparent; }
.newsletter-input { border-radius:999px;overflow:hidden;border:1px solid var(--color-border);background:var(--color-surface);padding:4px; }
.newsletter-input input { border:0!important;background:transparent!important; }
.newsletter-input .button { min-height:42px; }

/* Generic pages inherit the same visual system. */
.auth-page,.profile-page,.service-page,body:has(.submission-shell) { background:var(--color-background)!important; }
.auth-card,.service-card,.submission-card,.profile-card,.feedback-card,.moderation-card,.dashboard-card,.benefit-card,.add-blogger-promo-card {
  border-radius:30px!important;
  border-color:var(--color-border)!important;
  box-shadow:var(--shadow-xs)!important;
  background:var(--color-surface)!important;
}
input,select,textarea { border-radius:15px!important;border-color:var(--color-border)!important;background:var(--color-surface)!important; }
.modal-panel { border-radius:32px!important;background:var(--color-surface)!important; }
.back-to-top { border-radius:50%!important;background:var(--color-primary)!important;color:var(--color-on-primary)!important; }

@media (max-width: 1180px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:inline-grid; }
  .header-actions > .button-ghost,.header-actions > .button-primary { display:none; }
  .lm-s1{left:-5%}.lm-s4{right:-6%}.lm-s5{left:-4%}.lm-s8{right:-4%}
  .lm-services-grid{grid-template-columns:repeat(2,1fr)}
  .lm-services-grid .lm-service:last-child{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;min-height:320px}.lm-services-grid .lm-service:last-child .lm-service-media{height:100%}
  .lm-steps{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 820px) {
  .container { width:min(calc(100% - 28px),var(--container-width)); }
  .site-header { top:8px;width:calc(100% - 16px);height:66px; }
  .header-inner { padding-inline:8px; }
  .lm-hero { min-height:870px;padding-top:145px;padding-bottom:70px; }
  .lm-hero h1 { font-size:clamp(2.8rem,12vw,5rem); }
  .lm-s1{width:140px;height:180px;left:-40px;top:100px}.lm-s2{width:110px;height:140px;left:10%;top:32px}.lm-s3{width:120px;height:150px;right:9%;top:28px}.lm-s4{width:145px;height:120px;right:-45px;top:128px}
  .lm-s5{width:140px;height:170px;left:-35px;bottom:40px}.lm-s6{width:105px;height:135px;left:23%;bottom:0}.lm-s7{width:115px;height:145px;right:25%;bottom:-5px}.lm-s8{width:140px;height:170px;right:-36px;bottom:45px}
  .lm-section-head{display:block}.lm-section-head p{margin-top:18px}.lm-impact-grid{grid-template-columns:1fr}.lm-stat{min-height:190px}
  .lm-split,.lm-feature-grid,.lm-faq-wrap{grid-template-columns:1fr}.lm-philosophy-media{min-height:510px}.lm-philosophy-media>img{height:480px;width:92%}.lm-philosophy-copy{order:-1}
  .bloggers-section,.lm-how{border-radius:34px;width:calc(100% - 12px)}
  .lm-services-grid{grid-template-columns:1fr}.lm-services-grid .lm-service:last-child{display:flex;grid-column:auto}.lm-services-grid .lm-service:last-child .lm-service-media{height:270px}
  .lm-story-grid{grid-template-columns:1fr}.lm-story{min-height:360px}.lm-gift-card{grid-template-columns:1fr}.lm-gift-card .button{width:max-content}
  .lm-final-card{min-height:520px;padding:38px 22px;border-radius:34px}.lm-feature-grid{padding:42px 24px;gap:30px}.lm-device{min-height:420px}.lm-device-phone{width:220px;height:410px}
}

@media (max-width: 560px) {
  .section { padding-block:78px; }
  .lm-hero { min-height:790px; padding-top:126px; }
  .lm-hero-copy { width:92vw; }
  .lm-hero-copy>p { font-size:.94rem; }
  .lm-trust { gap:8px;font-size:.75rem; }
  .lm-shot { border-radius:22px;opacity:.94; }
  .lm-s1{width:92px;height:108px;left:-34px;top:62px}.lm-s2{width:78px;height:96px;left:15%;top:28px}.lm-s3{width:82px;height:100px;right:15%;top:27px}.lm-s4{width:94px;height:82px;right:-31px;top:65px}
  .lm-s5{width:105px;height:135px;left:-38px;bottom:48px}.lm-s6{width:78px;height:100px;left:21%;bottom:8px}.lm-s7{width:84px;height:108px;right:23%;bottom:6px}.lm-s8{width:106px;height:135px;right:-40px;bottom:50px}
  .lm-heading{font-size:clamp(2.05rem,10vw,3.25rem)}
  .lm-impact-wrap{padding:28px 18px;border-radius:30px}.lm-impact-grid{margin-top:30px}.lm-stat{padding:22px;border-radius:24px}
  .lm-philosophy-media{min-height:410px}.lm-philosophy-media>img{height:390px;border-radius:28px}.lm-peace-card{padding:17px;border-radius:22px}
  .lm-services-grid,.lm-steps{grid-template-columns:1fr}.lm-step{min-height:0}.lm-step img{height:210px}
  .lm-feature{border-radius:32px}.lm-device{min-height:350px}.lm-device-phone{width:190px;height:350px;border-width:8px;border-radius:38px;padding:18px}.lm-chat{font-size:.66rem}
  .lm-gift-card{padding:25px 22px;border-radius:26px}.lm-faq-wrap{gap:35px}.lm-final{padding-bottom:68px}.lm-final-card{min-height:470px}
}
