

:root {
    --bg-primary:    #ffffff;
    --bg-secondary:  #f7f9fc;
    --bg-card:       #ffffff;
    --bg-card-hover: #f0faf1;
    --bg-dark:       #1a1a2e;
    --text-primary:  #222222;
    --text-secondary: #666666;
    --text-muted:    #999999;
    --footer-dark-bg: #1a1a2e;
    --border-color:  #e8ecf0;
    --border-light:  rgba(49, 177, 58, 0.12);

    --w14n5: #31b13a;
    --w15cv: #27943a;
    --w110: linear-gradient(135deg, var(--w14n5), var(--w15cv));
    --accent-glow: 0 8px 28px rgba(49, 177, 58, 0.25);

    --w3lu: 'Heebo', system-ui, sans-serif;
    --w5t4:    'Heebo', system-ui, sans-serif;

    --w1974: 56px;
    --w20ow: 40px;
    --w21ux: 28px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --w17bz: 15px;
    --fs-small: 13px;

    --w18qw:     700;
    --fw-semibold: 600;
    --fw-medium:   500;
    --fw-regular:  400;
    --fw-light:    300;

    --w6hf:   6px;
    --w7ep:   10px;
    --w8hy:   14px;
    --w93s:   18px;
    --w448: 100px;

    --transition:      all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --w10cn: 0 2px 12px rgba(0, 0, 0, 0.05);
    --w11dc: 0 8px 28px rgba(0, 0, 0, 0.08);
    --w12j3: 0 16px 48px rgba(0, 0, 0, 0.10);
    --w13py: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-neutral: 0 6px 24px rgba(0, 0, 0, 0.05);

    --kjfw: 100px 0;
    --container-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--w5t4);
    font-size: var(--w17bz);
    font-weight: var(--fw-regular);
    line-height: 1.75;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; cursor: pointer; color: var(--w14n5); transition: var(--transition); }
a:hover { color: var(--w15cv); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--w14n5); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--w3lu);
    font-weight: var(--w18qw);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 18px;
}
h1 { font-size: var(--w1974); }
h2 { font-size: var(--w20ow); }
h3 { font-size: var(--w21ux); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p { font-size: var(--w17bz); line-height: 1.8; color: var(--text-secondary); margin: 0; }

.text-gradient { background: var(--w110); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-accent   { color: var(--w14n5); }
.text-accent-2 { color: var(--w15cv); }
.text-dark     { color: var(--text-primary); }

.kjfw    { padding: var(--kjfw); position: relative; }
.kjfw-sm { padding: 60px 0; }
.kjfw-lg { padding: 130px 0; }
.sk34   { background-color: var(--bg-primary); }
.nhe5q { background-color: var(--bg-secondary); }
.bg-card             { background-color: var(--bg-card); }
.nre6y     { background-color: var(--bg-dark); }
.bg-gradient-custom  { background: var(--w110); color: #fff; }

.nre6y h1,.nre6y h2,.nre6y h3,
.nre6y h4,.nre6y h5,.nre6y h6 { color: #fff; }
.nre6y p,.nre6y li,.nre6y span:not(.badge) { color: rgba(255,255,255,0.7); }
.nre6y .xyuist { color: #fff; }
.nre6y .eccao  { color: rgba(255,255,255,0.55); }

.mb-10{margin-bottom:10px} .mb-20{margin-bottom:20px} .mb-30{margin-bottom:30px}
.mb-40{margin-bottom:40px} .mb-50{margin-bottom:50px} .mb-60{margin-bottom:60px}
.mt-10{margin-top:10px}    .mt-20{margin-top:20px}    .mt-30{margin-top:30px}
.mt-40{margin-top:40px}    .mt-50{margin-top:50px}
.gap-20{gap:20px} .gap-30{gap:30px} .gap-40{gap:40px}

.zsfbq2 { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.4s ease, visibility 0.4s ease; }
.zsfbq2.loaded { opacity: 0; visibility: hidden; }
.gomtu { width: 44px; height: 44px; border: 3px solid var(--border-color); border-top-color: var(--w14n5); border-radius: 50%; animation: nftSpin 0.65s linear infinite; }
@keyframes nftSpin { to { transform: rotate(360deg); } }

.m7kb25 {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 32px;
    font-family: var(--w3lu); font-size: var(--fs-small);
    font-weight: var(--fw-medium); text-transform: none; letter-spacing: 0;
    border-radius: var(--w8hy);
    border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.m4help { background: var(--w14n5); color: #fff; border-color: var(--w14n5); }
.m4help:hover { background: var(--w15cv); border-color: var(--w15cv); transform: translateY(-3px); box-shadow: var(--accent-glow); }
.kf4cu { background: transparent; color: var(--text-primary); border-color: var(--border-color); }
.kf4cu:hover { border-color: var(--w14n5); color: var(--w14n5); transform: translateY(-3px); }
.btn-link-custom { background: none; border: none; color: var(--w14n5); padding: 0; font-weight: var(--fw-medium); display: inline-flex; align-items: center; gap: 6px; font-family: var(--w3lu); font-size: 14px; }
.btn-link-custom:hover { color: var(--w15cv); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.beq93g { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
.beq93g.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.oc0k { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.od6e6 { font-family: var(--w3lu); font-size: 26px; font-weight: var(--w18qw); color: var(--text-primary); }
.od6e6:hover { color: var(--text-primary); }
.od6e6 img { height: 42px; width: auto; }
.eibr { display: flex; align-items: center; gap: 28px; }
.eibr .nav-link { color: var(--text-secondary); font-family: var(--w5t4); font-size: var(--w17bz); font-weight: var(--fw-medium); padding: 6px 0; position: relative; transition: var(--transition); }
.eibr .nav-link:hover, .eibr .nav-link.active { color: var(--w14n5); }
.s0iu9s { margin-left: 10px; }
.i5qb73 { display: none; flex-direction: column; justify-content: center; align-items: center; width: 42px; height: 42px; background: none; border: 2px solid var(--border-color); border-radius: var(--w7ep); cursor: pointer; padding: 0; gap: 5px; }
.i5qb73 .d1v8 { display: block; width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

.apk466 {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 90px;
    background: var(--bg-secondary);
}
.hhec { position: relative; z-index: 2; }
.fzyg9   { position: relative; z-index: 2; }
.fzyg9 img { border-radius: var(--w93s); box-shadow: var(--w12j3); }
.who2l8 {
    display: inline-block; color: var(--w14n5);
    font-size: 14px; font-weight: var(--fw-medium); font-family: var(--w3lu);
    text-transform: none; letter-spacing: 0; margin-bottom: 14px;
}
.nmo06j {
    font-family: var(--w3lu); font-size: var(--w1974);
    font-weight: var(--w18qw); color: var(--text-primary);
    line-height: 1.2; margin-bottom: 20px;
}
.qyhtm { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin-bottom: 34px; line-height: 1.8; }
.smcaj4 { display: flex; flex-wrap: wrap; gap: 14px; }

.wmscr { margin-bottom: 50px; }
.wmscr.text-center { text-align: center; }
.wmscr.text-center .m1xmzv { max-width: 560px; margin: 0 auto; }
.fh2bpx { display: inline-block; font-size: 13px; font-weight: var(--fw-medium); color: var(--w14n5); text-transform: none; letter-spacing: 0; margin-bottom: 10px; font-family: var(--w3lu); }
.z00fe { font-family: var(--w3lu); font-size: var(--w20ow); font-weight: var(--w18qw); color: var(--text-primary); line-height: 1.2; margin-bottom: 14px; }
.m1xmzv { font-size: var(--w17bz); color: var(--text-secondary); line-height: 1.8; }

.pr62 { background: var(--bg-card); border-radius: var(--w8hy); padding: 30px 24px; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.pr62:hover { box-shadow: var(--w11dc); transform: translateY(-6px); border-color: var(--w14n5); }
.ns3ab { width: 60px; height: 60px; background: rgba(49,177,58,0.08); border-radius: var(--w8hy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--transition); }
.ns3ab i, .ns3ab svg { color: var(--w14n5); font-size: 26px; }
.pr62:hover .ns3ab { background: var(--w14n5); }
.pr62:hover .ns3ab i, .pr62:hover .ns3ab svg { color: #fff; }
.drpdt { font-family: var(--w3lu); font-size: 18px; margin-bottom: 8px; }
.x7a0  { font-size: var(--fs-small); color: var(--text-secondary); line-height: 1.7; }
.pr62-horizontal { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: var(--bg-card); border-radius: var(--w8hy); border-left: 3px solid var(--w14n5); box-shadow: var(--w10cn); transition: var(--transition); }
.pr62-horizontal:hover { box-shadow: var(--w11dc); transform: translateX(4px); }
.pr62-horizontal .ns3ab { flex-shrink: 0; margin-bottom: 0; }

.about-section { position: relative; }
.about-image { position: relative; }
.about-image .img-main { border-radius: var(--w93s); box-shadow: var(--w12j3); }
.about-image .img-small { position: absolute; bottom: 20px; left: -24px; width: 42%; border-radius: var(--w8hy); box-shadow: var(--w11dc); border: 4px solid #fff; }
.experience-badge { position: absolute; bottom: 16px; right: -16px; background: var(--w14n5); color: #fff; padding: 18px 22px; border-radius: var(--w8hy); text-align: center; box-shadow: var(--accent-glow); z-index: 2; }
.experience-badge .badge-number { font-family: var(--w3lu); font-size: 40px; font-weight: var(--w18qw); line-height: 1; display: block; }
.experience-badge .badge-text { font-size: 12px; opacity: 0.9; }
.about-list { list-style: none; padding: 0; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-color); font-size: var(--w17bz); color: var(--text-secondary); }
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--w14n5); margin-top: 2px; flex-shrink: 0; }

.zu1g3z { background: var(--bg-card); border-radius: var(--w8hy); overflow: hidden; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.zu1g3z:hover { box-shadow: var(--w12j3); transform: translateY(-6px); }
.zu1g3z .ucbg { position: relative; overflow: hidden; height: 220px; }
.zu1g3z .ucbg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.zu1g3z:hover .ucbg img { transform: scale(1.06); }
.zu1g3z .card-tag { position: absolute; top: 12px; left: 12px; background: var(--w14n5); color: #fff; font-size: 11px; font-weight: var(--w18qw); padding: 4px 12px; border-radius: var(--w7ep); }
.zu1g3z .card-body { padding: 22px; }
.zu1g3z .card-title { font-family: var(--w3lu); font-size: 18px; margin-bottom: 8px; }
.zu1g3z .card-text  { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 14px; }
.zu1g3z .card-footer-custom { padding: 0 22px 22px; display: flex; align-items: center; justify-content: space-between; }

.nft-card { background: var(--bg-card); border-radius: var(--w93s); overflow: hidden; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); }
.nft-card:hover { box-shadow: var(--w12j3); transform: translateY(-6px); }
.nft-card .nft-image { position: relative; overflow: hidden; height: 260px; }
.nft-card .nft-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.nft-card:hover .nft-image img { transform: scale(1.06); }
.nft-card .nft-body { padding: 20px; }
.nft-title { font-size: 17px; font-weight: var(--fw-semibold); margin-bottom: 6px; }
.nft-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.nft-price-row { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-color); }
.nft-price { font-weight: var(--w18qw); color: var(--text-primary); font-size: 16px; }
.nft-countdown { font-size: 12px; color: var(--w14n5); font-weight: var(--fw-medium); }
.nft-action-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0; transition: opacity 0.3s ease; }
.nft-card:hover .nft-action-overlay { opacity: 1; }
.nft-action-btn { width: 42px; height: 42px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--text-primary); font-size: 16px; }
.nft-action-btn:hover { background: var(--w14n5); color: #fff; }

.iotnlu { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 70px 0; }
.counter-item { text-align: center; }
.counter-item .counter-icon { font-size: 46px; color: var(--w14n5); margin-bottom: 10px; display: block; }
.xyuist { font-family: var(--w3lu); font-size: 52px; font-weight: var(--w18qw); color: var(--text-primary); line-height: 1; display: block; margin-bottom: 8px; }
.eccao { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.vqpkb { background: var(--bg-card); border-radius: var(--w8hy); overflow: hidden; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); text-align: center; }
.vqpkb:hover { box-shadow: var(--w12j3); transform: translateY(-6px); }
.vqpkb .j0ez3t { position: relative; overflow: hidden; height: 260px; }
.vqpkb .j0ez3t img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vqpkb:hover .j0ez3t img { transform: scale(1.05); }
.vqpkb .team-body { padding: 20px; }
.exna { font-family: var(--w3lu); font-size: 18px; margin-bottom: 4px; }
.t49tl { font-size: 14px; color: var(--w14n5); margin-bottom: 12px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 36px; height: 36px; background: var(--bg-secondary); color: var(--text-secondary); border-radius: var(--w7ep); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.team-social a:hover { background: var(--w14n5); color: #fff; }

.vm87kd { background: var(--bg-card); border-radius: var(--w93s); padding: 32px; border: 1px solid var(--border-color); box-shadow: var(--w10cn); transition: var(--transition); height: 100%; }
.vm87kd:hover { box-shadow: var(--w11dc); }
.quote-icon   { color: var(--w14n5); font-size: 36px; margin-bottom: 14px; display: block; }
.yl1z   { font-style: italic; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-size: 15px; }
.vm87kd .author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.fh4v { width: 50px; height: 50px; border-radius: var(--w8hy); object-fit: cover; flex-shrink: 0; }
.vb7iy7  { font-family: var(--w3lu); font-size: 16px; font-weight: var(--fw-semibold); margin-bottom: 2px; }
.fjj1  { font-size: 13px; color: var(--text-muted); }
.star-rating  { color: #ffc107; font-size: 14px; margin-bottom: 12px; }

.d6mhc { background: var(--bg-card); border: 2px solid var(--border-color); border-radius: var(--w93s); padding: 34px 28px; transition: var(--transition); position: relative; overflow: hidden; height: 100%; }
.d6mhc.featured { border-color: var(--w14n5); }
.d6mhc:hover { border-color: var(--w14n5); transform: translateY(-6px); box-shadow: var(--w12j3); }
.rfnt { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.vf4k { font-family: var(--w3lu); font-size: 46px; font-weight: var(--w18qw); color: var(--text-primary); line-height: 1; }
.plan-period { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.whmyue { list-style: none; padding: 0; margin: 0 0 26px; }
.whmyue li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.whmyue li:last-child { border-bottom: none; }
.whmyue li i { color: var(--w14n5); font-size: 13px; flex-shrink: 0; }
.whmyue li.disabled { color: var(--text-muted); text-decoration: line-through; }
.pricing-badge { position: absolute; top: -1px; right: 22px; background: var(--w14n5); color: #fff; font-size: 11px; font-weight: var(--w18qw); padding: 6px 14px; border-radius: 0 0 var(--w6hf) var(--w6hf); text-transform: uppercase; }

.portfolio-item { position: relative; overflow: hidden; border-radius: var(--w8hy); }
.portfolio-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay { color: #fff; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.85), transparent 60%); opacity: 0; transition: opacity 0.3s ease; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border-radius: var(--w8hy); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat   { font-size: 12px; color: var(--w14n5); text-transform: uppercase; letter-spacing: 1px; }
.portfolio-title { font-family: var(--w3lu); font-size: 19px; color: #fff; }
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.k58t { background: var(--bg-card); border-radius: var(--w8hy); overflow: hidden; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.k58t:hover { box-shadow: var(--w12j3); transform: translateY(-5px); }
.k58t .ucbg { height: 200px; overflow: hidden; }
.k58t .ucbg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.k58t:hover .ucbg img { transform: scale(1.07); }
.k58t .card-body { padding: 22px; }
.nksw { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.k58t .card-title { font-family: var(--w3lu); font-size: 17px; margin-bottom: 6px; }
.k58t .card-text { font-size: var(--fs-small); color: var(--text-secondary); }

.process-item { background: var(--bg-card); border-radius: var(--w8hy); padding: 28px 22px; box-shadow: var(--w10cn); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; position: relative; }
.process-item:hover { box-shadow: var(--w12j3); transform: translateY(-6px); }
.s190bz { font-family: var(--w3lu); font-size: 68px; font-weight: var(--w18qw); color: rgba(49,177,58,0.06); position: absolute; top: 6px; right: 14px; line-height: 1; }
.step-icon   { font-size: 40px; color: var(--w14n5); margin-bottom: 14px; display: block; }
.yignp8  { font-family: var(--w3lu); font-size: 18px; margin-bottom: 6px; }
.step-text   { font-size: var(--fs-small); color: var(--text-secondary); }

.faq-section .accordion-item { border: 1px solid var(--border-color); border-radius: var(--w8hy) !important; margin-bottom: 12px; overflow: hidden; }
.faq-section .accordion-button { font-family: var(--w3lu); font-weight: var(--fw-semibold); color: var(--text-primary); background: var(--bg-card); font-size: 16px; }
.faq-section .accordion-button:not(.collapsed) { color: var(--w14n5); background: var(--bg-secondary); box-shadow: none; }
.faq-section .accordion-body { background: var(--bg-secondary); color: var(--text-secondary); font-size: 15px; line-height: 1.8; }

.qqvy { background: var(--w110); padding: var(--kjfw); text-align: center; position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 1; }
.bmx1 { font-family: var(--w3lu); font-size: var(--w20ow); color: #fff; margin-bottom: 14px; }
.bsik  { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input[type="email"] { flex: 1; min-width: 200px; padding: 13px 22px; border: 2px solid var(--border-color); border-radius: var(--w8hy); font-family: var(--w5t4); font-size: var(--w17bz); transition: border-color 0.3s ease; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--w14n5); }

.uutuz .form-control { border: 2px solid var(--border-color); border-radius: var(--w8hy); padding: 13px 20px; font-family: var(--w5t4); font-size: var(--w17bz); transition: border-color 0.3s ease; }
.uutuz .form-control:focus { outline: none; box-shadow: none; border-color: var(--w14n5); }
.uutuz label { font-weight: var(--fw-semibold); color: var(--text-primary); margin-bottom: 6px; font-size: 15px; }

.v7ovc { background: var(--footer-dark-bg); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.isxjae { margin-bottom: 36px; }
.aagy2 { font-family: var(--w3lu); font-size: 18px; font-weight: var(--fw-semibold); color: #fff; margin-bottom: 18px; }
.nqy5pc { list-style: none; padding: 0; }
.nqy5pc li { margin-bottom: 10px; }
.nqy5pc a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.nqy5pc a:hover { color: var(--w14n5); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 12px; }
.footer-contact li i { color: var(--w14n5); margin-top: 2px; flex-shrink: 0; }
.ganzr { display: flex; gap: 10px; margin-top: 18px; }
.ganzr a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--w7ep); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 15px; transition: var(--transition); }
.ganzr a:hover { background: var(--w14n5); border-color: var(--w14n5); color: #fff; }
.p1lr { margin-top: 36px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

.al2hpw { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--w14n5); color: #fff; border: none; border-radius: var(--w8hy); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--accent-glow); z-index: 999; }
.al2hpw.visible { opacity: 1; visibility: visible; }
.al2hpw:hover { background: var(--w15cv); transform: translateY(-4px); }

.line-divider { width: 50px; height: 3px; background: var(--w14n5); border-radius: 2px; margin: 14px auto; }
.line-divider.left { margin-left: 0; }

.gallery-item { position: relative; overflow: hidden; border-radius: var(--w8hy); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(49,177,58,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; border-radius: var(--w8hy); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 34px; color: #fff; }

@media (max-width: 1199px) { :root { --w1974: 46px; --w20ow: 34px; --w21ux: 24px; } }
@media (max-width: 991px) { :root { --w1974: 38px; --w20ow: 28px; --kjfw: 70px 0; } .eibr { display: none; } .i5qb73 { display: flex; } .about-image .img-small { display: none; } }
@media (max-width: 767px) { :root { --w1974: 32px; --w20ow: 24px; --kjfw: 50px 0; } .smcaj4 { flex-direction: column; } .xyuist { font-size: 40px; } .newsletter-form { flex-direction: column; } }

.nre6y .who2l8 { color: #fff; }
.nre6y .fh2bpx { color: var(--w14n5); }
.nre6y .itlo { color: rgba(255,255,255,0.55); }
.nre6y .nqy5pc a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.nre6y .nqy5pc a:hover { color: #fff; }
.nre6y a:not(.m7kb25):not(.od6e6) { color: rgba(255,255,255,0.8); }
.nre6y a:not(.m7kb25):not(.od6e6):hover { color: #fff; }

.text-force-light { color: #fff !important; }
.text-force-light-muted { color: rgba(255,255,255,0.7) !important; }
.text-force-light-soft { color: rgba(255,255,255,0.55) !important; }
.text-force-accent { color: var(--w14n5) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
