 
    .service-section {
      scroll-margin-top: 90px; 
      padding: 3.5rem 0;
      border-bottom: 1px solid var(--brand-border);
    }
    .service-section:last-of-type { border-bottom: none; }

    .service-header {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .service-icon-lg {
      width: 68px;
      height: 68px;
      background: var(--brand-accent-mid);
      border: 2px solid rgba(46,196,182,0.25);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      flex-shrink: 0;
    }

    .service-title-group h2 { margin-bottom: 0.2rem; }

    .services-jump-nav {
      background: var(--brand-card-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.75rem;
      margin-bottom: 2.5rem;
      box-shadow: var(--shadow-sm);
    }

    .services-jump-nav h3 {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand-text-subtle);
      margin-bottom: 1rem;
    }

    .jump-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .jump-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-primary);
      background: var(--brand-page-bg);
      border: 1px solid var(--brand-border);
      padding: 0.45rem 1rem;
      border-radius: 999px;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
      text-decoration: none;
    }

    .jump-link:hover {
      background: var(--brand-accent-mid);
      color: var(--brand-accent);
      border-color: var(--brand-accent);
    }

    .tip-box {
      background: var(--brand-accent-light);
      border-left: 4px solid var(--brand-accent);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 1rem 1.25rem;
      margin: 1.5rem 0;
      font-size: 0.9rem;
      color: var(--brand-text);
    }

    .tip-box strong { color: var(--brand-accent); }

.error-page {
      min-height: calc(100vh - 72px - 200px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 1.5rem;
      background: var(--brand-page-bg);
    }

    .error-inner {
      max-width: 680px;
      width: 100%;
      text-align: center;
    }

    .error-graphic {
      position: relative;
      display: inline-block;
      margin-bottom: 2.5rem;
    }

    .error-code {
      font-family: var(--font-heading);
      font-size: clamp(5rem, 16vw, 10rem);
      font-weight: 800;
      line-height: 1;
      color: var(--brand-primary);
      letter-spacing: -0.04em;
      position: relative;
      display: block;
    }

    .error-code span {
      color: var(--brand-accent);
    }

    .error-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(2rem, 6vw, 4rem);
      opacity: 0.12;
      pointer-events: none;
      user-select: none;
    }

    .error-accent-line {
      width: 60px;
      height: 4px;
      background: var(--brand-accent);
      border-radius: 4px;
      margin: 0 auto 1.5rem;
    }

    .error-title {
      font-family: var(--font-heading);
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--brand-primary);
      margin-bottom: 1rem;
    }

    .error-message {
      font-size: 1rem;
      color: var(--brand-text-subtle);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .error-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3.5rem;
    }

    .error-suggestions {
      background: var(--brand-card-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      padding: 2rem 2.25rem;
      text-align: left;
      box-shadow: var(--shadow-sm);
    }

    .error-suggestions h3 {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand-text-subtle);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .error-suggestions h3::before {
      content: '';
      display: block;
      width: 16px;
      height: 2px;
      background: var(--brand-accent);
      border-radius: 2px;
    }

    .suggestion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.75rem;
    }

    .suggestion-link {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand-primary);
      background: var(--brand-page-bg);
      border: 1px solid var(--brand-border);
      padding: 0.7rem 1rem;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    }

    .suggestion-link:hover {
      background: var(--brand-accent-mid);
      color: var(--brand-accent);
      border-color: var(--brand-accent);
      transform: translateY(-2px);
    }

    .suggestion-link .link-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }

    .error-graphic { animation: float 4s ease-in-out infinite; }

    @media (max-width: 480px) {
      .error-actions { flex-direction: column; align-items: center; }
      .error-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    } 


    .carousel-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: var(--brand-primary);
      box-shadow: var(--shadow-lg);
    }

    
    .carousel-track {
      display: flex;
      transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
      will-change: transform;
    }

    
    .carousel-slide {
      flex: 0 0 100%;
      width: 100%;
      position: relative;
      aspect-ratio: 16 / 7;
      overflow: hidden;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 8s ease;
    }

    
    .carousel-slide.is-active img {
      transform: scale(1.04);
    }

    
    .carousel-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(27, 44, 65, 0.72) 0%,
        rgba(27, 44, 65, 0.18) 45%,
        transparent 100%
      );
      pointer-events: none;
    }

    
    .slide-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 2rem 2.5rem;
      transform: translateY(6px);
      opacity: 0;
      transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    }

    .carousel-slide.is-active .slide-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-caption-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-accent);
      background: rgba(46, 196, 182, 0.15);
      border: 1px solid rgba(46, 196, 182, 0.35);
      padding: 0.2rem 0.75rem;
      border-radius: 999px;
      margin-bottom: 0.5rem;
    }

    .slide-caption h3 {
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: #fff;
      font-weight: 700;
      margin: 0;
      line-height: 1.25;
    }

    
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), border-color var(--transition),
                  transform var(--transition);
      padding: 0;
    }

    .carousel-btn:hover {
      background: var(--brand-accent);
      border-color: var(--brand-accent);
      transform: translateY(-50%) scale(1.08);
    }

    .carousel-btn svg { width: 20px; height: 20px; }
    .carousel-btn-prev { left: 1.25rem; }
    .carousel-btn-next { right: 1.25rem; }

    
    .carousel-dots {
      position: absolute;
      bottom: 1.5rem;
      right: 2.5rem;
      z-index: 10;
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background var(--transition), transform var(--transition), width var(--transition);
    }

    .carousel-dot.is-active {
      background: var(--brand-accent);
      width: 24px;
      border-radius: 4px;
    }

    
    .carousel-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--brand-accent);
      border-radius: 0;
      width: 0%;
      z-index: 10;
      transition: width linear;
    }

    
    .carousel-status {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 10;
      background: rgba(27, 44, 65, 0.6);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 999px;
      padding: 0.3rem 0.75rem;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .carousel-status.visible { opacity: 1; }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-accent);
      flex-shrink: 0;
    }

    .status-dot.paused { background: #f0a500; }

    
    .slide-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
    }

    .slide-placeholder-1 { background: linear-gradient(135deg, #1b2c41 0%, #264761 50%, #1e3a52 100%); }
    .slide-placeholder-2 { background: linear-gradient(135deg, #1a3a2a 0%, #1e5c3a 50%, #226644 100%); }
    .slide-placeholder-3 { background: linear-gradient(135deg, #2c1b41 0%, #3d2660 50%, #4a2e72 100%); }
    .slide-placeholder-4 { background: linear-gradient(135deg, #41281b 0%, #6b3e1e 50%, #7a4820 100%); }

    @media (max-width: 768px) {
      .carousel-slide { aspect-ratio: 4 / 3; }
      .slide-caption  { padding: 1.25rem 1.5rem; }
      .carousel-btn   { width: 38px; height: 38px; }
      .carousel-dots  { right: 1.5rem; }
      .carousel-status { top: 0.75rem; right: 0.75rem; }
    }

    @media (max-width: 480px) {
      .carousel-slide { aspect-ratio: 1 / 1; }
      .carousel-btn-prev { left: 0.75rem; }
      .carousel-btn-next { right: 0.75rem; }
    }



.contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.75rem;
      margin-bottom: 2.5rem;
    }

    .contact-card {
      background: var(--brand-card-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      padding: 2rem 1.75rem;
      text-align: center;
      transition: box-shadow var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }

    .contact-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--brand-accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .contact-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .contact-card:hover::after { transform: scaleX(1); }

    .contact-card-icon {
      width: 64px;
      height: 64px;
      background: var(--brand-accent-mid);
      border: 2px solid rgba(46,196,182,0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      margin: 0 auto 1.25rem;
    }

    .contact-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .contact-card p {
      font-size: 0.9rem;
      color: var(--brand-text-subtle);
      margin-bottom: 1.25rem;
    }

    .contact-card .badge {
      font-size: 0.75rem;
      padding: 0.3rem 0.85rem;
    }

    
    .response-banner {
      background: var(--brand-accent-light);
      border: 1px solid rgba(46,196,182,0.25);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .response-banner-icon {
      font-size: 1.75rem;
      flex-shrink: 0;
    }

    .response-banner p { margin: 0; font-size: 0.9rem; color: var(--brand-text); }
    .response-banner strong { color: var(--brand-accent); }

    
    .faq-list { margin-top: 0.5rem; }

    .faq-item {
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-sm);
      margin-bottom: 0.6rem;
      overflow: hidden;
      transition: box-shadow var(--transition);
    }

    .faq-item:hover { box-shadow: var(--shadow-sm); }

    .faq-question {
      width: 100%;
      background: var(--brand-card-bg);
      border: none;
      text-align: left;
      padding: 1rem 1.25rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand-primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: background var(--transition), color var(--transition);
    }

    .faq-question:hover { background: var(--brand-page-bg); color: var(--brand-accent); }
    .faq-question[aria-expanded="true"] { background: var(--brand-accent-mid); color: var(--brand-accent); }

    .faq-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      transition: transform var(--transition);
    }

    .faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding var(--transition);
      background: var(--brand-card-bg);
    }

    .faq-answer.open { max-height: 300px; }

    .faq-answer-inner {
      padding: 0 1.25rem 1.1rem;
      font-size: 0.875rem;
      color: var(--brand-text-subtle);
      line-height: 1.7;
      border-top: 1px solid var(--brand-border);
      padding-top: 0.85rem;
    }

    
    .social-row {
      display: flex;
      gap: 0.85rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .social-card {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--brand-card-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-sm);
      padding: 0.6rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-primary);
      text-decoration: none;
      transition: background var(--transition), color var(--transition),
                  border-color var(--transition), transform var(--transition);
    }

    .social-card:hover {
      background: var(--brand-accent-mid);
      color: var(--brand-accent);
      border-color: var(--brand-accent);
      transform: translateY(-2px);
    }

    .social-card-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--brand-page-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    @media (max-width: 640px) {
      .contact-grid { grid-template-columns: 1fr; }
      .response-banner { flex-direction: column; text-align: center; }
    }


.post-wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 3rem 1.5rem 5rem;
    }
    .post-wrap h1 {
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      line-height: 1.2;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--brand-border);
    }
    .post-wrap h2 {
      font-size: 1.4rem;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      color: var(--brand-primary);
      border-left: 4px solid var(--brand-accent);
      padding-left: 0.85rem;
      line-height: 1.3;
    }
    .post-wrap p {
      font-size: 1.05rem;
      line-height: 1.85;
      margin-bottom: 1.4rem;
      color: var(--brand-text);
    }
    .post-wrap ol {
      list-style: decimal;
      padding-left: 1.5rem;
      margin-bottom: 1.4rem;
    }
    .post-wrap ol li {
      padding: 0.3rem 0;
      font-size: 1rem;
      color: var(--brand-text);
      line-height: 1.7;
    }

:root {
  --brand-primary:   #1b2c41;
  --brand-accent:    #2ec4b6;
  --brand-accent-light: #e8faf8;
  --brand-accent-mid:   rgba(46, 196, 182, 0.15);
  --brand-text:      #1b2c41;
  --brand-text-subtle: #5a6a7e;
  --brand-text-light:  #8fa0b4;
  --brand-bg:        #ffffff;
  --brand-page-bg:   #f4f7fa;
  --brand-border:    #dce5ef;
  --brand-card-bg:   #ffffff;
  --font-heading:    'Outfit', 'Inter', sans-serif;
  --font-body:       'Inter', 'Segoe UI', sans-serif;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --shadow-sm:       0 2px 8px rgba(27, 44, 65, 0.07);
  --shadow-md:       0 6px 24px rgba(27, 44, 65, 0.10);
  --shadow-lg:       0 16px 48px rgba(27, 44, 65, 0.14);
  --transition:      0.3s ease;
  --max-width:       1280px;
  --sidebar-width:   300px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--brand-page-bg);
  color: var(--brand-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--brand-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary); }
ul, ol { list-style: circle; }

::selection { background: var(--brand-accent); color: #fff; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p { margin-bottom: 1rem; color: var(--brand-text); }
p:last-child { margin-bottom: 0; }

strong  { font-weight: 700; color: var(--brand-primary); }
em      { font-style: italic; }
small   { font-size: 0.82rem; color: var(--brand-text-subtle); }

.text-accent    { color: var(--brand-accent); }
.text-primary   { color: var(--brand-primary); }
.text-subtle    { color: var(--brand-text-subtle); }
.text-center    { text-align: center; }
.text-right     { text-align: right; }
.text-left      { text-align: left; }
.text-sm        { font-size: 0.875rem; }
.text-lg        { font-size: 1.125rem; }
.text-xl        { font-size: 1.25rem; }
.lead           { font-size: 1.125rem; color: var(--brand-text-subtle); line-height: 1.8; }
.section-label  {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-area {
  flex: 1;
  padding: 3rem 0;
}


.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 2.5rem;
  align-items: start;
}

.layout-sidebar-left {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.main-content { min-width: 0; }
.sidebar      { min-width: 0; }


.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }


.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-gap    { display: flex; gap: 1rem; flex-wrap: wrap; }
.flex-col    { display: flex; flex-direction: column; }


.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1  { padding: 0.5rem; }
.p-2  { padding: 1rem; }
.p-3  { padding: 1.5rem; }
.p-4  { padding: 2rem; }

.section        { padding: 5rem 0; }
.section-sm     { padding: 3rem 0; }
.section-lg     { padding: 7rem 0; }
.section-alt    { background-color: var(--brand-page-bg); }
.section-white  { background-color: var(--brand-bg); }
.section-dark   { background-color: var(--brand-primary); color: #fff; }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }

.divider {
  border: none;
  border-top: 1px solid var(--brand-border);
  margin: 2rem 0;
}

.divider-accent {
  border: none;
  border-top: 2px solid var(--brand-accent);
  width: 48px;
  margin: 1rem 0 1.5rem;
}


.site-header {
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
 object-fit: cover;
  max-height: 69px;
  width: 555px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.2;
}

.logo-text span { color: var(--brand-accent); }


.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 2px;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-accent);
  background: var(--brand-accent-mid);
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: translateX(-50%) scaleX(1); }


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.hero {
  background: var(--brand-primary);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(46,196,182,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(46,196,182,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46,196,182,0.15);
  border: 1px solid rgba(46,196,182,0.3);
  color: var(--brand-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--brand-accent); }

.hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}
.btn-primary:hover {
  background: #25a99d;
  border-color: #25a99d;
  color: #fff;
  box-shadow: 0 6px 20px rgba(46,196,182,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-secondary:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brand-accent);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--brand-primary); transform: translateX(4px); }

.btn-sm  { font-size: 0.8rem; padding: 0.5rem 1.1rem; }
.btn-lg  { font-size: 1rem;   padding: 0.9rem 2.2rem; }
.btn-full { width: 100%; justify-content: center; }


.card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-body   { padding: 1.5rem; }
.card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--brand-border); }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--brand-border); background: var(--brand-page-bg); }

.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--brand-text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.card-text { font-size: 0.9rem; color: var(--brand-text-subtle); }


.feature-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-accent);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-accent-mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}


.widget {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--brand-accent);
  background: var(--brand-page-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-body { padding: 1.25rem; }


.recent-post-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--brand-border);
  align-items: flex-start;
}

.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-item:first-child { padding-top: 0; }

.recent-post-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-accent-mid);
}

.recent-post-info {}

.recent-post-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  transition: color var(--transition);
}

.recent-post-title:hover { color: var(--brand-accent); }

.recent-post-date {
  font-size: 0.73rem;
  color: var(--brand-text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}


.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--brand-text-subtle);
  background: var(--brand-page-bg);
  border: 1px solid var(--brand-border);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.tag:hover {
  background: var(--brand-accent-mid);
  color: var(--brand-accent);
  border-color: var(--brand-accent);
}


.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--brand-border);
  font-size: 0.875rem;
}

.category-list li:last-child { border-bottom: none; }

.category-list a { color: var(--brand-text); font-weight: 500; }
.category-list a:hover { color: var(--brand-accent); }

.category-count {
  font-size: 0.72rem;
  color: var(--brand-bg);
  background: var(--brand-accent);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}




.section-heading {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-heading.centered { margin: 0 auto 3rem; text-align: center; }


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}


.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-strip img,
.intro-strip .intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.intro-visual-placeholder {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #264761 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.intro-visual-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(46,196,182,0.25) 0%, transparent 60%);
}


.check-list { margin-top: 1.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--brand-text);
}

.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}


.testimonial-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brand-accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--brand-text-subtle);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-primary);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--brand-text-light);
}


.cta-banner {
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(46,196,182,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: #fff; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.72); position: relative; z-index: 1; margin-bottom: 2rem; }
.cta-banner .btn { position: relative; z-index: 1; }


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--brand-text-subtle);
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--brand-text-subtle); }
.breadcrumb a:hover { color: var(--brand-accent); }
.breadcrumb .sep { color: var(--brand-border); }
.breadcrumb .current { color: var(--brand-primary); font-weight: 500; }


.pagination {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-text);
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}


.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--brand-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brand-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}

textarea { min-height: 120px; resize: vertical; }

.input-group {
  display: flex;
  gap: 0;
}

.input-group input {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  flex: 1;
}

.input-group .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  flex-shrink: 0;
}


.newsletter-box {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #264761 100%);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
}

.newsletter-box h4 { color: #fff; margin-bottom: 0.5rem; }
.newsletter-box p  { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1.25rem; }


.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.badge-accent  { background: var(--brand-accent-mid); color: var(--brand-accent); border: 1px solid rgba(46,196,182,0.3); }
.badge-primary { background: rgba(27,44,65,0.08); color: var(--brand-primary); }
.badge-light   { background: var(--brand-page-bg); color: var(--brand-text-subtle); border: 1px solid var(--brand-border); }
.badge-success { background: #e8faf0; color: #1a7f4f; }
.badge-warning { background: #fef9e8; color: #9a6d00; }


.page-hero {
  background: var(--brand-primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(46,196,182,0.15) 0%, transparent 70%);
}

.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero .lead { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.page-hero .breadcrumb { position: relative; z-index: 1; }
.page-hero .breadcrumb,
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.9); }


.site-footer {
  background: var(--brand-primary);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--brand-accent); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--brand-accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--brand-accent); }

.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}


.footer-widget-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-recent-post {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.footer-recent-post:first-child { padding-top: 0; }

.footer-rp-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.footer-rp-title:hover { color: var(--brand-accent); }

.footer-rp-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}


.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden  { display: none !important; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded    { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.no-shadow { box-shadow: none; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.sticky { position: sticky; top: 1.5rem; }

.bg-white    { background: var(--brand-bg); }
.bg-light    { background: var(--brand-page-bg); }
.bg-primary  { background: var(--brand-primary); }
.bg-accent   { background: var(--brand-accent); }
.bg-accent-light { background: var(--brand-accent-light); }

.border  { border: 1px solid var(--brand-border); }
.border-top    { border-top: 1px solid var(--brand-border); }
.border-bottom { border-bottom: 1px solid var(--brand-border); }
.border-accent { border-color: var(--brand-accent); }

.w-full { width: 100%; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 860px; }

.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }
.object-cover  { object-fit: cover; }

.list-styled { list-style: disc; padding-left: 1.5rem; }
.list-styled li { margin-bottom: 0.4rem; color: var(--brand-text-subtle); font-size: 0.9rem; }


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 900px) {
  .layout-sidebar,
  .layout-sidebar-left { grid-template-columns: 1fr; }
  .intro-strip { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --sidebar-width: 100%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--brand-bg);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--brand-border);
    box-shadow: var(--shadow-md);
    gap: 0.15rem;
    z-index: 999;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.65rem 0.75rem; width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 4rem 0; }
  .intro-strip { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-number { font-size: 1.5rem; }
}


.bimg{
--w:100%;
--h:240px;
--bg1:#f2f2f2;
--bg2:#e1e1e1;
--bg3:#ededed;
--line:rgba(0,0,0,.06);
--text-color:rgba(0,0,0,.55);
--text-size:22px;
position:relative;
width:var(--w);
height:var(--h);
overflow:hidden;
border-radius:10px;
background:linear-gradient(130deg,var(--bg1),var(--bg2),var(--bg3),var(--bg1));
background-size:300% 300%;
animation:bimg-bg 7s ease-in-out infinite
}
.bimg img{display:none}
.bimg::before{
content:'';
position:absolute;
inset:-50%;
background:repeating-linear-gradient(135deg,transparent 0,transparent 22px,var(--line) 23px,transparent 26px);
animation:bimg-lines 17s linear infinite
}
.bimg::after{
content:attr(data-text);
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
font-family:"Spectral SC",serif;
font-style:italic;
font-weight:400;
font-size:var(--text-size);
background:linear-gradient(180deg,rgba(255,255,255,.85),var(--text-color));
-webkit-background-clip:text;
background-clip:text;
color:transparent;
text-shadow:0 1px 2px rgba(0,0,0,.25),0 0 12px rgba(255,255,255,.15);
animation:bimg-text 7s ease-in-out infinite
}
.bimg:hover,
.bimg:hover::before,
.bimg:hover::after{animation-play-state:paused}
@keyframes bimg-bg{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes bimg-lines{
from{transform:translate(0,0)}
to{transform:translate(80px,80px)}
}
@keyframes bimg-text{
0%,100%{transform:translateY(0);opacity:.75}
50%{transform:translateY(-6px);opacity:1}
}

/* <div class="bimg" data-text="Text" style="--w:100%; --h:280px; --bg1:#151515; --bg2:#1f1f1f; --bg3:#2a2a2a; --line:rgba(255,255,255,.06); --text-color:rgba(255,255,255,.45); --text-size:32px;">
  <img />
</div> */
