:root{
  --navy:#0b2146;
  --navy-2:#102c5c;
  --orange:#f39a1e;
  --orange-dark:#db850f;
  --text:#172033;
  --muted:#5e6a7f;
  --line:#e6eaf0;
  --soft:#f6f8fb;
  --white:#ffffff;
  --green:#25d366;
  --green-dark:#1ebe5d;
  --turquoise:#38c7c3;
  --turquoise-dark:#25b8b3;
  --shadow:0 18px 40px rgba(16,32,71,.08);
  --radius:22px;
  --container:1280px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.container{width:min(var(--container),92%);margin:0 auto}
.center{text-align:center}
.narrow{max-width:860px;margin-left:auto;margin-right:auto}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.navbar{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:14px 0;
}
.brand{
  flex-shrink:0;
}
.brand img{
  height:56px;
  width:auto;
  object-fit:contain;
}
.desktop-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.nav-link{
  color:var(--navy);
  font-weight:700;
  font-size:15px;
  padding:11px 16px;
  border-radius:14px;
  transition:.25s ease;
}
.nav-link:hover{
  color:var(--orange);
  background:rgba(243,154,30,.1);
}
.nav-link.active{
  background:rgba(243,154,30,.16);
  color:var(--orange);
}
.nav-cta{
  margin-left:6px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--orange);
  color:#fff;
  font-weight:700;
  padding:11px 16px;
  border-radius:10px;
  transition:.25s ease;
  white-space:nowrap;
}
.nav-cta:hover{
  background:var(--orange-dark);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:.25s ease;
  text-align:center;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,#f39a1e,#db850f);
  color:#fff;
  box-shadow:0 14px 30px rgba(243,154,30,.22);
}
.btn-primary:hover{
  background:linear-gradient(135deg,#db850f,#c97305);
  box-shadow:0 18px 34px rgba(243,154,30,.28);
}
.btn-dark{
  background:linear-gradient(135deg,#0b2146,#16366d);
  color:#fff;
}
.btn-dark:hover{
  box-shadow:0 18px 32px rgba(11,33,70,.22);
}
.btn-whatsapp{
  background:var(--green);
  color:#fff;
  border:1px solid var(--green);
  box-shadow:0 14px 28px rgba(37,211,102,.22);
}
.btn-whatsapp:hover{
  background:var(--green-dark);
  border-color:var(--green-dark);
  color:#fff;
  box-shadow:0 18px 34px rgba(37,211,102,.28);
}

/* SLIDER */
.slider-wrap{
  background:var(--navy);
  overflow:hidden;
}
.slider{
  position:relative;
  width:100%;
  height:620px;
  background:var(--navy);
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .7s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--navy);
}
.slide.active{
  opacity:1;
  z-index:2;
}
.slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:var(--navy);
}
.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  font-size:22px;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.slider-arrow.prev{left:18px}
.slider-arrow.next{right:18px}
.slider-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}
.slider-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}
.slider-dot.active{background:var(--orange)}

/* QUICK STRIP */
.quick-strip{
  margin-top:28px;
  position:relative;
  z-index:10;
}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.quick-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px 20px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  min-width:0;
}
.quick-icon{
  min-width:58px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:24px;
  font-weight:700;
  flex-shrink:0;
}
.quick-blue{background:#173d82}
.quick-cyan{background:#2f8fc2}
.quick-green{background:#43a455}
.quick-orange{background:#ea8d1b}
.quick-card strong{
  display:block;
  font-size:21px;
  line-height:1.2;
  margin-bottom:6px;
  color:var(--navy);
}
.quick-card p{
  color:var(--muted);
  font-size:14px;
}

/* SECTIONS */
.section{padding:86px 0}
.section-soft{background:var(--soft)}
.eyebrow{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:700;
  font-size:13px;
  margin-bottom:10px;
  display:inline-block;
}
.section-title{
  font-size:52px;
  line-height:1.08;
  color:var(--navy);
  margin-bottom:16px;
  word-break:break-word;
}
.section-desc{
  font-size:19px;
  color:var(--muted);
  max-width:860px;
}
.grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-pad{padding:28px}
.content-block p{
  margin-bottom:16px;
  color:#33425d;
  font-size:17px;
}

/* HIGHLIGHT */
.highlight-figure{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  min-height:420px;
  height:420px;
  background:#eef3f8;
}
.highlight-figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.figure-badge{
  position:absolute;
  right:18px;
  bottom:18px;
  width:118px;
  min-height:118px;
  background:rgba(11,33,70,.95);
  color:#fff;
  border-radius:22px;
  padding:14px 10px;
  text-align:center;
  z-index:4;
  box-shadow:0 16px 32px rgba(11,33,70,.26);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.figure-badge strong{
  display:block;
  font-size:46px;
  line-height:1;
  margin-bottom:6px;
}
.figure-badge span{
  display:block;
  font-size:16px;
  line-height:1.15;
}

.feature-mini-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:24px;
}
.feature-mini{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background:#fff;
}
.feature-mini strong{
  display:block;
  color:var(--navy);
  margin-bottom:6px;
  font-size:15px;
}
.feature-mini p{
  color:var(--muted);
  font-size:13px;
  margin:0;
}

/* CALC */
.calc-switch{
  max-width:520px;
  margin:0 auto 22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px;
  display:flex;
  gap:8px;
  box-shadow:var(--shadow);
}
.calc-tab{
  flex:1;
  min-height:54px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:var(--navy);
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}
.calc-tab.active{
  background:linear-gradient(135deg,var(--turquoise),var(--turquoise-dark));
  color:#fff;
}
.calc-card{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}
.calc-panel{display:none}
.calc-panel.active{display:block}
.calc-panel h3{
  color:var(--navy);
  font-size:38px;
  margin-bottom:10px;
}
.calc-note{
  color:var(--muted);
  max-width:760px;
  margin:0 auto 18px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.calc-grid-three{grid-template-columns:repeat(3,1fr)}
.single-input-wrap{
  max-width:320px;
  margin:14px auto 0;
}
.calc-action{
  margin-top:18px;
  text-align:center;
}
.calc-result{
  margin-top:24px;
  padding:18px 20px;
  border-radius:18px;
  background:#f7fbff;
  border:1px solid #dfe8f4;
  text-align:left;
  display:none;
  overflow-wrap:anywhere;
}
.calc-result.show{display:block}

.suggest-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:26px;
}
.suggest-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px;
}
.suggest-card h4{
  color:var(--navy);
  font-size:20px;
  line-height:1.2;
  margin-bottom:10px;
}
.suggest-card p{
  color:var(--muted);
  font-size:15px;
}

/* RECOMMEND */
.recommend-wrap{
  margin-top:34px;
  text-align:left;
}
.recommend-title{
  color:var(--navy);
  font-size:34px;
  margin-bottom:18px;
}
.recommend-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.recommend-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:24px;
  min-width:0;
}
.recommend-card h4{
  font-size:32px;
  color:#1aa39c;
  margin-bottom:8px;
  line-height:1.1;
}
.recommend-subtitle{
  font-size:13px;
  font-weight:700;
  color:#92a0b8;
  text-transform:uppercase;
  margin-bottom:18px;
}
.recommend-option{
  border:1px solid #e7edf5;
  border-radius:16px;
  padding:16px;
  background:#fbfdff;
  margin-bottom:14px;
}
.recommend-option:last-child{margin-bottom:0}
.main-option{
  background:#f7fbff;
  border-color:#dce8f7;
}
.recommend-option-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  flex-wrap:wrap;
}
.recommend-option-badge{
  background:#eef6ff;
  color:var(--navy);
  border-radius:10px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
}
.recommend-badge{
  background:#fff3e8;
  color:#df7e17;
  border-radius:10px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
}
.recommend-list{
  display:grid;
  gap:10px;
}
.recommend-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:10px;
  border-bottom:1px dashed #e6ebf2;
}
.recommend-row:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.recommend-label{
  color:#49566e;
  font-size:15px;
}
.recommend-value{
  color:var(--navy);
  font-size:15px;
  font-weight:700;
  text-align:right;
  word-break:break-word;
}

/* PRODUCTS */
.cards-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:28px;
}
.product-card{
  overflow:hidden;
}
.product-card img{
  width:100%;
  height:260px;
  object-fit:contain;
  object-position:center;
  background:#f4f7fb;
  padding:14px;
  border-top-left-radius:22px;
  border-top-right-radius:22px;
}
.product-body{padding:24px}
.product-body h3{
  color:var(--navy);
  font-size:30px;
  line-height:1.15;
  margin-bottom:12px;
}
.product-body p{color:var(--muted)}

/* FAQ */
.faq-list{
  display:grid;
  gap:16px;
  margin-top:20px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}
.faq-question{
  width:100%;
  border:none;
  background:#fff;
  color:var(--navy);
  font-weight:700;
  font-size:18px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  cursor:pointer;
  text-align:left;
}
.faq-icon{
  flex-shrink:0;
  font-size:28px;
  line-height:1;
  color:var(--navy-2);
  transition:.2s ease;
}
.faq-answer{
  display:none;
  padding:0 22px 22px;
}
.faq-answer p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}
.faq-item.active .faq-answer{display:block}
.faq-item.active .faq-icon{transform:rotate(45deg)}

/* CTA */
.cta-band{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
}
.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}

/* PAGE HERO */
.page-hero{
  padding:40px 0 18px;
}
.breadcrumb{
  color:#55627a;
  font-size:15px;
  margin-bottom:8px;
}
.page-title{
  font-size:54px;
  line-height:1.05;
  color:var(--navy);
  margin-bottom:10px;
}
.page-subtitle{
  font-size:18px;
  color:var(--muted);
  max-width:780px;
}

/* BLOG */
.blog-hero-strong{
  padding-bottom:8px;
  background:
    radial-gradient(circle at top right, rgba(243,154,30,.08), transparent 28%),
    linear-gradient(180deg,#ffffff 0%, #fbfcff 100%);
  border-bottom:1px solid rgba(11,33,70,.05);
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  padding:34px 0 24px;
}
.blog-grid-strong{
  align-items:stretch;
}
.blog-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(11,33,70,.08);
  border-radius:24px;
  box-shadow:
    0 14px 34px rgba(11,33,70,.07),
    0 4px 10px rgba(11,33,70,.04);
  overflow:hidden;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.blog-card:hover{
  transform:translateY(-8px);
  border-color:rgba(243,154,30,.22);
  box-shadow:
    0 28px 60px rgba(11,33,70,.12),
    0 10px 20px rgba(11,33,70,.06);
}
.blog-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  object-position:center;
  background:#eef3f8;
  transition:transform .45s ease;
}
.blog-card:hover img{
  transform:scale(1.035);
}
.blog-card-body{
  padding:24px 24px 26px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  height:100%;
}
.blog-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:max-content;
  align-self:flex-start;
  white-space:nowrap;
  min-height:32px;
  padding:6px 14px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(243,154,30,.13),rgba(243,154,30,.08));
  color:var(--orange);
  border:1px solid rgba(243,154,30,.12);
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
  margin-bottom:14px;
}
.blog-card h3{
  font-size:31px;
  line-height:1.16;
  color:var(--navy);
  margin-bottom:14px;
  letter-spacing:-.2px;
}
.blog-card p{
  color:var(--muted);
  font-size:16px;
  line-height:1.86;
  margin-bottom:22px;
}
.blog-read{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-weight:700;
  font-size:15px;
  padding:10px 0 0;
  position:relative;
  transition:color .25s ease, transform .25s ease;
}
.blog-read::after{
  content:"";
  width:0;
  height:2px;
  background:var(--orange);
  position:absolute;
  left:0;
  bottom:-2px;
  transition:width .25s ease;
}
.blog-read:hover{
  color:var(--orange);
  transform:translateX(4px);
}
.blog-read:hover::after{
  width:100%;
}

/* BLOG DETAIL */
.blog-detail-card{
  overflow:hidden;
  border:1px solid rgba(11,33,70,.08);
  box-shadow:
    0 18px 42px rgba(11,33,70,.08),
    0 5px 12px rgba(11,33,70,.04);
}
.blog-detail-image-wrap{
  background:linear-gradient(180deg,#f7f9fc 0%, #f2f6fb 100%);
  padding:24px;
  border-bottom:1px solid var(--line);
}
.blog-detail-image-wrap img{
  width:100%;
  max-height:760px;
  object-fit:contain;
  object-position:center;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(11,33,70,.08);
}
.blog-detail-body{
  padding:38px;
}
.blog-detail-content p{
  color:#33425d;
  font-size:18px;
  line-height:1.95;
  margin-bottom:20px;
}
.blog-detail-content h2,
.blog-detail-content h3{
  color:var(--navy);
  line-height:1.2;
  margin:28px 0 12px;
}
.blog-detail-content ul{
  margin:0 0 18px 20px;
  color:#33425d;
}
.blog-detail-content li{
  margin-bottom:8px;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  margin-top:26px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:28px;
}
.contact-card h3{
  font-size:34px;
  color:var(--navy);
  margin-bottom:14px;
}
.contact-info p{
  margin-bottom:10px;
  color:#33425d;
  font-size:17px;
}
.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.map-frame{
  margin-top:24px;
  width:100%;
  height:390px;
  border:0;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.form-grid .full{grid-column:1 / -1}
input,select,textarea{
  width:100%;
  border:1px solid #d7dde8;
  border-radius:14px;
  padding:14px 16px;
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:var(--orange)}
textarea{min-height:150px;resize:vertical}

/* ABOUT GALLERY */
.about-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}
.about-gallery-card{
  overflow:hidden;
}
.about-gallery-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  background:#eef3f8;
}
.about-gallery-body{
  padding:22px;
}
.about-gallery-body h3{
  color:var(--navy);
  font-size:28px;
  line-height:1.15;
  margin-bottom:10px;
}
.about-gallery-body p{
  color:var(--muted);
  font-size:16px;
}

/* FOOTER */
.site-footer{
  background:#041632;
  color:#d8e3f3;
  padding:46px 0 40px;
  margin-top:70px;
}
.footer-top-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:32px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-col strong{
  display:block;
  color:#fff;
  margin-bottom:14px;
  font-size:22px;
}
.footer-col p{
  color:#d8e3f3;
  font-size:16px;
  line-height:1.7;
  margin-bottom:8px;
}
.footer-socials{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-socials a{
  display:inline-flex;
  align-items:center;
  color:#d8e3f3;
  font-size:16px;
  transition:.25s ease;
}
.footer-socials a:hover{
  color:var(--orange);
  transform:translateX(4px);
}
.footer-bottom-box{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:28px;
  align-items:center;
  margin-top:28px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:24px;
}
.footer-mini-title{
  display:inline-block;
  color:var(--orange);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}
.footer-map-content h3{
  color:#fff;
  font-size:34px;
  line-height:1.15;
  margin-bottom:12px;
}
.footer-map-content p{
  color:#d8e3f3;
  font-size:16px;
  line-height:1.8;
  margin:0;
}
.footer-map-wrap{
  width:100%;
  min-height:280px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 34px rgba(0,0,0,.18);
  background:#0b2146;
}
.footer-map-wrap iframe{
  width:100%;
  height:100%;
  min-height:280px;
  border:0;
  display:block;
}

/* TABLET */
@media (max-width:1100px){
  .quick-grid,
  .feature-mini-grid,
  .suggest-grid,
  .recommend-grid,
  .cards-2,
  .grid-2,
  .blog-grid,
  .contact-grid,
  .cta-band,
  .about-gallery,
  .footer-top-grid,
  .footer-bottom-box{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .section-title,
  .page-title{
    font-size:42px;
  }

  .slider{
    height:520px;
  }

  .quick-card strong{
    font-size:19px;
  }
}

/* MOBILE */
@media (max-width:860px){
  .container{
    width:min(94%, var(--container));
  }

  .navbar{
    min-height:auto;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:14px 0;
  }

  .brand img{
    height:46px;
  }

  .desktop-menu{
    width:100%;
    justify-content:flex-start;
    gap:8px;
  }

  .nav-link,
  .nav-cta{
    font-size:14px;
    padding:10px 13px;
  }

  .slider{
    height:260px;
  }

  .slide img{
    object-fit:cover;
  }

  .slider-arrow{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .slider-arrow.prev{left:10px}
  .slider-arrow.next{right:10px}

  .quick-strip{
    margin-top:20px;
  }

  .quick-grid,
  .feature-mini-grid,
  .suggest-grid,
  .recommend-grid,
  .cards-2,
  .grid-2,
  .blog-grid,
  .form-grid,
  .calc-grid-three,
  .about-gallery{
    grid-template-columns:1fr;
  }

  .quick-card{
    padding:18px 16px;
  }

  .quick-card strong{
    font-size:18px;
  }

  .quick-icon{
    min-width:50px;
    width:50px;
    height:50px;
    font-size:20px;
  }

  .section{
    padding:56px 0;
  }

  .section-title,
  .page-title{
    font-size:32px;
    line-height:1.14;
  }

  .section-desc,
  .page-subtitle{
    font-size:16px;
    line-height:1.75;
  }

  .content-block p{
    font-size:16px;
    line-height:1.85;
  }

  .highlight-figure{
    min-height:300px;
    height:300px;
  }

  .figure-badge{
    right:12px;
    bottom:12px;
    width:96px;
    min-height:96px;
    padding:12px 8px;
    border-radius:18px;
  }

  .figure-badge strong{
    font-size:34px;
    margin-bottom:4px;
  }

  .figure-badge span{
    font-size:13px;
    line-height:1.1;
  }

  .calc-switch{
    flex-direction:column;
    border-radius:20px;
  }

  .calc-tab,
  .calc-tab.active{
    border-radius:14px;
    min-height:48px;
  }

  .calc-card{
    text-align:left;
  }

  .calc-card.card-pad{
    padding:18px;
  }

  .calc-panel h3{
    font-size:26px;
    line-height:1.25;
  }

  .calc-note{
    font-size:15px;
    line-height:1.75;
  }

  .single-input-wrap{
    max-width:none;
  }

  .recommend-title{
    font-size:28px;
    line-height:1.2;
  }

  .recommend-card{
    padding:18px;
  }

  .recommend-card h4{
    font-size:26px;
  }

  .recommend-row{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .recommend-value{
    text-align:left;
  }

  .product-card img{
    height:220px;
  }

  .product-body{
    padding:20px;
  }

  .product-body h3{
    font-size:24px;
  }

  .faq-question{
    font-size:16px;
    padding:18px;
  }

  .faq-answer{
    padding:0 18px 18px;
  }

  .blog-grid{
    gap:22px;
    padding:26px 0 18px;
  }

  .blog-card img{
    height:220px;
  }

  .blog-card-body{
    padding:20px 20px 22px;
  }

  .blog-card h3{
    font-size:25px;
  }

  .blog-card p{
    font-size:15px;
    line-height:1.8;
  }

  .blog-detail-body{
    padding:24px;
  }

  .blog-detail-content p{
    font-size:17px;
    line-height:1.82;
  }

  .contact-card{
    padding:20px;
  }

  .contact-card h3{
    font-size:28px;
  }

  .map-frame{
    height:280px;
  }

  .footer-top-grid{
    gap:22px;
    padding-bottom:22px;
  }

  .footer-bottom-box{
    gap:20px;
    padding:18px;
  }

  .footer-map-content h3{
    font-size:28px;
  }

  .footer-map-wrap,
  .footer-map-wrap iframe{
    min-height:240px;
  }

  .btn{
    width:100%;
    min-height:48px;
  }
}

/* SMALL MOBILE */
@media (max-width:560px){
  .container{
    width:94%;
  }

  .navbar{
    gap:12px;
  }

  .desktop-menu{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    width:100%;
  }

  .nav-link,
  .nav-cta{
    justify-content:center;
    text-align:center;
    width:100%;
    margin-left:0;
  }

  .slider{
    height:220px;
  }

  .slider-dots{
    bottom:12px;
  }

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

  .quick-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .calc-panel h3{
    font-size:23px;
  }

  .recommend-title{
    font-size:24px;
  }

  .blog-card h3{
    font-size:22px;
  }

  .product-body h3{
    font-size:22px;
  }

  .footer-col strong{
    font-size:20px;
  }

  .footer-map-content h3{
    font-size:24px;
  }
}