/* Start custom CSS for html, class: .elementor-element-c3f0f3a */:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --surface-accent: #edf6ff;
  --text: #17324d;
  --muted: #62758a;
  --line: #d9e6f2;
  --primary: #0e65af;
  --primary-2: #338df1;
  --accent: #ff8a3d;
  --shadow: 0 18px 45px rgba(13, 44, 76, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(51,141,241,0.09), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #f5f8fc 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid rgba(217, 230, 242, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.main-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 500;
}
.main-nav a:hover,
.footer-links a:hover,
.text-link:hover { color: var(--primary); }
.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 101, 175, 0.22);
}
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--primary);
}
.btn-ghost {
  background: rgba(255,255,255,0.75);
  border-color: var(--line);
  color: var(--text);
}
.btn-block { width: 100%; }
.btn-light {
  background: white;
  color: var(--primary);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.hero {
  padding: 48px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--primary);
  font-weight: 700;
  font-size: .88rem;
}
.section-tag.light {
  background: rgba(255,255,255,0.16);
  color: #d8ecff;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}
.hero-points span {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.hero-side-cards {
  display: grid;
  gap: 16px;
}
.hero-card,
.info-card,
.product-card,
.material-card,
.benefit-box,
.shop-box,
.faq-list details {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(217,230,242,0.95);
  box-shadow: var(--shadow);
}
.hero-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}
.placeholder-image {
  min-height: 160px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(14,101,175,0.08), rgba(51,141,241,0.16)),
    linear-gradient(180deg, #f6fbff, #e8f1fb);
  border: 1px dashed rgba(14,101,175,0.2);
  display: grid;
  place-items: center;
  text-align: center;
  color: #5a7390;
  font-weight: 600;
  padding: 22px;
}
.placeholder-image.large { min-height: 440px; }
.small-card .placeholder-image { min-height: 212px; }

.trust-strip {
  padding: 10px 0 8px;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-items div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.section { padding: 78px 0; }
.section.alt { background: linear-gradient(180deg, rgba(237,246,255,0.6), rgba(245,248,252,0.35)); }
.two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}
.section h2 {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}
.info-card {
  border-radius: var(--radius-xl);
  padding: 24px 28px;
}
.info-card ul,
.product-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.section-head {
  margin-bottom: 34px;
}
.center { text-align: center; }
.section-head p { max-width: 760px; margin: 0 auto; }
.cards-3,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.product-card,
.material-card,
.benefit-box {
  border-radius: var(--radius-xl);
  padding: 22px;
}
.product-card.featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(237,246,255,0.95));
  transform: translateY(-8px);
}
.card-image,
.material-image { min-height: 230px; margin-bottom: 18px; }
.product-card h3,
.material-card h3,
.benefit-box h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.product-card p,
.material-card p,
.benefit-box p { margin-bottom: 14px; }
.text-link {
  color: var(--primary);
  font-weight: 700;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.color-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(13,44,76,0.05);
}
.color-card strong,
.color-card small {
  display: block;
}
.color-card small {
  margin-top: 6px;
  color: var(--muted);
}
.swatch {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}
.blue { background: linear-gradient(135deg, #2f8df0, #0e65af); }
.pink { background: linear-gradient(135deg, #ff8db3, #ec5f8e); }
.mint { background: linear-gradient(135deg, #8fe6d2, #47c9ae); }
.orange { background: linear-gradient(135deg, #ffbd86, #ff8a3d); }
.graphite { background: linear-gradient(135deg, #9aa9b8, #57687a); }

.shop-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.shop-links {
  display: grid;
  gap: 12px;
}
.shop-links a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--primary);
}

.narrow { max-width: 860px; }
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border-radius: 20px;
  padding: 0 22px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p {
  padding: 0 0 22px;
}

.cta-section {
  padding: 36px 0 84px;
}
.cta-box {
  background: linear-gradient(135deg, #0e65af, #338df1);
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
  box-shadow: 0 24px 55px rgba(14, 101, 175, 0.25);
}
.cta-box h2 { margin: 16px 0 0; line-height: 1.15; }
.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 0 0 36px;
}
.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .cta-box,
  .shop-box {
    grid-template-columns: 1fr;
  }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-side-cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3,
  .benefits-grid,
  .trust-items,
  .color-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cards-2,
  .cards-3,
  .benefits-grid,
  .color-grid,
  .trust-items,
  .hero-side-cards {
    grid-template-columns: 1fr;
  }
  .cta-actions { justify-content: flex-start; }
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero { padding-top: 28px; }
  .hero h1 { font-size: 2.1rem; }
  .placeholder-image.large,
  .small-card .placeholder-image,
  .card-image,
  .material-image { min-height: 180px; }
  .btn { width: 100%; }
  .header-actions,
  .hero-actions,
  .cta-actions { width: 100%; }
}/* End custom CSS */