:root {
    --white-pure: #ffffff;
    --white-soft: #f9fbfd;
    --white-milk: #f3f6f9;
    --gray-light: #e6ebf0;
    --gray-soft: #dce2e8;
    --blue-ice: #dfefff;
    --blue-glass: #c9e4ff;
    --blue-sky: #eaf4ff;
    --text-main: #1f2a37;
    --text-secondary: #5b6b7c;
    --text-light: #8fa1b3;
    --gradient-section-1: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    --gradient-section-2: linear-gradient(180deg, #f9fbfd 0%, #eaf2fa 100%);
    --gradient-section-3: linear-gradient(135deg, #ffffff 0%, #eef4fa 50%, #ffffff 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(230,240,250,0.9));
    --gradient-card-hover: linear-gradient(145deg, rgba(255,255,255,1), rgba(200,230,255,0.95));
    --glass-border: rgba(255,255,255,0.6);
    --glass-shadow: 0 20px 50px rgba(31,42,55,0.08);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    color: var(--text-main);
    background: var(--white-pure);
    line-height: 1.6;
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white-pure);
    box-shadow: var(--glass-shadow);
  }

  .header-top {
    background: var(--gradient-section-1);
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
    max-height: 70px;
    opacity: 1;
    transition:
      max-height 0.42s var(--ease-smooth),
      opacity    0.30s ease,
      padding    0.42s var(--ease-smooth),
      border-color 0.30s ease;
  }

  .header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
  }

  .header.scrolled .header-top {
    max-height: 0;
    opacity: 0;
    border-color: transparent;
    pointer-events: none;
  }
  .header.scrolled .header-bottom {
    box-shadow: 0 4px 24px rgba(31,42,55,0.14);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-icon-wrap {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(59,130,246,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
  }
  .logo:hover .logo-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 22px rgba(59,130,246,0.5);
  }
  .logo-icon-wrap i {
    color: #fff;
    font-size: 1.05rem;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
  }
  .logo-name .accent { color: #3b82f6; }
  .logo-tagline {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .header-info-item .info-icon {
    width: 28px; height: 28px;
    background: var(--blue-ice);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .header-info-item .info-icon i {
    color: #3b82f6;
    font-size: .75rem;
  }
  .header-info-item .info-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
  }
  .header-info-item .info-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
  }

  .header-info-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-light);
    flex-shrink: 0;
  }

  .header-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .social-links { display: flex; gap: 6px; }

  .social-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--gray-light);
    color: var(--text-secondary);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    text-decoration: none;
  }
  .social-icon:hover { transform: translateY(-2px) scale(1.1); }
  .social-icon.tg:hover  { background: #0088cc; color: #fff; }
  .social-icon.wa:hover  { background: #25D366; color: #fff; }
  .social-icon.ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
  .social-icon.vb:hover  { background: #7360F2; color: #fff; }

  .phone-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.25s;
  }
  .phone-link:hover { color: #3b82f6; }
  .phone-link .ph-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .phone-link .ph-icon i { color: #fff; font-size: 0.72rem; }

  .btn-glass {
    background: linear-gradient(145deg,#ffffff,#e8f2ff);
    border: 1.5px solid #d0e0f0;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.28s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .btn-glass i { color: #3b82f6; font-size: 1.05rem; }
  .btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(59,130,246,0.18);
    border-color: #aaccee;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .menu-toggle:hover { background: var(--blue-ice); }
  .menu-toggle span {
    width: 24px; height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
  }

  .header-bottom {
    background: var(--white-soft);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    transition:
      box-shadow 0.4s ease,
      background 0.4s ease;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .main-nav a i { font-size: 1.1em; opacity: 0.7; }
  .main-nav a:hover { color: var(--text-main); }
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    border-radius: 1px;
    transition: width 0.3s;
  }
  .main-nav a:hover::after { width: 100%; }

  .mobile-menu {
    position: fixed; inset: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
  }
  .mobile-menu.active { transform: translateX(0); }

  .mobile-menu-inner {
    padding: 20px 20px 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .mobile-logo .logo-icon-wrap {
    width: 36px; height: 36px;
    background: linear-gradient(135deg,#3b82f6,#1d4ed8);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 10px rgba(59,130,246,0.35);
  }
  .mobile-logo .logo-icon-wrap i { color: #fff; font-size: 0.9rem; }
  .mobile-logo .logo-name {
    font-size: 1.1rem; font-weight: 800; color: var(--text-main);
  }
  .mobile-logo .logo-name .accent { color: #3b82f6; }

  .close-menu {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--gray-light);
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    line-height: 1;
  }
  .close-menu:hover { background: #fde8e8; color: #dc2626; }

  .mobile-info-block {
    background: var(--gradient-section-2);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
  }
  .mobile-info-row i { color: #3b82f6; margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }

  .mobile-phone-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
  }
  .mobile-phone-row .ph-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-phone-row .ph-icon i { color: #fff; font-size: 0.85rem; }
  .mobile-phone-row a {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
  }
  .mobile-phone-row a:hover { color: #3b82f6; }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.25s;
    box-shadow: 0 6px 18px rgba(59,130,246,0.35);
  }
  .mobile-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(59,130,246,0.45); }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: auto;
  }
  .mobile-nav a {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
  }
  .mobile-nav a:hover { background: var(--blue-ice); color: #2563eb; }
  .mobile-nav a i { width: 18px; text-align: center; color: #3b82f6; font-size: 0.95rem; }

  .mobile-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
  }
  .mobile-social-row .social-icon {
    width: 44px; height: 44px;
    font-size: 1.15rem;
    border-radius: 11px;
  }

  .hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
      #f0f7ff 0%, #e6f0ff 25%, #d9eaff 50%, #cce4ff 75%, #f0f7ff 100%);
    background-size: 200% 200%;
    animation: gradientFlow 18s ease infinite;
  }

  @keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,0.58),
      rgba(223,239,255,0.45),
      rgba(201,228,255,0.35),
      rgba(255,255,255,0.52));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 1;
  }

  .hero > .container { position: relative; z-index: 2; }

  .hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .hero-ring {
    border-radius: 50%;
    border: 1.5px solid rgba(59,130,246,0.13);
    animation: rotateSlow linear infinite;
  }
  .hero-ring-1 {
    width: 380px; height: 380px;
    top: -120px; right: -80px;
    animation-duration: 35s;
  }
  .hero-ring-2 {
    width: 220px; height: 220px;
    top: -60px; right: -20px;
    border-color: rgba(59,130,246,0.08);
    animation-duration: 20s;
    animation-direction: reverse;
  }
  .hero-ring-3 {
    width: 160px; height: 160px;
    bottom: 18%; left: -50px;
    border-color: rgba(99,179,237,0.1);
    animation-duration: 25s;
  }
  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  .hero-panel {
    background: rgba(255,255,255,0.28);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    animation: floatPanel ease-in-out infinite;
  }
  .hero-panel::before,
  .hero-panel::after {
    content: '';
    position: absolute;
    background: rgba(59,130,246,0.08);
  }
  .hero-panel::before {
    width: 1.5px; height: 100%;
    left: 50%; transform: translateX(-50%);
  }
  .hero-panel::after {
    height: 1.5px; width: 100%;
    top: 50%; transform: translateY(-50%);
  }
  .hero-panel-1 {
    width: 70px; height: 88px;
    top: 18%; right: 6%;
    animation-duration: 7s; animation-delay: 0s;
    opacity: 0.8;
  }
  .hero-panel-2 {
    width: 50px; height: 64px;
    top: 58%; right: 9%;
    animation-duration: 9s; animation-delay: -3.5s;
    opacity: 0.55;
  }
  .hero-panel-3 {
    width: 60px; height: 76px;
    top: 32%; left: 2.5%;
    animation-duration: 8s; animation-delay: -5s;
    opacity: 0.4;
  }
  .hero-panel-4 {
    width: 42px; height: 54px;
    bottom: 24%; left: 10%;
    animation-duration: 10s; animation-delay: -1.5s;
    opacity: 0.35;
  }
  @keyframes floatPanel {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-14px) rotate(1deg); }
    66% { transform: translateY(-7px) rotate(-0.5deg); }
  }

  .hero-dot {
    border-radius: 50%;
    animation: floatDot ease-in-out infinite;
  }
  .hero-dot-1 {
    width: 14px; height: 14px;
    background: rgba(59,130,246,0.25);
    top: 24%; right: 22%;
    animation-duration: 5.5s; animation-delay: -1s;
  }
  .hero-dot-2 {
    width: 9px; height: 9px;
    background: rgba(147,197,253,0.35);
    top: 52%; left: 14%;
    animation-duration: 6.5s; animation-delay: -3.5s;
  }
  .hero-dot-3 {
    width: 18px; height: 18px;
    background: rgba(99,179,237,0.18);
    bottom: 30%; right: 28%;
    animation-duration: 7s; animation-delay: -2s;
  }
  .hero-dot-4 {
    width: 11px; height: 11px;
    background: rgba(59,130,246,0.2);
    top: 70%; right: 15%;
    animation-duration: 8s; animation-delay: -4s;
  }
  @keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.1); }
  }

  .hero-cross {
    position: absolute;
    width: 26px; height: 26px;
    animation: floatDot ease-in-out infinite;
  }
  .hero-cross::before,
  .hero-cross::after {
    content: '';
    position: absolute;
    background: rgba(59,130,246,0.22);
    border-radius: 2px;
  }
  .hero-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
  .hero-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
  .hero-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
  .hero-cross-2 { bottom: 22%; right: 11%; animation-duration: 6s; animation-delay: -4s; opacity: 0.6; }

  .hero-title {
    font-size: clamp(1.65rem, 5.2vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    text-align: left;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #93c5fd, #60a5fa, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.15s forwards;
  }

  .hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
  }

  .hero-content { max-width: 640px; }

  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.65;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.35s forwards;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
  }

  .btn {
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.28s;
    border: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .btn i { font-size: 0.88em; }

  .btn-accent {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 6px 20px rgba(59,130,246,0.38);
  }
  .btn-accent:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(59,130,246,0.48);
  }

  .btn-white {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid #d0d8e8;
    color: var(--text-main);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
  }
  .btn-white:hover {
    background: white;
    border-color: #b0c8e8;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  }

  .btn-secondary {
    background: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(59,130,246,0.28);
    color: #2563eb;
    backdrop-filter: blur(10px);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.85);
    border-color: #3b82f6;
    transform: translateY(-2px);
  }

  .trust-badge {
    font-size: .88rem;
    color: #059669;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.65s forwards;
    line-height: 1.5;
  }
  .trust-badge i { font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

  .hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 0.9s ease 0.4s forwards;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(31,42,55,0.2);
    object-fit: cover;
    display: block;
  }

  .hero-img-badge {
    position: absolute;
    bottom: -18px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 14px 42px rgba(31,42,55,0.16);
    display: flex;
    align-items: center;
    gap: 11px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.95s forwards;
    white-space: nowrap;
  }
  .hero-img-badge .badge-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-img-badge .badge-icon i { color: #2563eb; font-size: 1.15rem; }
  .hero-img-badge .badge-text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 2px;
  }
  .hero-img-badge .badge-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
  }

  .hero-img-badge-2 {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg,#3b82f6,#2563eb);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 10px 30px rgba(59,130,246,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 1.05s forwards;
    white-space: nowrap;
  }
  .hero-img-badge-2 i { color: rgba(255,255,255,0.9); font-size: 1rem; }
  .hero-img-badge-2 span {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(201,228,255,0.3);
    border: 1px solid rgba(201,228,255,0.55);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
  }

  .stat-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.55);
    border-right: 1px solid rgba(201,228,255,0.4);
    transition: background 0.3s;
    cursor: default;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: rgba(255,255,255,0.82); }

  .stat-cell-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .stat-cell:hover .stat-cell-icon { transform: scale(1.08) rotate(-4deg); }
  .stat-cell-icon i { color: #2563eb; font-size: 1rem; }

  .stat-cell-body {}
  .stat-cell-value {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 2px;
    line-height: 1;
  }
  .stat-number {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
  }
  .stat-suf {
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
    margin-left: 1px;
  }
  .stat-lbl {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
  }

  .offer-cards-wrapper {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
  }

  .offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .offer-card {
    background: rgba(255,255,255,0.72);
    border: 1.5px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 8px 28px rgba(31,42,55,0.07);
    backdrop-filter: blur(12px);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-main);
    transition: all 0.32s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .offer-card-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s;
  }
  .offer-card:hover .offer-card-icon { transform: scale(1.1) rotate(-5deg); }
  .offer-card-icon i { color: #2563eb; font-size: 0.88rem; }
  .offer-card strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
    font-size: 1.15rem;
  }
  .offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(31,42,55,0.13);
    background: rgba(255,255,255,0.92);
    border-color: rgba(201,228,255,0.8);
  }

  .hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 1.3s forwards;
  }
  .hero-scroll-hint span {
    font-size: 1.05rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .hero-scroll-hint .scroll-arrow {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(59,130,246,0.25);
    display: flex; align-items: center; justify-content: center;
    animation: bounceDown 1.8s ease infinite;
  }
  .hero-scroll-hint .scroll-arrow i { color: #3b82f6; font-size: 0.75rem; }
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  @media (max-width: 1280px) {
    .header-info-item.hide-xl { display: none; }
    .header-info-divider.hide-xl { display: none; }
    .hero-main { gap: 40px; }
  }

  @media (max-width: 1100px) {
    .header-info { gap: 12px; }
    .btn-glass .btn-glass-text { display: none; }
  }

  @media (max-width: 1024px) {
    .header-info { display: none; }
    .hero-main { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero-img-badge { left: 12px; }
    .hero-img-badge-2 { right: 12px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(1),
    .stat-cell:nth-child(2) {
      border-bottom: 1px solid rgba(201,228,255,0.4);
    }
  }

  @media (max-width: 991px) {
    .hero { padding-top: 100px; padding-bottom: 80px; }
    .header-top-right > *:not(.menu-toggle) { display: none; }
    .menu-toggle { display: flex; }
    .header-bottom { display: none; }
    .offer-cards { grid-template-columns: repeat(2, 1fr); }
    .hero-panel-3, .hero-panel-4 { display: none; }
    .hero-cross-1 { display: none; }
  }

  @media (max-width: 768px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-img-badge-2 { display: none; }
    .hero-ring-1 { width: 260px; height: 260px; }
    .hero-panel-2 { display: none; }
  }

  @media (max-width: 640px) {
    .container { padding: 0 16px; }
    .hero { padding-top: 88px; padding-bottom: 64px; }
    .hero-title { font-size: clamp(1.5rem, 6.5vw, 2.5rem); }
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: 12px 20px; font-size: 0.92rem; gap: 6px; }
    .hero-buttons { gap: 9px; }
    .offer-cards { grid-template-columns: 1fr; }
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-cell { padding: 14px 14px; gap: 9px; }
    .stat-cell-icon { width: 34px; height: 34px; }
    .stat-number { font-size: 1.3rem; }
    .stat-lbl { font-size: 0.7rem; }
    .hero-img-badge { left: 10px; padding: 10px 14px; }
    .hero-img-badge .badge-icon { width: 36px; height: 36px; }
    .offer-card { padding: 16px 18px; }
    .hero-main { margin-bottom: 32px; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(1.35rem, 6vw, 2rem); }
    .btn-secondary { display: none; }
    .hero-img-badge { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; margin-bottom: 28px; }
    .stat-cell { padding: 13px 11px; gap: 8px; }
    .stat-number { font-size: 1.15rem; }
    .hero-scroll-hint { display: none; }
  }

  @media (max-width: 380px) {
    .container { padding: 0 12px; }
    .hero { padding-top: 80px; }
    .hero-title { font-size: 1.3rem; line-height: 1.15; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.2rem; }
    .btn { padding: 11px 16px; font-size: 0.88rem; }
    .hero-buttons { flex-direction: column; gap: 8px; }
    .btn { width: 100%; justify-content: center; }
    .stat-cell { padding: 11px 9px; gap: 7px; }
    .stat-cell-icon { width: 30px; height: 30px; }
    .stat-cell-icon i { font-size: 1.05rem; }
    .stat-number { font-size: 1.05rem; }
    .stat-suf { font-size: 0.88rem; }
    .stat-lbl { font-size: 0.67rem; }
    .offer-card { gap: 10px; }
    .offer-card-icon { width: 30px; height: 30px; }
    .trust-badge { font-size: 1.05rem; }
  }
  
  
  
  
  
  
  

.services-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 5%  8%,  rgba(255,236,194,0.60) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 95% 88%, rgba(207,234,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 110%,rgba(219,240,255,0.40) 0%, transparent 65%),
    linear-gradient(155deg,
      #fffcf7 0%,
      #fdf4e8 28%,
      #f5f8ff 60%,
      #f8fbff 100%);

  background-size: 200% 200%;
  animation: svcGradFlow 22s ease infinite;
}

@keyframes svcGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.services-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 160%;
  top: -30%; left: 30%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,220,130,0.11) 40%,
    rgba(255,235,170,0.18) 50%,
    rgba(255,220,130,0.11) 60%,
    transparent
  );
  transform: rotate(-26deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.services-section .container { position: relative; z-index: 2; }

/* ── Декоративные орбы ── */
.svc-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.svc-orb-1 {
  width: 500px; height: 500px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(186,226,255,0.32) 0%, transparent 65%);
}
.svc-orb-2 {
  width: 380px; height: 380px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,230,170,0.45) 0%, transparent 65%);
}
.svc-orb-3 {
  width: 240px; height: 240px;
  top: 38%; left: 46%;
  background: radial-gradient(circle, rgba(255,243,199,0.38) 0%, transparent 60%);
}

.svc-heading {
  text-align: center;
  margin-bottom: 72px;
}
.svc-heading .svc-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b45309;
  background: rgba(180,83,9,0.07);
  border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.svc-heading .svc-label i { font-size: 0.8em; }

.svc-heading h2 {
  font-size: clamp(1.9rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-main, #1f2a37);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.svc-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 2px 12px rgba(31,42,55,0.05),
    0 8px 32px rgba(31,42,55,0.06);
  transition: all 0.48s var(--ease-spring);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #f59e0b, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.svc-card:hover::before { opacity: 1; }

.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 28% 50%,
    rgba(59,130,246,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.svc-card:hover::after { opacity: 1; }

.svc-card:hover {
  background: rgba(255,255,255,0.94);
  border-color: rgba(59,130,246,0.18);
  transform: translateY(-6px);
  box-shadow:
    0 20px 56px rgba(31,42,55,0.11),
    0 0 0 1px rgba(59,130,246,0.09);
}

.svc-card--featured {
  grid-column: span 2;
}

.svc-card-img {
  flex: 0 0 200px;
  position: relative;
  overflow: hidden;
}
.svc-card--featured .svc-card-img {
  flex: 0 0 340px;
}
.svc-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.93) saturate(0.88);
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.05);
}
.svc-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 42%, rgba(255,253,248,0.55) 100%);
  z-index: 1;
}
.svc-card--featured .svc-card-img::after {
  background: linear-gradient(90deg, transparent 55%, rgba(255,253,248,0.52) 100%);
}

.svc-card-body {
  flex: 1;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.svc-card--featured .svc-card-body {
  padding: 34px 40px;
}

.svc-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(59,130,246,0.065);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s;
}
.svc-card:hover .svc-card-num { color: rgba(59,130,246,0.10); }
.svc-card--featured .svc-card-num { font-size: 5.5rem; top: 22px; right: 28px; }

.svc-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.svc-card:hover .svc-card-title { color: #1a2f4a; }
.svc-card--featured .svc-card-title { font-size: 1.5rem; margin-bottom: 10px; }

.svc-card-desc {
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.svc-card--featured .svc-card-desc { font-size: 1.05rem; }

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9px;
  border: 1.5px solid rgba(59,130,246,0.25);
  background: rgba(59,130,246,0.06);
  color: #2563eb;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
}
.svc-btn i { font-size: 0.75em; transition: transform 0.3s; }
.svc-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: translateX(2px);
  box-shadow: 0 6px 18px rgba(59,130,246,0.28);
}
.svc-btn:hover i { transform: translateX(3px); }
.svc-card--featured .svc-btn { padding: 12px 24px; font-size: 0.9rem; border-radius: 11px; }

.svc-reveal {

/*   opacity: 0; */
  transform: translateY(0) scale(1);
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.svc-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1200px) {
  .svc-card--featured .svc-card-img { flex: 0 0 270px; }
  .svc-card-img { flex: 0 0 175px; }
}

@media (max-width: 1024px) {
  .services-section { padding: 100px 0 120px; }
  .svc-card-img { flex: 0 0 150px; }
  .svc-card--featured .svc-card-img { flex: 0 0 220px; }
  .svc-card-body { padding: 20px 22px; }
  .svc-card--featured .svc-card-body { padding: 28px 30px; }
  .svc-card-title { font-size: 1.15rem; }
  .svc-card--featured .svc-card-title { font-size: 1.28rem; }
  .svc-card-num { font-size: 3.2rem; }
  .svc-card--featured .svc-card-num { font-size: 4.5rem; }
  .svc-cm-tl,.svc-cm-tr,.svc-cm-bl,.svc-cm-br { display: none; }
}

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; }
  .svc-card-img { flex: 0 0 165px; }
  .svc-card--featured .svc-card-img { flex: 0 0 185px; }
  .svc-card--featured .svc-card-title { font-size: 1.18rem; }
  .svc-heading h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .svc-orb-3 { display: none; }
}

@media (max-width: 640px) {
  .services-section { padding: 80px 0 90px; }
  .svc-heading { margin-bottom: 48px; }
  .svc-grid { gap: 12px; }

  .svc-card,
  .svc-card--featured { flex-direction: column; }

  .svc-card-img,
  .svc-card--featured .svc-card-img {
    flex: 0 0 185px;
    width: 100%;
  }
  .svc-card-img::after,
  .svc-card--featured .svc-card-img::after {
    background: linear-gradient(180deg, transparent 50%, rgba(255,253,248,0.75) 100%);
  }
  .svc-card-body,
  .svc-card--featured .svc-card-body { padding: 20px 20px; }
  .svc-card-num,
  .svc-card--featured .svc-card-num { font-size: 2.8rem; top: 12px; right: 14px; }
  .svc-card--featured .svc-card-title { font-size: 1.08rem; }
  .svc-orb-1 { width: 280px; height: 280px; }
  .svc-orb-2 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .services-section { padding: 70px 0 80px; }
  .svc-card-img,
  .svc-card--featured .svc-card-img { flex: 0 0 165px; }
  .svc-card-body,
  .svc-card--featured .svc-card-body { padding: 18px 16px; }
  .svc-card-title,
  .svc-card--featured .svc-card-title { font-size: 1.15rem; }
  .svc-card-desc,
  .svc-card--featured .svc-card-desc { font-size: 1.05rem; }
  .svc-btn,
  .svc-card--featured .svc-btn { padding: 8px 15px; font-size: 0.8rem; }
  .svc-card-num,
  .svc-card--featured .svc-card-num { font-size: 2.4rem; }
}

@media (max-width: 380px) {
  .services-section { padding: 60px 0 70px; }
  .svc-grid { gap: 10px; }
  .svc-card-img,
  .svc-card--featured .svc-card-img { flex: 0 0 148px; }
  .svc-card-body,
  .svc-card--featured .svc-card-body { padding: 16px 14px; }
  .svc-card-title,
  .svc-card--featured .svc-card-title { font-size: 0.93rem; margin-bottom: 5px; }
  .svc-card-desc,
  .svc-card--featured .svc-card-desc { font-size: 0.8rem; margin-bottom: 12px; }
  .svc-btn,
  .svc-card--featured .svc-btn { padding: 7px 13px; font-size: 0.77rem; }
  .svc-card-num,
  .svc-card--featured .svc-card-num { font-size: 2rem; }
  .svc-heading h2 { font-size: 1.55rem; }
  .svc-heading .svc-label { font-size: 0.65rem; }
}













.veranda-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 0%   15%, rgba(186,230,255,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 100% 80%, rgba(165,214,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 50%  -5%, rgba(224,242,254,0.50) 0%, transparent 65%),
    linear-gradient(155deg,
      #e8f5ff 0%,
      #dff0ff 28%,
      #eaf6ff 55%,
      #f0f9ff 80%,
      #e4f2fe 100%);

  background-size: 200% 200%;
  animation: verandaGradFlow 20s ease infinite;
}

@keyframes verandaGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.veranda-section::after {
  content: "";
  position: absolute;
  width: 180px; height: 160%;
  top: -30%; right: 22%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,210,255,0.14) 40%,
    rgba(186,230,255,0.22) 50%,
    rgba(147,210,255,0.14) 60%,
    transparent
  );
  transform: rotate(20deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.veranda-section .container { position: relative; z-index: 2; }

.vnd-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.vnd-orb-1 {
  width: 460px; height: 460px;
  top: -130px; left: -110px;
  background: radial-gradient(circle, rgba(147,197,253,0.28) 0%, transparent 65%);
}
.vnd-orb-2 {
  width: 380px; height: 380px;
  bottom: -90px; right: -90px;
  background: radial-gradient(circle, rgba(186,230,255,0.35) 0%, transparent 65%);
}
.vnd-orb-3 {
  width: 200px; height: 200px;
  top: 42%; right: 10%;
  background: radial-gradient(circle, rgba(224,242,254,0.45) 0%, transparent 60%);
}

.vnd-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.1);
  pointer-events: none;
  z-index: 0;
  animation: vndRingSpin linear infinite;
}
.vnd-ring-1 {
  width: 340px; height: 340px;
  top: -90px; right: -60px;
  animation-duration: 38s;
}
.vnd-ring-2 {
  width: 180px; height: 180px;
  bottom: 10%; left: 5%;
  border-color: rgba(59,130,246,0.07);
  animation-duration: 25s;
  animation-direction: reverse;
}
@keyframes vndRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vnd-panel {
  position: absolute;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
  animation: vndFloat ease-in-out infinite;
}
.vnd-panel::before,
.vnd-panel::after {
  content: '';
  position: absolute;
  background: rgba(59,130,246,0.07);
}
.vnd-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.vnd-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.vnd-panel-1 { width: 60px; height: 76px; top: 20%; left: 4%; animation-duration: 8s; animation-delay: 0s; opacity: 0.6; }
.vnd-panel-2 { width: 44px; height: 56px; bottom: 26%; right: 5%; animation-duration: 10s; animation-delay: -4s; opacity: 0.45; }
@keyframes vndFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-12px) rotate(1deg); }
  70%       { transform: translateY(-6px) rotate(-0.5deg); }
}

.vnd-heading {
  text-align: center;
  margin-bottom: 64px;
}
.vnd-heading .vnd-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.vnd-heading .vnd-label i { font-size: 0.8em; }

.vnd-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main, #1f2a37);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.vnd-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vnd-heading .vnd-sub {
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.6;
}
.vnd-heading .vnd-sub span {
  display: inline-block;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 6px;
  padding: 1px 8px;
  margin: 2px 2px;
  font-size: 0.92em;
  color: #2563eb;
  font-weight: 600;
}

.vnd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.vnd-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
  transition: all 0.48s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.vnd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.vnd-card:hover::before { opacity: 1; }

.vnd-card:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(59,130,246,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(31,42,55,0.13), 0 0 0 1px rgba(59,130,246,0.1);
}

.vnd-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.vnd-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(0.92) saturate(0.9);
}
.vnd-card:hover .vnd-card-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}

.vnd-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vnd-card-badge i { font-size: 0.78em; color: #3b82f6; }

.vnd-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vnd-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.vnd-card:hover .vnd-card-title { color: #1a2f4a; }

.vnd-card-desc {
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.vnd-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vnd-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c);
}
.vnd-card-feature i {
  color: #3b82f6;
  font-size: 1.05rem;
  width: 14px;
  flex-shrink: 0;
}

.vnd-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 4px 28px rgba(31,42,55,0.07);
}

.vnd-cta-text {
  flex: 1;
  min-width: 260px;
}
.vnd-cta-text strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 4px;
  line-height: 1.3;
}
.vnd-cta-text span {
  font-size: 0.9rem;
  color: var(--text-secondary, #5b6b7c);
}

.vnd-cta-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.vnd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.vnd-btn i { font-size: 0.85em; }

.vnd-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}
.vnd-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.45);
}

.vnd-btn-outline {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(59,130,246,0.28);
  color: #2563eb;
  backdrop-filter: blur(8px);
}
.vnd-btn-outline:hover {
  background: rgba(255,255,255,0.95);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.15);
}

.vnd-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
/*   opacity: 0;
  transform: translateY(44px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.vnd-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


@media (max-width: 1100px) {
  .vnd-grid { gap: 16px; }
  .vnd-card-img { height: 195px; }
  .vnd-cta { padding: 28px 32px; }
}

@media (max-width: 900px) {
  .veranda-section { padding: 100px 0 120px; }
  .vnd-grid { grid-template-columns: repeat(2, 1fr); }
  .vnd-cta { flex-direction: column; align-items: stretch; gap: 24px; }
  .vnd-cta-text { min-width: unset; }
  .vnd-cta-btns {
    flex-direction: row;      
    justify-content: center;
    gap: 14px;
  }
  .vnd-ring-1, .vnd-panel-1 { display: none; }
}

@media (max-width: 640px) {
  .veranda-section { padding: 80px 0 90px; }
  .vnd-heading { margin-bottom: 44px; }
  .vnd-grid { grid-template-columns: 1fr; gap: 14px; }
  .vnd-card-img { height: 210px; }
  .vnd-card-body { padding: 20px 20px 22px; }
  .vnd-card-title { font-size: 1rem; }
  .vnd-cta { padding: 24px 22px; border-radius: 16px; }
  .vnd-cta-btns {
    flex-direction: column;     
    justify-content: stretch;
    gap: 10px;
  }
  
  .vnd-btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 0.88rem; width: 100%;}
  .vnd-orb-1 { width: 260px; height: 260px; }
  .vnd-orb-2 { width: 200px; height: 200px; }
  .vnd-orb-3 { display: none; }
  .vnd-panel-2 { display: none; }
}

@media (max-width: 480px) {
  .veranda-section { padding: 70px 0 80px; }
  .vnd-card-img { height: 185px; }
  .vnd-card-body { padding: 18px 18px 20px; }
  .vnd-card-title { font-size: 0.97rem; }
  .vnd-card-desc { font-size: 0.83rem; }
  .vnd-card-feature { font-size: 1.05rem; }
  .vnd-cta-text strong { font-size: 1.05rem; }
  .vnd-cta-text span { font-size: 0.85rem; }
  .vnd-btn { padding: 11px 14px; font-size: 0.85rem; }
  .vnd-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .veranda-section { padding: 60px 0 70px; }
  .vnd-card-img { height: 165px; }
  .vnd-card-body { padding: 16px 16px 18px; }
  .vnd-card-title { font-size: 0.93rem; }
  .vnd-card-desc { font-size: 0.8rem; margin-bottom: 10px; }
  .vnd-card-feature { font-size: 0.76rem; }
  .vnd-card-features { gap: 4px; }
  .vnd-cta { padding: 20px 18px; gap: 18px; }
  .vnd-cta-text strong { font-size: 1.15rem; }
  .vnd-btn { padding: 10px 12px; font-size: 1.05rem; gap: 6px; }
  .vnd-btn i { display: none; }
  .vnd-heading h2 { font-size: 1.5rem; }
  .vnd-heading .vnd-label { font-size: 0.65rem; }
  .vnd-heading .vnd-sub { font-size: 0.88rem; }
}











.terrace-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 5%  10%, rgba(255,236,194,0.62) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 96% 88%, rgba(207,234,255,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 75% 40% at 50% 105%,rgba(219,240,255,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 80%  5%, rgba(255,248,200,0.45) 0%, transparent 55%),
    linear-gradient(158deg,
      #fffcf7 0%,
      #fdf4e8 25%,
      #f6f9ff 58%,
      #f9fbff 100%);

  background-size: 200% 200%;
  animation: terrGradFlow 22s ease infinite;
}

@keyframes terrGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.terrace-section::before {
  content: "";
  position: absolute;
  width: 220px; height: 170%;
  top: -35%; left: 55%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,215,100,0.10) 35%,
    rgba(255,230,140,0.18) 50%,
    rgba(255,215,100,0.10) 65%,
    transparent
  );
  transform: rotate(-22deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
}

.terrace-section::after {
  content: "";
  position: absolute;
  width: 160px; height: 140%;
  top: -20%; right: 18%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,210,255,0.09) 40%,
    rgba(186,230,255,0.15) 50%,
    rgba(147,210,255,0.09) 60%,
    transparent
  );
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.terrace-section .container { position: relative; z-index: 2; }

.terr-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.terr-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -120px;
  background: radial-gradient(circle, rgba(186,226,255,0.28) 0%, transparent 65%);
}
.terr-orb-2 {
  width: 400px; height: 400px;
  bottom: -110px; left: -110px;
  background: radial-gradient(circle, rgba(255,228,160,0.42) 0%, transparent 65%);
}
.terr-orb-3 {
  width: 260px; height: 260px;
  top: 35%; left: 44%;
  background: radial-gradient(circle, rgba(255,243,199,0.38) 0%, transparent 60%);
}
.terr-orb-4 {
  width: 180px; height: 180px;
  top: 12%; right: 28%;
  background: radial-gradient(circle, rgba(255,248,200,0.35) 0%, transparent 60%);
}

.terr-heading {
  text-align: center;
  margin-bottom: 64px;
}
.terr-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b45309;
  background: rgba(180,83,9,0.07);
  border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.terr-label i { font-size: 0.8em; }

.terr-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main, #1f2a37);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.terr-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.terr-heading .terr-sub {
  font-size: 1rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.6;
}
.terr-heading .terr-sub span {
  display: inline-block;
  background: rgba(180,83,9,0.06);
  border: 1px solid rgba(180,83,9,0.14);
  border-radius: 6px;
  padding: 1px 8px;
  margin: 2px 2px;
  font-size: 0.91em;
  color: #92400e;
  font-weight: 600;
}

.terr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.terr-left {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(31,42,55,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px;
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.terr-left:hover {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 52px rgba(31,42,55,0.12);
  transform: translateY(-4px);
}

.terr-left-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.terr-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.terr-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.terr-option:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(59,130,246,0.15);
  transform: translateX(4px);
}

.terr-option-img {
  flex: 0 0 100px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.terr-option-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.terr-option:hover .terr-option-img img { transform: scale(1.08); }

.terr-option-body { flex: 1; min-width: 0; }
.terr-option-body strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 5px;
}
.terr-option-body p {
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.5;
  margin: 0;
}
.terr-option-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.terr-option-tag.pvh  { color: #1d4ed8; background: rgba(59,130,246,0.1);  border: 1px solid rgba(59,130,246,0.2); }
.terr-option-tag.alu  { color: #374151; background: rgba(107,114,128,0.09); border: 1px solid rgba(107,114,128,0.18); }
.terr-option-tag.slid { color: #065f46; background: rgba(16,185,129,0.09);  border: 1px solid rgba(16,185,129,0.18); }

.terr-right { display: flex; flex-direction: column; }

.terr-right-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: -0.01em;
}

.terr-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.terr-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(31,42,55,0.1);
  background: rgba(255,255,255,0.5);
}
.terr-mosaic-item img {
  width: 100%; height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: brightness(0.93) saturate(0.9);
}
.terr-mosaic-item:hover img {
  transform: scale(1.09);
  filter: brightness(1) saturate(1.05);
}
.terr-mosaic-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,30,45,0.72), transparent);
  color: white;
  padding: 18px 12px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}

.terr-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
}

.terr-cta-text { flex: 1; min-width: 240px; }
.terr-cta-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 3px;
}
.terr-cta-text span {
  font-size: 0.88rem;
  color: var(--text-secondary, #5b6b7c);
}

.terr-cta-btns {
  display: flex;
  flex-direction: row;  
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.terr-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.terr-btn i { font-size: 0.82em; }

.terr-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.terr-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59,130,246,0.42);
}
.terr-btn-outline {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(59,130,246,0.26);
  color: #2563eb;
  backdrop-filter: blur(8px);
}
.terr-btn-outline:hover {
  background: rgba(255,255,255,0.95);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.14);
}

.terr-reveal {

  opacity: 1;
  transform: translateY(0) scale(1);

/*   opacity: 0;
  transform: translateY(42px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.terr-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .terr-option-img { flex: 0 0 86px; height: 66px; }
  .terr-mosaic-item img { height: 170px; }
}

@media (max-width: 991px) {
  .terrace-section { padding: 100px 0 120px; }
  .terr-two-col { grid-template-columns: 1fr; gap: 20px; }
  .terr-mosaic-item img { height: 190px; }
  .terr-orb-3, .terr-orb-4 { display: none; }
}

@media (max-width: 768px) {
  .terr-cta { padding: 24px 26px; gap: 22px; }
  .terr-cta-btns {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    flex-shrink: 1;
  }
  .terr-cta-text { min-width: unset; text-align: center; }
  .terr-cta { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .terrace-section { padding: 80px 0 90px; }
  .terr-heading { margin-bottom: 44px; }
  .terr-left { padding: 22px 18px; }
  .terr-option { gap: 12px; padding: 12px; }
  .terr-option-img { flex: 0 0 78px; height: 60px; border-radius: 8px; }
  .terr-option-body strong { font-size: 0.9rem; }
  .terr-option-body p { font-size: 0.8rem; }
  .terr-mosaic { gap: 10px; }
  .terr-mosaic-item img { height: 165px; }
  .terr-cta { padding: 20px 20px; }
  .terr-cta-btns {
    flex-direction: row;
    gap: 10px;
  }
  .terr-btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 0.86rem; }
  .terr-orb-1 { width: 280px; height: 280px; }
  .terr-orb-2 { width: 210px; height: 210px; }
}

@media (max-width: 480px) {
  .terrace-section { padding: 70px 0 80px; }
  .terr-option { flex-direction: row; }
  .terr-option-img { flex: 0 0 70px; height: 56px; }
  .terr-mosaic-item img { height: 148px; }
  .terr-mosaic-caption { font-size: 0.75rem; padding: 14px 8px 8px; }
  .terr-cta-text strong { font-size: 1rem; }
  .terr-btn { padding: 11px 12px; font-size: 1.05rem; }
  .terr-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .terrace-section { padding: 60px 0 70px; }
  .terr-left { padding: 18px 14px; }
  .terr-options { gap: 14px; }
  .terr-option { padding: 10px; gap: 10px; }
  .terr-option-img { flex: 0 0 62px; height: 50px; border-radius: 7px; }
  .terr-option-body strong { font-size: 0.87rem; }
  .terr-option-body p { font-size: 0.77rem; }
  .terr-mosaic { gap: 8px; }
  .terr-mosaic-item img { height: 130px; }
  .terr-cta { padding: 18px 14px; gap: 16px; }
  .terr-cta-text strong { font-size: 0.95rem; }
  .terr-cta-text span { font-size: 1.05rem; }
  .terr-btn { padding: 10px 10px; font-size: 0.81rem; gap: 5px; }
  .terr-btn i { display: none; }
  .terr-heading h2 { font-size: 1.5rem; }
  .terr-label { font-size: 0.64rem; }
  .terr-heading .terr-sub { font-size: 0.86rem; }
}














.porch-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 65% 55% at 100% 10%, rgba(167,243,208,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 0%   90%, rgba(186,230,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 110%, rgba(224,242,254,0.40) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 8%   5%, rgba(209,250,229,0.35) 0%, transparent 55%),
    linear-gradient(158deg,
      #f0fdf8 0%,
      #e8faf4 22%,
      #e4f4ff 55%,
      #eef8ff 80%,
      #f0f9ff 100%);

  background-size: 200% 200%;
  animation: porchGradFlow 24s ease infinite;
}

@keyframes porchGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.porch-section::before {
  content: "";
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 38%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(110,231,183,0.10) 35%,
    rgba(167,243,208,0.17) 50%,
    rgba(110,231,183,0.10) 65%,
    transparent
  );
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
}

.porch-section::after {
  content: "";
  position: absolute;
  width: 150px; height: 140%;
  top: -15%; right: 25%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,210,255,0.09) 40%,
    rgba(186,230,255,0.15) 50%,
    rgba(147,210,255,0.09) 60%,
    transparent
  );
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.porch-section .container { position: relative; z-index: 2; }

.porch-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.porch-orb-1 {
  width: 520px; height: 520px;
  top: -160px; right: -130px;
  background: radial-gradient(circle, rgba(167,243,208,0.25) 0%, transparent 65%);
}
.porch-orb-2 {
  width: 420px; height: 420px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(186,230,255,0.35) 0%, transparent 65%);
}
.porch-orb-3 {
  width: 260px; height: 260px;
  top: 40%; left: 42%;
  background: radial-gradient(circle, rgba(209,250,229,0.32) 0%, transparent 60%);
}

.porch-heading {
  text-align: center;
  margin-bottom: 60px;
}
.porch-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #047857;
  background: rgba(4,120,87,0.07);
  border: 1px solid rgba(4,120,87,0.16);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.porch-label i { font-size: 0.8em; }

.porch-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main, #1f2a37);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.porch-heading h2 .h2-accent {
  background: linear-gradient(90deg, #059669, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.porch-heading .porch-sub {
  font-size: 1rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.6;
}
.porch-heading .porch-sub span {
  display: inline-block;
  background: rgba(4,120,87,0.06);
  border: 1px solid rgba(4,120,87,0.14);
  border-radius: 6px;
  padding: 1px 8px;
  margin: 2px 2px;
  font-size: 0.91em;
  color: #065f46;
  font-weight: 600;
}

.porch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.porch-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(31,42,55,0.08);
  background: rgba(255,255,255,0.5);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}

.porch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #10b981, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.porch-card:hover::before { opacity: 1; }

.porch-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 56px rgba(31,42,55,0.14);
}

.porch-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: block;
}
.porch-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(0.9) saturate(0.88);
}
.porch-card:hover .porch-card-img img {
  transform: scale(1.09);
  filter: brightness(1) saturate(1.05);
}

.porch-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,25,35,0.74), transparent);
  color: white;
  padding: 28px 14px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.porch-card-num {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
  z-index: 2;
}
.porch-card:hover .porch-card-num { color: rgba(255,255,255,0.4); }

.porch-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
}

.porch-cta-text { flex: 1; min-width: 240px; }
.porch-cta-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main, #1f2a37);
  margin-bottom: 3px;
}
.porch-cta-text span {
  font-size: 0.88rem;
  color: var(--text-secondary, #5b6b7c);
}

.porch-cta-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.porch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.porch-btn i { font-size: 0.82em; }

.porch-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.porch-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59,130,246,0.42);
}
.porch-btn-outline {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(59,130,246,0.26);
  color: #2563eb;
  backdrop-filter: blur(8px);
}
.porch-btn-outline:hover {
  background: rgba(255,255,255,0.95);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.14);
}

.porch-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
/*   
  opacity: 0;
  transform: translateY(42px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.porch-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .porch-card-img { height: 225px; }
  .porch-grid { gap: 14px; }
}

@media (max-width: 991px) {
  .porch-section { padding: 100px 0 120px; }
  .porch-grid { grid-template-columns: repeat(2, 1fr); }
  .porch-card-img { height: 240px; }
  .porch-orb-3 { display: none; }
}

@media (max-width: 768px) {
  .porch-cta { flex-direction: column; align-items: stretch; gap: 22px; }
  .porch-cta-text { min-width: unset; text-align: center; }
  .porch-cta-btns {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .porch-section { padding: 80px 0 90px; }
  .porch-heading { margin-bottom: 44px; }
  .porch-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .porch-card-img { height: 190px; }
  .porch-card-caption { font-size: 1.05rem; padding: 22px 10px 10px; }
  .porch-card-num { font-size: 1.35rem; }
  .porch-cta { padding: 22px 20px; }
  .porch-cta-btns {
    flex-direction: row;
    gap: 10px;
  }
  .porch-btn { flex: 1; justify-content: center; padding: 12px 12px; font-size: 0.86rem; }
  .porch-orb-1 { width: 300px; height: 300px; }
  .porch-orb-2 { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .porch-section { padding: 70px 0 80px; }
  .porch-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .porch-card-img { height: 165px; }
  .porch-card-caption { font-size: 0.75rem; padding: 18px 8px 9px; }
  .porch-card { border-radius: 14px; }
  .porch-cta-text strong { font-size: 1rem; }
  .porch-cta-text span { font-size: 1.05rem; }
  .porch-btn { padding: 11px 10px; font-size: 1.05rem; }
  .porch-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .porch-section { padding: 60px 0 70px; }
  .porch-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .porch-card-img { height: 145px; }
  .porch-card-caption { font-size: 0.72rem; padding: 16px 7px 8px; }
  .porch-card-num { font-size: 1.15rem; top: 7px; right: 9px; }
  .porch-card { border-radius: 12px; }
  .porch-cta { padding: 18px 14px; gap: 16px; }
  .porch-cta-text strong { font-size: 0.95rem; }
  .porch-cta-text span { font-size: 0.8rem; }
  .porch-btn { padding: 10px 8px; font-size: 0.81rem; gap: 5px; }
  .porch-btn i { display: none; }
  .porch-heading h2 { font-size: 1.5rem; }
  .porch-label { font-size: 0.64rem; }
  .porch-heading .porch-sub { font-size: 0.86rem; }
  .porch-heading .porch-sub span { padding: 1px 6px; font-size: 0.88em; }
}









.entry-group-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 65% 55% at 5%   8%,  rgba(255,236,194,0.65) 0%, transparent 62%),
    radial-gradient(ellipse 45% 50% at 95%  90%, rgba(207,234,255,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 80%  5%,  rgba(255,248,200,0.50) 0%, transparent 55%),
    radial-gradient(ellipse 75% 40% at 50% 108%, rgba(219,240,255,0.38) 0%, transparent 65%),
    linear-gradient(158deg,
      #fffcf7 0%,
      #fdf4e8 25%,
      #f6f9ff 58%,
      #f9fbff 100%);

  background-size: 200% 200%;
  animation: entryGradFlow 22s ease infinite;
}

@keyframes entryGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.entry-group-section::before {
  content: "";
  position: absolute;
  width: 240px; height: 170%;
  top: -35%; left: 42%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,210,90,0.10) 35%,
    rgba(255,228,130,0.18) 50%,
    rgba(255,210,90,0.10) 65%,
    transparent
  );
  transform: rotate(-24deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

.entry-group-section::after {
  content: "";
  position: absolute;
  width: 160px; height: 140%;
  top: -20%; right: 20%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,210,255,0.08) 40%,
    rgba(186,230,255,0.14) 50%,
    rgba(147,210,255,0.08) 60%,
    transparent
  );
  transform: rotate(16deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.entry-group-section .container { position: relative; z-index: 2; }

.eg-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.eg-orb-1 { width: 500px; height: 500px; top: -150px; right: -120px; background: radial-gradient(circle, rgba(186,226,255,0.28) 0%, transparent 65%); }
.eg-orb-2 { width: 420px; height: 420px; bottom: -110px; left: -110px; background: radial-gradient(circle, rgba(255,228,160,0.42) 0%, transparent 65%); }
.eg-orb-3 { width: 240px; height: 240px; top: 36%; left: 46%; background: radial-gradient(circle, rgba(255,243,199,0.36) 0%, transparent 60%); }

.eg-heading {
  text-align: center;
  margin-bottom: 64px;
}
.eg-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #b45309; background: rgba(180,83,9,0.07); border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.eg-label i { font-size: 0.8em; }
.eg-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--text-main, #1f2a37);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.eg-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eg-heading .eg-sub {
  font-size: 1rem; color: var(--text-secondary, #5b6b7c);
  line-height: 1.6;
}
.eg-heading .eg-sub span {
  display: inline-block; background: rgba(180,83,9,0.06); border: 1px solid rgba(180,83,9,0.14);
  border-radius: 6px; padding: 1px 8px; margin: 2px 2px;
  font-size: 0.91em; color: #92400e; font-weight: 600;
}

.eg-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.eg-img-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(31,42,55,0.1);
  min-height: 480px;
  background: rgba(255,255,255,0.4);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.eg-img-block:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(31,42,55,0.14); }

.eg-img-block img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.92) saturate(0.9);
}
.eg-img-block:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

.eg-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,35,0.5) 0%, transparent 50%);
  z-index: 1;
}
.eg-img-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.eg-img-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 10px;
  padding: 7px 14px;
  font-size: 1.05rem; font-weight: 700;
  color: #1e3a5f; white-space: nowrap;
}
.eg-img-chip i { color: #3b82f6; font-size: 1.05em; }

.eg-img-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.7rem; font-weight: 700;
  color: #b45309; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.eg-img-tag i { color: #d97706; font-size: 0.82em; }

.eg-benefits {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(31,42,55,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.eg-benefits:hover {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 52px rgba(31,42,55,0.12);
  transform: translateY(-4px);
}
.eg-benefits::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #f59e0b, #3b82f6, #60a5fa);
  opacity: 0; transition: opacity 0.3s; border-radius: 20px 20px 0 0;
}
.eg-benefits:hover::before { opacity: 1; }
.eg-benefits { position: relative; }

.eg-benefits-title {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-main, #1f2a37); margin-bottom: 28px; letter-spacing: -0.01em;
}

.eg-feature-list { display: flex; flex-direction: column; gap: 18px; flex-grow: 1; }

.eg-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.eg-feature:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(59,130,246,0.15);
  transform: translateX(4px);
}

.eg-feature-icon {
  flex: 0 0 40px; height: 40px; border-radius: 11px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; flex-shrink: 0;
}
.eg-feature:hover .eg-feature-icon { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.35); transform: scale(1.08) rotate(-4deg); }
.eg-feature-icon i { color: #2563eb; font-size: 0.95rem; }

.eg-feature-body { flex: 1; min-width: 0; }
.eg-feature-body strong {
  display: block;
  font-size: 1.15rem; font-weight: 700; color: var(--text-main, #1f2a37); margin-bottom: 3px;
}
.eg-feature-body p {
  font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c); line-height: 1.5; margin: 0;
}

.eg-benefits-btn {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white; font-weight: 700;
  font-size: 0.92rem; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59,130,246,0.32); width: 100%;
}
.eg-benefits-btn i { font-size: 0.85em; }
.eg-benefits-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(59,130,246,0.42);
}

.eg-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eg-mini-card {
  position: relative;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31,42,55,0.07);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
.eg-mini-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #f59e0b, #3b82f6);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.eg-mini-card:hover::before { opacity: 1; }
.eg-mini-card:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(59,130,246,0.18);
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(31,42,55,0.13);
}

.eg-mini-img {
  width: 100%; height: 175px; overflow: hidden; flex-shrink: 0;
}
.eg-mini-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(0.9) saturate(0.88);
}
.eg-mini-card:hover .eg-mini-img img { transform: scale(1.08); filter: brightness(1) saturate(1.04); }

.eg-mini-body { padding: 18px 20px 22px; flex-grow: 1; display: flex; flex-direction: column; }

.eg-mini-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 6px; margin-bottom: 8px; align-self: flex-start;
}
.eg-mini-tag.blue { color: #1d4ed8; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); }
.eg-mini-tag.amber { color: #92400e; background: rgba(180,83,9,0.08); border: 1px solid rgba(180,83,9,0.18); }
.eg-mini-tag.green { color: #065f46; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.18); }

.eg-mini-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-main, #1f2a37); line-height: 1.35; margin-bottom: 6px;
  transition: color 0.3s;
}
.eg-mini-card:hover .eg-mini-title { color: #1a2f4a; }

.eg-mini-desc {
 font-size: 1.05rem;
  color: var(--text-secondary, #5b6b7c); line-height: 1.55; margin-bottom: 14px; flex-grow: 1;
}

.eg-mini-features { display: flex; flex-direction: column; gap: 5px; }
.eg-mini-feature {
  display: flex; align-items: center; gap: 7px;
  font-size: 1.05rem; color: var(--text-secondary, #5b6b7c);
}
.eg-mini-feature i { color: #3b82f6; font-size: 0.7rem; width: 12px; flex-shrink: 0; }

.eg-reveal {
  opacity: 1; transform: translateY(0) scale(1); 
/*   
  opacity: 0;
  transform: translateY(42px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.eg-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .eg-img-block { min-height: 420px; }
  .eg-benefits { padding: 28px 26px; }
  .eg-mini-img { height: 155px; }
}

@media (max-width: 900px) {
  .entry-group-section { padding: 100px 0 120px; }
  .eg-main { grid-template-columns: 1fr; }
  .eg-img-block { min-height: 320px; }
  .eg-cards-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .eg-mini-img { height: 140px; }
  .eg-mini-body { padding: 14px 16px 18px; }
  .eg-orb-3 { display: none; }
}

@media (max-width: 700px) {
  .eg-cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .entry-group-section { padding: 80px 0 90px; }
  .eg-heading { margin-bottom: 44px; }
  .eg-main { gap: 16px; }
  .eg-img-block { min-height: 270px; }
  .eg-img-chip { font-size: 0.72rem; padding: 5px 10px; }
  .eg-benefits { padding: 22px 20px; }
  .eg-benefits-title { font-size: 1.05rem; margin-bottom: 18px; }
  .eg-feature { padding: 11px 12px; gap: 12px; }
  .eg-feature-icon { flex: 0 0 36px; height: 36px; }
  .eg-mini-img { height: 130px; }
  .eg-cards-row { gap: 10px; }
  .eg-orb-1 { width: 300px; height: 300px; }
  .eg-orb-2 { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .entry-group-section { padding: 70px 0 80px; }
  .eg-img-block { min-height: 240px; }
  .eg-img-badge { gap: 7px; bottom: 14px; left: 14px; right: 14px; }
  .eg-img-chip { font-size: 0.7rem; padding: 5px 9px; }
  .eg-cards-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .eg-mini-img { height: 115px; }
  .eg-mini-body { padding: 12px 14px 16px; }
  .eg-mini-title { font-size: 0.9rem; }
  .eg-mini-desc { font-size: 0.79rem; margin-bottom: 10px; }
  .eg-mini-features { gap: 4px; }
  .eg-mini-feature { font-size: 0.75rem; }
  .eg-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .entry-group-section { padding: 60px 0 70px; }
  .eg-img-block { min-height: 210px; }
  .eg-img-badge { flex-direction: column; align-items: flex-start; gap: 5px; }
  .eg-img-chip { font-size: 0.68rem; padding: 4px 8px; }
  .eg-benefits { padding: 18px 15px; }
  .eg-feature { padding: 10px 11px; gap: 10px; }
  .eg-feature-icon { flex: 0 0 32px; height: 32px; border-radius: 9px; }
  .eg-feature-icon i { font-size: 1.05rem; }
  .eg-feature-body strong { font-size: 0.88rem; }
  .eg-feature-body p { font-size: 1.05rem; }
  .eg-mini-img { height: 100px; }
  .eg-mini-body { padding: 11px 12px 14px; }
  .eg-mini-title { font-size: 0.86rem; }
  .eg-mini-desc { display: none; }
  .eg-mini-tag { font-size: 0.63rem; }
  .eg-benefits-btn { padding: 12px 16px; font-size: 0.86rem; }
  .eg-heading h2 { font-size: 1.5rem; }
  .eg-label { font-size: 0.64rem; }
  .eg-heading .eg-sub { font-size: 0.86rem; }
}








.alupvc-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(135deg,
    #e8f4ff 0%,
    #d9ecff 20%,
    #cce4ff 40%,
    #bfdbff 60%,
    #d0e8ff 80%,
    #e8f4ff 100%);
  background-size: 200% 200%;
  animation: alupvcGradFlow 18s ease infinite;
}

@keyframes alupvcGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.alupvc-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.58),
    rgba(223,239,255,0.42),
    rgba(201,228,255,0.32),
    rgba(255,255,255,0.50));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 1;
}

.alupvc-section::after {
  content: "";
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 32%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,197,253,0.13) 40%,
    rgba(186,230,255,0.22) 50%,
    rgba(147,197,253,0.13) 60%,
    transparent
  );
  transform: rotate(-26deg);
  pointer-events: none;
  z-index: 1;
  filter: blur(18px);
}

.alupvc-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.ap-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ap-orb-1 {
  width: 520px; height: 520px;
  top: -160px; right: -130px;
  background: radial-gradient(circle, rgba(147,197,253,0.30) 0%, transparent 65%);
}
.ap-orb-2 {
  width: 400px; height: 400px;
  bottom: -110px; left: -110px;
  background: radial-gradient(circle, rgba(186,230,255,0.38) 0%, transparent 65%);
}
.ap-orb-3 {
  width: 260px; height: 260px;
  top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(224,242,254,0.42) 0%, transparent 60%);
}

.ap-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.12);
  pointer-events: none;
  z-index: 0;
  animation: apRingSpin linear infinite;
}
.ap-ring-1 { width: 380px; height: 380px; top: -120px; right: -80px; animation-duration: 35s; }
.ap-ring-2 { width: 220px; height: 220px; top: -60px; right: -20px; border-color: rgba(59,130,246,0.07); animation-duration: 22s; animation-direction: reverse; }
.ap-ring-3 { width: 160px; height: 160px; bottom: 18%; left: -50px; border-color: rgba(99,179,237,0.09); animation-duration: 28s; }
@keyframes apRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ap-panel {
  position: absolute;
  background: rgba(255,255,255,0.26);
  border: 1.5px solid rgba(255,255,255,0.52);
  border-radius: 9px;
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
  animation: apPanelFloat ease-in-out infinite;
}
.ap-panel::before, .ap-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.08); }
.ap-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.ap-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.ap-panel-1 { width: 66px; height: 84px; top: 18%; right: 6%; animation-duration: 7s; animation-delay: 0s; opacity: 0.75; }
.ap-panel-2 { width: 48px; height: 62px; bottom: 24%; right: 10%; animation-duration: 9.5s; animation-delay: -3.5s; opacity: 0.50; }
.ap-panel-3 { width: 56px; height: 72px; top: 52%; left: 3%; animation-duration: 8.5s; animation-delay: -5s; opacity: 0.38; }
@keyframes apPanelFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35%       { transform: translateY(-13px) rotate(1deg); }
  68%       { transform: translateY(-6px) rotate(-0.5deg); }
}

.ap-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: apDotFloat ease-in-out infinite;
}
.ap-dot-1 { width: 13px; height: 13px; background: rgba(59,130,246,0.24); top: 25%; right: 22%; animation-duration: 5.5s; animation-delay: -1s; }
.ap-dot-2 { width: 9px; height: 9px; background: rgba(147,197,253,0.35); top: 62%; left: 15%; animation-duration: 6.5s; animation-delay: -3s; }
.ap-dot-3 { width: 17px; height: 17px; background: rgba(99,179,237,0.18); bottom: 32%; right: 30%; animation-duration: 7.2s; animation-delay: -2s; }
@keyframes apDotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-17px) scale(1.1); }
}

.ap-cross {
  position: absolute; width: 24px; height: 24px;
  pointer-events: none; z-index: 0;
  animation: apDotFloat ease-in-out infinite;
}
.ap-cross::before, .ap-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.20); border-radius: 2px; }
.ap-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.ap-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.ap-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
.ap-cross-2 { bottom: 20%; right: 12%; animation-duration: 6.5s; animation-delay: -4.5s; opacity: 0.6; }

.ap-heading {
  text-align: center;
  margin-bottom: 68px;
}
.ap-heading .ap-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.ap-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--text-main);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.ap-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ap-heading .ap-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6;
}
.ap-heading .ap-sub span {
  display: inline-block;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.16);
  border-radius: 6px; padding: 1px 8px; margin: 2px 2px;
  font-size: 0.91em; color: #2563eb; font-weight: 600;
}

.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.ap-card {
  position: relative;
  background: rgba(255,255,255,0.68);
  border: 1.5px solid rgba(255,255,255,0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(31,42,55,0.08), 0 12px 48px rgba(31,42,55,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: all 0.48s var(--ease-spring);
  display: flex; flex-direction: column;
}
.ap-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.ap-card.alu-card::before { background: linear-gradient(90deg, #9ca3af, #6b7280, #d1d5db); }
.ap-card.pvc-card::before { background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd); }
.ap-card:hover::before { opacity: 1; }
.ap-card:hover {
  background: rgba(255,255,255,0.94);
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(31,42,55,0.14), 0 0 0 1px rgba(59,130,246,0.1);
}

.ap-card-img {
  width: 100%; height: 300px; overflow: hidden; flex-shrink: 0; position: relative;
}
.ap-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.92) saturate(0.88);
}
.ap-card:hover .ap-card-img img { transform: scale(1.08); filter: brightness(1) saturate(1.05); }

.ap-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.22) 0%, transparent 55%);
}

.ap-card-img-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 9px;
  padding: 6px 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ap-card.alu-card .ap-card-img-badge { color: #374151; }
.ap-card.pvc-card .ap-card-img-badge { color: #1e40af; }
.ap-card-img-badge i { font-size: 0.8em; }
.ap-card.alu-card .ap-card-img-badge i { color: #6b7280; }
.ap-card.pvc-card .ap-card-img-badge i { color: #3b82f6; }

.ap-card-stats {
  position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 2;
  display: flex; gap: 8px;
}
.ap-stat-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 10px;
  padding: 7px 12px;
  font-size: 0.75rem; font-weight: 700; color: #1e3a5f; white-space: nowrap;
}
.ap-stat-chip i { font-size: 0.78em; color: #3b82f6; }

.ap-card-body {
  padding: 28px 30px 30px;
  display: flex; flex-direction: column; flex-grow: 1;
}

.ap-card-num {
  position: absolute; bottom: 18px; right: 22px;
  font-size: 5rem; font-weight: 800;
  color: rgba(59,130,246,0.055); line-height: 1;
  letter-spacing: -0.04em; pointer-events: none; user-select: none;
  transition: color 0.35s;
}
.ap-card:hover .ap-card-num { color: rgba(59,130,246,0.095); }

.ap-card-title {
  font-size: 1.25rem; font-weight: 700; color: var(--text-main);
  line-height: 1.3; margin-bottom: 6px; letter-spacing: -0.015em;
  transition: color 0.3s;
}
.ap-card:hover .ap-card-title { color: #1a2f4a; }

.ap-card-subtitle {
  font-size: 0.88rem; color: var(--text-secondary);
  margin-bottom: 22px; line-height: 1.55;
}

.ap-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 26px; flex-grow: 1;
}
.ap-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 14px; border-radius: 11px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.28s ease;
}
.ap-feature:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(59,130,246,0.14);
  transform: translateX(3px);
}
.ap-feature-dot {
  flex: 0 0 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  transition: transform 0.28s;
}
.ap-feature:hover .ap-feature-dot { transform: scale(1.12) rotate(-4deg); }
.ap-card.alu-card .ap-feature-dot { background: rgba(107,114,128,0.12); border: 1px solid rgba(107,114,128,0.2); }
.ap-card.pvc-card .ap-feature-dot { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18); }
.ap-feature-dot i { font-size: 0.68rem; }
.ap-card.alu-card .ap-feature-dot i { color: #4b5563; }
.ap-card.pvc-card .ap-feature-dot i { color: #2563eb; }
.ap-feature span {
  font-size: 0.86rem; color: var(--text-secondary); line-height: 1.5;
}

.ap-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; border: none;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.32s ease; white-space: nowrap; width: 100%;
}
.ap-btn i { font-size: 0.84em; transition: transform 0.3s; }
.ap-btn:hover i { transform: translateX(3px); }

.alu-btn {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white; box-shadow: 0 6px 20px rgba(75,85,99,0.28);
}
.alu-btn:hover {
  background: linear-gradient(135deg, #4b5563, #374151);
  transform: translateY(-2px); box-shadow: 0 14px 34px rgba(75,85,99,0.42);
}
.pvc-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white; box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.pvc-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px); box-shadow: 0 14px 34px rgba(59,130,246,0.44);
}

.ap-compare {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 28px 36px;
  box-shadow: 0 4px 28px rgba(31,42,55,0.07);
  display: flex; align-items: center; gap: 0;
}

.ap-compare-col {
  flex: 1;
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px;
}
.ap-compare-col:first-child { padding-left: 0; }
.ap-compare-col:last-child  { padding-right: 0; }

.ap-compare-icon {
  flex: 0 0 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ap-compare-icon.alu { background: linear-gradient(135deg, rgba(107,114,128,0.14), rgba(75,85,99,0.18)); border: 1px solid rgba(107,114,128,0.22); }
.ap-compare-icon.pvc { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(37,99,235,0.14)); border: 1px solid rgba(59,130,246,0.2); }
.ap-compare-icon.alu i { color: #4b5563; font-size: 1.1rem; }
.ap-compare-icon.pvc i { color: #2563eb; font-size: 1.1rem; }

.ap-compare-text strong {
  display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px;
}
.ap-compare-text span {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.45;
}

.ap-compare-divider {
  width: 1px; height: 52px;
  background: rgba(59,130,246,0.15); flex-shrink: 0;
}

.ap-compare-vs {
  flex: 0 0 52px; height: 52px;
  background: rgba(255,255,255,0.75); border: 1.5px solid rgba(59,130,246,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
  color: #2563eb; letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59,130,246,0.14);
}

.ap-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);

/*   opacity: 0;
  transform: translateY(44px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.ap-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .ap-card-img { height: 260px; }
  .ap-card-body { padding: 24px 26px 26px; }
  .ap-compare { padding: 24px 28px; }
  .ap-compare-col { padding: 0 20px; gap: 12px; }
}

@media (max-width: 900px) {
  .alupvc-section { padding: 100px 0 120px; }
  .ap-grid { grid-template-columns: 1fr; gap: 18px; }
  .ap-ring-1, .ap-panel-3 { display: none; }
  .ap-compare { flex-wrap: wrap; gap: 16px; }
  .ap-compare-col { min-width: 200px; }
  .ap-compare-divider { display: none; }
  .ap-compare-vs { display: none; }
}

@media (max-width: 640px) {
  .alupvc-section { padding: 80px 0 90px; }
  .ap-heading { margin-bottom: 48px; }
  .ap-card-img { height: 220px; }
  .ap-card-body { padding: 20px 20px 22px; }
  .ap-card-title { font-size: 1.1rem; }
  .ap-card-stats { gap: 6px; }
  .ap-stat-chip { font-size: 0.7rem; padding: 5px 9px; }
  .ap-compare { padding: 20px 18px; border-radius: 16px; }
  .ap-compare-col { padding: 0 10px; }
  .ap-orb-3 { display: none; }
  .ap-panel-2 { display: none; }
}

@media (max-width: 480px) {
  .alupvc-section { padding: 70px 0 80px; }
  .ap-card-img { height: 195px; }
  .ap-card-body { padding: 18px 18px 20px; }
  .ap-card-num { font-size: 3.5rem; }
  .ap-btn { padding: 12px 20px; font-size: 0.88rem; }
  .ap-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
  .ap-compare-col { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}

@media (max-width: 380px) {
  .alupvc-section { padding: 60px 0 70px; }
  .ap-card-img { height: 172px; }
  .ap-card-body { padding: 16px 15px 18px; }
  .ap-card-title { font-size: 1rem; }
  .ap-card-subtitle { font-size: 1.05rem; }
  .ap-feature span { font-size: 0.81rem; }
  .ap-btn { padding: 11px 16px; font-size: 0.85rem; }
  .ap-heading h2 { font-size: 1.5rem; }
  .ap-heading .ap-label { font-size: 0.65rem; }
  .ap-heading .ap-sub { font-size: 0.88rem; }
  .ap-compare { padding: 16px 14px; }
}
















.boiler-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 5%  8%,  rgba(255,236,194,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 95% 88%, rgba(207,234,255,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 80%  5%, rgba(255,248,200,0.52) 0%, transparent 55%),
    radial-gradient(ellipse 75% 40% at 50% 110%,rgba(219,240,255,0.36) 0%, transparent 65%),
    linear-gradient(158deg,
      #fffcf7 0%,
      #fdf4e8 25%,
      #f6f9ff 58%,
      #f9fbff 100%);

  background-size: 200% 200%;
  animation: boilerGradFlow 22s ease infinite;
}

@keyframes boilerGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.boiler-section::before {
  content: "";
  position: absolute;
  width: 220px; height: 170%;
  top: -35%; left: 40%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,215,100,0.11) 35%,
    rgba(255,230,140,0.19) 50%,
    rgba(255,215,100,0.11) 65%,
    transparent
  );
  transform: rotate(-24deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
}
.boiler-section::after {
  content: "";
  position: absolute;
  width: 160px; height: 140%;
  top: -20%; right: 18%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147,210,255,0.09) 40%,
    rgba(186,230,255,0.15) 50%,
    rgba(147,210,255,0.09) 60%,
    transparent
  );
  transform: rotate(16deg);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.boiler-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.bl-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.bl-orb-1 { width: 500px; height: 500px; top: -150px; right: -120px; background: radial-gradient(circle, rgba(186,226,255,0.28) 0%, transparent 65%); }
.bl-orb-2 { width: 400px; height: 400px; bottom: -110px; left: -110px; background: radial-gradient(circle, rgba(255,228,160,0.44) 0%, transparent 65%); }
.bl-orb-3 { width: 240px; height: 240px; top: 36%; left: 46%; background: radial-gradient(circle, rgba(255,243,199,0.38) 0%, transparent 60%); }
.bl-orb-4 { width: 180px; height: 180px; top: 10%; right: 28%; background: radial-gradient(circle, rgba(255,248,200,0.36) 0%, transparent 60%); }

.bl-heading {
  text-align: center;
  margin-bottom: 64px;
}
.bl-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #b45309;
  background: rgba(180,83,9,0.07);
  border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.bl-label i { font-size: 0.8em; }

.bl-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--text-main);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.bl-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bl-heading .bl-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6;
}
.bl-heading .bl-sub span {
  display: inline-block;
  background: rgba(180,83,9,0.06); border: 1px solid rgba(180,83,9,0.14);
  border-radius: 6px; padding: 1px 8px; margin: 2px 2px;
  font-size: 0.91em; color: #92400e; font-weight: 600;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.bl-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all 0.48s var(--ease-spring);
  display: flex; flex-direction: column;
}
.bl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #f59e0b, #dc2626, #f59e0b);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.bl-card:hover::before { opacity: 1; }
.bl-card:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(245,158,11,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(31,42,55,0.13), 0 0 0 1px rgba(245,158,11,0.1);
}

.bl-card-img {
  width: 100%; height: 220px; overflow: hidden; position: relative; flex-shrink: 0;
}
.bl-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(0.92) saturate(0.88);
}
.bl-card:hover .bl-card-img img { transform: scale(1.08); filter: brightness(1) saturate(1.05); }

.bl-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 8px;
  padding: 5px 11px;
  font-size: 0.72rem; font-weight: 700;
  color: #92400e; letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.bl-card-badge i { font-size: 0.8em; color: #d97706; }

.bl-card-num {
  position: absolute; top: 14px; right: 16px;
  font-size: 3.8rem; font-weight: 800;
  color: rgba(245,158,11,0.1); line-height: 1;
  letter-spacing: -0.04em; pointer-events: none; user-select: none;
  transition: color 0.35s; z-index: 1;
}
.bl-card:hover .bl-card-num { color: rgba(245,158,11,0.18); }

.bl-card-body {
  padding: 24px 24px 26px;
  display: flex; flex-direction: column; flex-grow: 1;
}

.bl-card-title {
  font-size: 1.15rem; font-weight: 700; color: var(--text-main);
  line-height: 1.35; margin-bottom: 6px; letter-spacing: -0.01em;
  transition: color 0.3s;
}
.bl-card:hover .bl-card-title { color: #1a2f4a; }

.bl-card-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.55; margin-bottom: 16px;
}

.bl-features {
  display: flex; flex-direction: column; gap: 8px; flex-grow: 1;
}
.bl-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.5;
}
.bl-feature i {
  color: #d97706; font-size: 0.7rem;
  flex-shrink: 0; margin-top: 3px; width: 12px;
}

.bl-alert {
  background: rgba(255,251,235,0.75);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 14px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.08);
}
.bl-alert-icon {
  flex: 0 0 36px; height: 36px; border-radius: 9px;
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bl-alert-icon i { color: #d97706; font-size: 1rem; }
.bl-alert-body strong {
  display: block;
  font-size: 0.88rem; font-weight: 700; color: #92400e; margin-bottom: 3px;
}
.bl-alert-body p {
  font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; margin: 0;
}

.bl-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 30px 38px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
}

.bl-cta-text { flex: 1; min-width: 240px; }
.bl-cta-text strong {
  display: block;
  font-size: 1.12rem; font-weight: 700; color: var(--text-main); margin-bottom: 3px;
}
.bl-cta-text span {
  font-size: 0.88rem; color: var(--text-secondary);
}

.bl-cta-btns {
  display: flex; flex-direction: row;
  gap: 12px; flex-shrink: 0; flex-wrap: nowrap;
}

.bl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.3s ease;
  border: none; white-space: nowrap;
}
.bl-btn i { font-size: 0.82em; }

.bl-btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white; box-shadow: 0 6px 20px rgba(220,38,38,0.28);
}
.bl-btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(220,38,38,0.40);
}
.bl-btn-outline {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(245,158,11,0.28);
  color: #92400e; backdrop-filter: blur(8px);
}
.bl-btn-outline:hover {
  background: rgba(255,255,255,0.95);
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245,158,11,0.14);
}

.bl-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);

/*   opacity: 0;
  transform: translateY(44px) scale(0.97); */
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.bl-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .bl-card-img { height: 195px; }
  .bl-grid { gap: 14px; }
}

@media (max-width: 900px) {
  .boiler-section { padding: 100px 0 120px; }
  .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bl-orb-3, .bl-orb-4 { display: none; }
}

@media (max-width: 768px) {
  .bl-cta { flex-direction: column; align-items: stretch; gap: 22px; }
  .bl-cta-text { min-width: unset; text-align: center; }
  .bl-cta-btns {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
.bl-btn{
  width:100%
}

}

@media (max-width: 640px) {
  .boiler-section { padding: 80px 0 90px; }
  .bl-heading { margin-bottom: 44px; }
  .bl-grid { grid-template-columns: 1fr; gap: 12px; }
  .bl-card-img { height: 210px; }
  .bl-card-body { padding: 20px 20px 22px; }
  .bl-card-title { font-size: 1.15rem; }
  .bl-cta { padding: 22px 20px; }
  .bl-cta-btns {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .bl-btn { flex: 1; justify-content: center; padding: 12px 12px; font-size: 0.86rem;   width:100% }
  .bl-orb-1 { width: 300px; height: 300px; }
  .bl-orb-2 { width: 240px; height: 240px; }
  .bl-alert { padding: 14px 16px; gap: 10px; }
}

@media (max-width: 480px) {
  .boiler-section { padding: 70px 0 80px; }
  .bl-card-img { height: 185px; }
  .bl-card-body { padding: 18px 18px 20px; }
  .bl-card-title { font-size: 0.95rem; }
  .bl-card-sub { font-size: 0.81rem; }
  .bl-feature { font-size: 0.79rem; }
  .bl-cta-text strong { font-size: 1rem; }
  .bl-cta-text span { font-size: 1.05rem; }
  .bl-btn { padding: 11px 10px; font-size: 1.05rem; }
  .bl-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .boiler-section { padding: 60px 0 70px; }
  .bl-card-img { height: 165px; }
  .bl-card-body { padding: 16px 16px 18px; }
  .bl-card-title { font-size: 0.9rem; }
  .bl-card-sub { font-size: 1.05rem; margin-bottom: 10px; }
  .bl-feature { font-size: 0.76rem; }
  .bl-features { gap: 6px; }
  .bl-card-num { font-size: 2.8rem; top: 10px; right: 12px; }
  .bl-cta { padding: 18px 14px; gap: 16px; }
  .bl-cta-text strong { font-size: 0.95rem; }
  .bl-cta-text span { font-size: 0.8rem; }
  .bl-btn { padding: 10px 8px; font-size: 0.81rem; gap: 5px; }
  .bl-btn i { display: none; }
  .bl-heading h2 { font-size: 1.5rem; }
  .bl-label { font-size: 0.64rem; }
  .bl-heading .bl-sub { font-size: 0.86rem; }
  .bl-alert-body strong { font-size: 0.83rem; }
  .bl-alert-body p { font-size: 0.76rem; }
}














.prices-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(135deg,
    #f0f7ff 0%, #e6f0ff 25%, #d9eaff 50%, #cce4ff 75%, #f0f7ff 100%);
  background-size: 200% 200%;
  animation: priceGradFlow 18s ease infinite;
}
@keyframes priceGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.prices-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.58),
    rgba(223,239,255,0.44),
    rgba(201,228,255,0.34),
    rgba(255,255,255,0.52));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none; z-index: 1;
}
.prices-section::after {
  content: "";
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 34%;
  background: linear-gradient(to right,
    transparent,
    rgba(147,197,253,0.13) 40%,
    rgba(186,230,255,0.22) 50%,
    rgba(147,197,253,0.13) 60%,
    transparent);
  transform: rotate(-26deg);
  pointer-events: none; z-index: 1;
  filter: blur(18px);
}

.prices-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
}

.pr-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.pr-orb-1 { width: 520px; height: 520px; top: -160px; right: -130px; background: radial-gradient(circle, rgba(147,197,253,0.30) 0%, transparent 65%); }
.pr-orb-2 { width: 400px; height: 400px; bottom: -110px; left: -110px; background: radial-gradient(circle, rgba(186,230,255,0.36) 0%, transparent 65%); }
.pr-orb-3 { width: 260px; height: 260px; top: 42%; left: 44%; background: radial-gradient(circle, rgba(224,242,254,0.40) 0%, transparent 60%); }

.pr-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.12);
  pointer-events: none; z-index: 0;
  animation: prRingSpin linear infinite;
}
.pr-ring-1 { width: 380px; height: 380px; top: -120px; right: -80px; animation-duration: 36s; }
.pr-ring-2 { width: 220px; height: 220px; top: -60px; right: -20px; border-color: rgba(59,130,246,0.07); animation-duration: 22s; animation-direction: reverse; }
.pr-ring-3 { width: 150px; height: 150px; bottom: 20%; left: -45px; border-color: rgba(99,179,237,0.09); animation-duration: 28s; }
@keyframes prRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.pr-panel {
  position: absolute; background: rgba(255,255,255,0.26);
  border: 1.5px solid rgba(255,255,255,0.52); border-radius: 9px;
  backdrop-filter: blur(3px); pointer-events: none; z-index: 0;
  animation: prPanelFloat ease-in-out infinite;
}
.pr-panel::before, .pr-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.08); }
.pr-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.pr-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.pr-panel-1 { width: 64px; height: 82px; top: 18%; right: 5.5%; animation-duration: 7.5s; opacity: 0.75; }
.pr-panel-2 { width: 46px; height: 60px; bottom: 24%; right: 9%; animation-duration: 10s; animation-delay: -4s; opacity: 0.48; }
.pr-panel-3 { width: 54px; height: 70px; top: 55%; left: 2.5%; animation-duration: 9s; animation-delay: -5.5s; opacity: 0.38; }
@keyframes prPanelFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  38% { transform: translateY(-12px) rotate(1deg); }
  70% { transform: translateY(-6px) rotate(-0.5deg); }
}

.pr-dot {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  animation: prDotFloat ease-in-out infinite;
}
.pr-dot-1 { width: 13px; height: 13px; background: rgba(59,130,246,0.24); top: 26%; right: 21%; animation-duration: 5.5s; animation-delay: -1s; }
.pr-dot-2 { width: 9px; height: 9px; background: rgba(147,197,253,0.34); top: 64%; left: 14%; animation-duration: 6.5s; animation-delay: -3s; }
.pr-dot-3 { width: 16px; height: 16px; background: rgba(99,179,237,0.18); bottom: 30%; right: 29%; animation-duration: 7s; animation-delay: -2s; }
@keyframes prDotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-17px) scale(1.1); }
}

.pr-cross { position: absolute; width: 24px; height: 24px; pointer-events: none; z-index: 0; animation: prDotFloat ease-in-out infinite; }
.pr-cross::before, .pr-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.20); border-radius: 2px; }
.pr-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.pr-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.pr-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
.pr-cross-2 { bottom: 20%; right: 12%; animation-duration: 6.5s; animation-delay: -4.5s; opacity: 0.6; }

.pr-heading {
  text-align: center;
  margin-bottom: 56px;
}
.pr-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.pr-label i { font-size: 0.8em; }
.pr-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--text-main); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.pr-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pr-heading .pr-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6;
}
.pr-heading .pr-sub span {
  display: inline-block;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.16);
  border-radius: 6px; padding: 1px 8px; margin: 2px 2px;
  font-size: 0.91em; color: #2563eb; font-weight: 600;
}

.pr-tabs {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.pr-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; transition: all 0.28s ease;
  background: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.85);
  color: var(--text-secondary); backdrop-filter: blur(10px);
}
.pr-tab i { font-size: 0.82em; }
.pr-tab.active, .pr-tab:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(59,130,246,0.25);
  color: #2563eb;
  box-shadow: 0 6px 20px rgba(59,130,246,0.12);
}

.pr-table-wrap {
  background: rgba(255,255,255,0.62);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 22px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 28px rgba(31,42,55,0.07);
  overflow: hidden;
  margin-bottom: 24px;
}

.pr-table-header {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1.2fr;
  background: rgba(59,130,246,0.06);
  border-bottom: 1.5px solid rgba(59,130,246,0.1);
  padding: 14px 28px;
  gap: 8px;
}
.pr-th {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light);
}
.pr-th:not(:first-child) { text-align: center; }

.pr-row {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1.2fr;
  padding: 0 28px;
  gap: 8px;
  border-bottom: 1px solid rgba(59,130,246,0.07);
  align-items: center;
  transition: background 0.25s ease;
}
.pr-row:last-child { border-bottom: none; }
.pr-row:hover { background: rgba(255,255,255,0.72); }

.pr-row-group {
  border-bottom: 2px solid rgba(59,130,246,0.1);
  padding: 6px 28px 3px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.03);
}
.pr-row-group span {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #2563eb;
}
.pr-row-group i { font-size: 0.75rem; color: #3b82f6; }

.pr-service {
  padding: 16px 0;
  display: flex; align-items: center; gap: 12px;
}
.pr-service-icon {
  flex: 0 0 36px; height: 36px; border-radius: 9px;
  background: rgba(59,130,246,0.09); border: 1px solid rgba(59,130,246,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.28s;
}
.pr-row:hover .pr-service-icon { background: rgba(59,130,246,0.16); transform: scale(1.08) rotate(-3deg); }
.pr-service-icon i { color: #2563eb; font-size: 0.9rem; }
.pr-service-text strong {
  display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-main); line-height: 1.3; margin-bottom: 2px;
}
.pr-service-text span {
  font-size: 0.76rem; color: var(--text-light);
}

.pr-cell {
  text-align: center;
  padding: 16px 0;
}
.pr-price {
  display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); line-height: 1.2;
}
.pr-price .pr-from { font-size: 0.66rem; font-weight: 500; color: var(--text-light); display: block; margin-bottom: 1px; }
.pr-price .pr-rub { font-size: 1.08rem; color: #2563eb; }
.pr-price .pr-unit { font-size: 0.68rem; color: var(--text-light); }
.pr-dash { color: var(--text-light); font-size: 1rem; }

.pr-popular-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.22);
  color: #b45309; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 5px; margin-top: 3px;
}
.pr-popular-badge i { font-size: 0.7em; }

.pr-action { padding: 16px 0; }
.pr-row-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px; border: none; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; transition: all 0.28s;
  background: rgba(59,130,246,0.08); border: 1.5px solid rgba(59,130,246,0.2);
  color: #2563eb; white-space: nowrap; width: 100%;
  justify-content: center;
}
.pr-row-btn i { font-size: 0.72em; transition: transform 0.28s; }
.pr-row-btn:hover {
  background: #2563eb; border-color: #2563eb; color: white;
  box-shadow: 0 6px 18px rgba(59,130,246,0.28);
  transform: translateY(-1px);
}
.pr-row-btn:hover i { transform: translateX(2px); }

.pr-included {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.pr-incl-card {
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 16px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.38s var(--ease-spring);
  box-shadow: 0 2px 14px rgba(31,42,55,0.05);
}
.pr-incl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd);
  opacity: 0; transition: opacity 0.3s; border-radius: 16px 16px 0 0;
}
.pr-incl-card { position: relative; }
.pr-incl-card:hover::before { opacity: 1; }
.pr-incl-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(31,42,55,0.11);
}
.pr-incl-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(59,130,246,0.09); border: 1px solid rgba(59,130,246,0.17);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.pr-incl-card:hover .pr-incl-icon { background: rgba(59,130,246,0.17); transform: scale(1.08) rotate(-4deg); }
.pr-incl-icon i { color: #2563eb; font-size: 0.95rem; }
.pr-incl-title {
  font-size: 0.88rem; font-weight: 700; color: var(--text-main); line-height: 1.3;
}
.pr-incl-desc {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.5;
}

.pr-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.pr-note {
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 14px rgba(31,42,55,0.05);
}
.pr-note-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--text-main);
}
.pr-note-title i { color: #3b82f6; font-size: 0.9rem; }
.pr-note ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pr-note ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5;
}
.pr-note ul li i { color: #60a5fa; font-size: 0.68rem; flex-shrink: 0; margin-top: 4px; }

.pr-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 18px;
  padding: 28px 30px;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 20px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.36);
  position: relative; overflow: hidden;
}
.pr-cta::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -60px; right: -60px;
  pointer-events: none;
}
.pr-cta::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -40px; left: 20px;
  pointer-events: none;
}
.pr-cta-text { position: relative; z-index: 1; }
.pr-cta-text strong {
  display: block; font-size: 1.12rem; font-weight: 800; color: white; margin-bottom: 5px; line-height: 1.3;
}
.pr-cta-text span {
  font-size: 0.83rem; color: rgba(255,255,255,0.78); line-height: 1.5;
}
.pr-cta-actions {
  display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1;
}
.pr-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 20px; border-radius: 11px; border: none; cursor: pointer;
  font-weight: 700; font-size: 0.88rem; transition: all 0.28s; white-space: nowrap;
}
.pr-cta-btn i { font-size: 0.82em; }
.pr-cta-btn-white {
  background: rgba(255,255,255,0.95); color: #2563eb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.pr-cta-btn-white:hover { background: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.pr-cta-btn-ghost {
  background: rgba(255,255,255,0.12); color: white;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.pr-cta-btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.pr-mobile-cards { display: none; margin-bottom: 24px; }
.pr-m-card {
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 18px; overflow: hidden;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(31,42,55,0.07);
  transition: all 0.42s var(--ease-spring);
}
.pr-m-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.pr-m-card { position: relative; }
.pr-m-card:hover::before { opacity: 1; }
.pr-m-card:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31,42,55,0.12);
}
.pr-m-header {
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(59,130,246,0.08);
  display: flex; align-items: center; gap: 12px;
}
.pr-m-icon {
  flex: 0 0 40px; height: 40px; border-radius: 10px;
  background: rgba(59,130,246,0.09); border: 1px solid rgba(59,130,246,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pr-m-icon i { color: #2563eb; font-size: 0.95rem; }
.pr-m-header-text strong {
  display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); line-height: 1.3;
}
.pr-m-header-text span {
  font-size: 0.75rem; color: var(--text-light);
}
.pr-m-body {
  padding: 14px 20px 18px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 12px;
}
.pr-m-tier {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px; padding: 10px 10px 12px; text-align: center;
}
.pr-m-tier-name {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; display: block;
}
.pr-m-tier-price {
  font-size: 0.92rem; font-weight: 800; color: var(--text-main); display: block; line-height: 1.1;
}
.pr-m-tier-price em {
  font-style: normal; font-size: 0.65rem; font-weight: 500; color: var(--text-light); display: block;
}
.pr-m-footer {
  padding: 0 20px 18px;
}
.pr-m-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; transition: all 0.28s;
  background: rgba(59,130,246,0.09); border: 1.5px solid rgba(59,130,246,0.22);
  color: #2563eb; width: 100%;
}
.pr-m-btn i { font-size: 0.76em; transition: transform 0.28s; }
.pr-m-btn:hover { background: #2563eb; border-color: #2563eb; color: white; box-shadow: 0 6px 18px rgba(59,130,246,0.3); }
.pr-m-btn:hover i { transform: translateX(2px); }

.pr-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.pr-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1200px) {
  .pr-table-header,
  .pr-row { grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr; padding: 0 20px; }
  .pr-table-header { padding: 14px 20px; }
  .pr-row-group { padding: 6px 20px 3px; }
  .pr-included { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .pr-table-wrap { display: none; }
  .pr-mobile-cards { display: flex; flex-direction: column; gap: 10px; }
  .pr-included { grid-template-columns: repeat(2, 1fr); }
  .pr-bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .prices-section { padding: 100px 0 120px; }
  .pr-orb-3 { display: none; }
  .pr-panel-3 { display: none; }
}

@media (max-width: 768px) {
  .pr-bottom { grid-template-columns: 1fr; }
  .pr-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .pr-cta-btn { flex: 1; min-width: 130px; }
}

@media (max-width: 640px) {
  .prices-section { padding: 80px 0 90px; }
  .pr-heading { margin-bottom: 40px; }
  .pr-included { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pr-incl-card { padding: 14px 14px 16px; }
  .pr-incl-title { font-size: 0.83rem; }
  .pr-incl-desc { font-size: 0.75rem; }
  .pr-m-body { grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
  .pr-m-tier { padding: 8px 8px 10px; }
  .pr-m-tier-price { font-size: 1.05rem; }
  .pr-orb-1 { width: 300px; height: 300px; }
  .pr-orb-2 { width: 240px; height: 240px; }
  .pr-ring-1 { display: none; }
  .pr-panel-2 { display: none; }
}

@media (max-width: 480px) {
  .prices-section { padding: 70px 0 80px; }
  .pr-included { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pr-tabs { gap: 5px; }
  .pr-tab { padding: 8px 13px; font-size: 1.05rem; }
  .pr-note { padding: 18px 18px; }
  .pr-cta { padding: 22px 20px; }
  .pr-cta-text strong { font-size: 1rem; }
  .pr-cta-actions { flex-direction: column; }
  .pr-cta-btn { width: 100%; }
  .pr-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
}

@media (max-width: 380px) {
  .prices-section { padding: 60px 0 70px; }
  .pr-included { grid-template-columns: 1fr; gap: 8px; }
  .pr-incl-card { flex-direction: row; align-items: flex-start; padding: 13px 14px; gap: 12px; }
  .pr-incl-icon { flex-shrink: 0; width: 34px; height: 34px; }
  .pr-m-header { padding: 13px 16px 11px; gap: 10px; }
  .pr-m-icon { width: 36px; height: 36px; }
  .pr-m-header-text strong { font-size: 0.88rem; }
  .pr-m-body { grid-template-columns: 1fr 1fr 1fr; gap: 5px; padding: 12px 16px 14px; }
  .pr-m-tier-name { font-size: 0.6rem; }
  .pr-m-tier-price { font-size: 1.05rem; }
  .pr-m-footer { padding: 0 16px 15px; }
  .pr-m-btn { padding: 10px 12px; font-size: 0.8rem; }
  .pr-note { padding: 16px 14px; }
  .pr-cta { padding: 20px 16px; }
  .pr-cta-text strong { font-size: 0.95rem; }
  .pr-cta-text span { font-size: 0.79rem; }
  .pr-cta-btn { padding: 11px 14px; font-size: 1.05rem; }
  .pr-heading h2 { font-size: 1.5rem; }
  .pr-label { font-size: 0.64rem; }
  .pr-heading .pr-sub { font-size: 0.86rem; }
  .pr-tabs { gap: 4px; }
  .pr-tab { padding: 7px 10px; font-size: 1.05rem; }
}











.steps-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 5%  8%,  rgba(255,236,194,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 95% 88%, rgba(207,234,255,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 80%  5%, rgba(255,248,200,0.52) 0%, transparent 55%),
    radial-gradient(ellipse 75% 40% at 50% 110%,rgba(219,240,255,0.36) 0%, transparent 65%),
    linear-gradient(158deg,
      #fffcf7 0%,
      #fdf4e8 25%,
      #f6f9ff 58%,
      #f9fbff 100%);
  background-size: 200% 200%;
  animation: stepsGradFlow 22s ease infinite;
}
@keyframes stepsGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.steps-section::before {
  content: "";
  position: absolute;
  width: 220px; height: 170%;
  top: -35%; left: 40%;
  background: linear-gradient(to right,
    transparent,
    rgba(255,215,100,0.11) 35%,
    rgba(255,230,140,0.19) 50%,
    rgba(255,215,100,0.11) 65%,
    transparent);
  transform: rotate(-24deg);
  pointer-events: none; z-index: 0; filter: blur(22px);
}
.steps-section::after {
  content: "";
  position: absolute;
  width: 160px; height: 140%;
  top: -20%; right: 18%;
  background: linear-gradient(to right,
    transparent,
    rgba(147,210,255,0.09) 40%,
    rgba(186,230,255,0.15) 50%,
    rgba(147,210,255,0.09) 60%,
    transparent);
  transform: rotate(16deg);
  pointer-events: none; z-index: 0; filter: blur(18px);
}
.steps-section .container {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
}

.st-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.st-orb-1 { width: 500px; height: 500px; top: -150px; right: -120px; background: radial-gradient(circle, rgba(186,226,255,0.28) 0%, transparent 65%); }
.st-orb-2 { width: 420px; height: 420px; bottom: -110px; left: -110px; background: radial-gradient(circle, rgba(255,228,160,0.44) 0%, transparent 65%); }
.st-orb-3 { width: 240px; height: 240px; top: 40%; left: 44%; background: radial-gradient(circle, rgba(255,243,199,0.36) 0%, transparent 60%); }

.st-heading {
  text-align: center;
  margin-bottom: 64px;
}
.st-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #b45309; background: rgba(180,83,9,0.07); border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.st-label i { font-size: 0.8em; }
.st-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--text-main); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.st-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.st-heading .st-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6;
}

.st-progress-wrap {
  margin-bottom: 48px;
}
.st-progress-track {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; position: relative;
}

.st-step-node {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex-shrink: 0;
  cursor: pointer;
}

.st-bubble {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(245,158,11,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 2;
  transition: all 0.38s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(31,42,55,0.08);
  backdrop-filter: blur(10px);
}
.st-bubble-inner {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-light);
  transition: all 0.32s ease;
  line-height: 1;
}
.st-bubble.active {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  box-shadow: 0 8px 28px rgba(245,158,11,0.45), 0 0 0 4px rgba(245,158,11,0.15);
}
.st-bubble.active .st-bubble-inner { color: white; font-size: 1.25rem; }
.st-bubble.done {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
  box-shadow: 0 6px 18px rgba(59,130,246,0.32);
}
.st-bubble.done .st-bubble-inner { color: white; }
.st-step-node:hover .st-bubble:not(.active) {
  transform: scale(1.1);
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

.st-bubble-label {
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-light); text-align: center;
  transition: color 0.3s ease;
  line-height: 1.3;
  white-space: nowrap;
  max-width: 80px;
}
.st-bubble-label.active { color: #d97706; font-weight: 700; }
.st-bubble-label.done   { color: #2563eb; }

.st-connector {
  flex: 1; height: 3px; max-width: 120px;
  background: rgba(245,158,11,0.15);
  border-radius: 2px; position: relative; overflow: hidden;
  margin-top: 26px; 
  transition: background 0.4s ease;
  align-self: flex-start;
}
.st-connector::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%; background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  transition: width 0.6s var(--ease-spring);
}
.st-connector.filled::after { width: 100%; }

.st-cards {
  position: relative;
  min-height: 340px;
}

.st-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: row; gap: 28px; align-items: stretch;
  background: rgba(255,255,255,0.68);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 4px 28px rgba(31,42,55,0.08), 0 12px 48px rgba(31,42,55,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
}

.st-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
  transition: opacity 0.42s ease, transform 0.42s var(--ease-spring);
}

.st-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  z-index: 3; border-radius: 22px 22px 0 0;
}
.st-card[data-step="1"]::before { background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b); }
.st-card[data-step="2"]::before { background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6); }
.st-card[data-step="3"]::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6); }
.st-card[data-step="4"]::before { background: linear-gradient(90deg, #10b981, #34d399, #10b981); }
.st-card[data-step="5"]::before { background: linear-gradient(90deg, #f59e0b, #10b981, #3b82f6); }

.st-card-strip {
  flex: 0 0 6px; border-radius: 0;
  align-self: stretch; flex-shrink: 0;
}
.st-card[data-step="1"] .st-card-strip { background: linear-gradient(to bottom, #f59e0b, #fbbf24); }
.st-card[data-step="2"] .st-card-strip { background: linear-gradient(to bottom, #3b82f6, #60a5fa); }
.st-card[data-step="3"] .st-card-strip { background: linear-gradient(to bottom, #8b5cf6, #a78bfa); }
.st-card[data-step="4"] .st-card-strip { background: linear-gradient(to bottom, #10b981, #34d399); }
.st-card[data-step="5"] .st-card-strip { background: linear-gradient(to bottom, #f59e0b, #10b981); }

.st-card-num {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 24px 32px 28px;
}
.st-card-num-inner {
  font-size: 6rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.06));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  user-select: none;
  transition: background 0.3s;
}
.st-card[data-step="2"] .st-card-num-inner { background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.06)); -webkit-background-clip: text; background-clip: text; }
.st-card[data-step="3"] .st-card-num-inner { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.06)); -webkit-background-clip: text; background-clip: text; }
.st-card[data-step="4"] .st-card-num-inner { background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.06)); -webkit-background-clip: text; background-clip: text; }
.st-card[data-step="5"] .st-card-num-inner { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(16,185,129,0.1)); -webkit-background-clip: text; background-clip: text; }

.st-card-body {
  flex: 1; padding: 32px 32px 32px 0;
  display: flex; flex-direction: column; justify-content: space-between; min-width: 0;
}
.st-card-top {}

.st-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 7px; margin-bottom: 10px;
}
.st-card[data-step="1"] .st-card-tag { color: #b45309; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.22); }
.st-card[data-step="2"] .st-card-tag { color: #1e40af; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.22); }
.st-card[data-step="3"] .st-card-tag { color: #5b21b6; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.22); }
.st-card[data-step="4"] .st-card-tag { color: #065f46; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.22); }
.st-card[data-step="5"] .st-card-tag { color: #065f46; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.22); }

.st-card-title {
  font-size: 1.5rem; font-weight: 800; color: var(--text-main);
  line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.02em;
}
.st-card-desc {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 20px;
}

.st-card-chips {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px;
}
.st-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.9);
  border-radius: 8px; padding: 5px 12px;
  font-size: 1.05rem; font-weight: 600; color: var(--text-secondary);
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.st-chip:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(59,130,246,0.2);
  color: var(--text-main);
}
.st-chip i { font-size: 0.72em; color: #3b82f6; }

.st-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.st-card-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; border-radius: 11px; border: none; cursor: pointer;
  font-weight: 700; font-size: 0.88rem; transition: all 0.3s ease; white-space: nowrap;
}
.st-card-btn i { font-size: 0.82em; transition: transform 0.3s; }
.st-card-btn:hover i { transform: translateX(3px); }

.st-card[data-step="1"] .st-card-btn { background: linear-gradient(135deg,#f59e0b,#d97706); color: white; box-shadow: 0 6px 18px rgba(245,158,11,0.32); }
.st-card[data-step="1"] .st-card-btn:hover { background: linear-gradient(135deg,#d97706,#b45309); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,158,11,0.42); }
.st-card[data-step="2"] .st-card-btn { background: linear-gradient(135deg,#3b82f6,#2563eb); color: white; box-shadow: 0 6px 18px rgba(59,130,246,0.32); }
.st-card[data-step="2"] .st-card-btn:hover { background: linear-gradient(135deg,#2563eb,#1d4ed8); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(59,130,246,0.42); }
.st-card[data-step="3"] .st-card-btn { background: linear-gradient(135deg,#8b5cf6,#7c3aed); color: white; box-shadow: 0 6px 18px rgba(139,92,246,0.32); }
.st-card[data-step="3"] .st-card-btn:hover { background: linear-gradient(135deg,#7c3aed,#6d28d9); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(139,92,246,0.42); }
.st-card[data-step="4"] .st-card-btn,
.st-card[data-step="5"] .st-card-btn { background: linear-gradient(135deg,#10b981,#059669); color: white; box-shadow: 0 6px 18px rgba(16,185,129,0.30); }
.st-card[data-step="4"] .st-card-btn:hover,
.st-card[data-step="5"] .st-card-btn:hover { background: linear-gradient(135deg,#059669,#047857); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(16,185,129,0.40); }

.st-nav {
  display: flex; align-items: center; gap: 8px;
}
.st-nav-btn {
  width: 38px; height: 38px; border-radius: 10px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.9);
  color: var(--text-secondary); font-size: 1.05rem;
  transition: all 0.28s ease;
  backdrop-filter: blur(8px);
}
.st-nav-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.95);
  border-color: rgba(59,130,246,0.25);
  color: #2563eb;
  transform: scale(1.08);
}
.st-nav-btn:disabled { opacity: 0.3; cursor: default; }
.st-nav-counter {
  font-size: 1.05rem; font-weight: 600; color: var(--text-light);
  white-space: nowrap;
}

.st-card-side {
  flex: 0 0 160px; padding: 32px 28px 32px 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
}
.st-card-icon-wrap {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.st-card.active .st-card-icon-wrap { animation: stIconPop 0.5s var(--ease-spring); }
@keyframes stIconPop {
  0%   { transform: scale(0.7) rotate(-10deg); }
  60%  { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.st-card[data-step="1"] .st-card-icon-wrap { background: linear-gradient(135deg,#fef3c7,#fde68a); border: 1.5px solid rgba(245,158,11,0.25); }
.st-card[data-step="2"] .st-card-icon-wrap { background: linear-gradient(135deg,#dbeafe,#bfdbfe); border: 1.5px solid rgba(59,130,246,0.25); }
.st-card[data-step="3"] .st-card-icon-wrap { background: linear-gradient(135deg,#ede9fe,#ddd6fe); border: 1.5px solid rgba(139,92,246,0.25); }
.st-card[data-step="4"] .st-card-icon-wrap { background: linear-gradient(135deg,#d1fae5,#a7f3d0); border: 1.5px solid rgba(16,185,129,0.25); }
.st-card[data-step="5"] .st-card-icon-wrap { background: linear-gradient(135deg,#d1fae5,#dbeafe); border: 1.5px solid rgba(16,185,129,0.2); }
.st-card-icon-wrap i { font-size: 2rem; }
.st-card[data-step="1"] .st-card-icon-wrap i { color: #d97706; }
.st-card[data-step="2"] .st-card-icon-wrap i { color: #2563eb; }
.st-card[data-step="3"] .st-card-icon-wrap i { color: #7c3aed; }
.st-card[data-step="4"] .st-card-icon-wrap i { color: #059669; }
.st-card[data-step="5"] .st-card-icon-wrap i { color: #059669; }

.st-card-time {
  text-align: center;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.85);
  border-radius: 12px; padding: 10px 14px; backdrop-filter: blur(8px);
}
.st-card-time strong {
  display: block; font-size: 1.05rem; font-weight: 800; color: var(--text-main); line-height: 1.2;
}
.st-card-time span {
  font-size: 0.68rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
}

.st-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.st-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245,158,11,0.25);
  cursor: pointer; transition: all 0.3s ease;
}
.st-dot.active {
  width: 24px; border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}
.st-dot.done { background: #3b82f6; }

.st-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.st-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .st-card-side { flex: 0 0 130px; }
  .st-card-num { padding: 26px 16px 26px 22px; }
  .st-card-num-inner { font-size: 5rem; }
  .st-card-title { font-size: 1.3rem; }
  .st-connector { max-width: 80px; }
}

@media (max-width: 900px) {
  .steps-section { padding: 100px 0 120px; }
  .st-orb-3 { display: none; }
  .st-card-side { display: none; }
  .st-card-body { padding: 26px 26px 26px 0; }
  .st-card-num-inner { font-size: 4.5rem; }
}

@media (max-width: 768px) {
  .st-bubble { width: 44px; height: 44px; }
  .st-bubble.active { width: 52px; height: 52px; }
  .st-bubble-inner { font-size: 0.95rem; }
  .st-bubble.active .st-bubble-inner { font-size: 1.1rem; }
  .st-connector { max-width: 50px; }
  .st-bubble-label { font-size: 0.65rem; }
  .st-card-num { padding: 22px 12px 22px 18px; }
  .st-card-num-inner { font-size: 3.8rem; }
  .st-card-title { font-size: 1.18rem; }
  .st-card-desc { font-size: 0.88rem; }
}

@media (max-width: 640px) {
  .steps-section { padding: 80px 0 90px; }
  .st-heading { margin-bottom: 44px; }
  .st-card { flex-direction: column; }
  .st-card-strip { flex: 0 0 5px; align-self: unset; width: 100%; height: 5px; }
  .st-card-num { padding: 16px 20px 0; }
  .st-card-num-inner { font-size: 3rem; }
  .st-card-body { padding: 12px 20px 22px; }
  .st-card-title { font-size: 1.12rem; }
  .st-card-desc { font-size: 0.86rem; margin-bottom: 14px; }
  .st-card-chips { gap: 5px; }
  .st-chip { font-size: 0.74rem; padding: 4px 10px; }
  .st-card-bottom { flex-direction: column; align-items: stretch; }
  .st-card-btn { justify-content: center; }
  .st-nav { justify-content: center; }
  .st-bubble-label { display: none; }
  .st-connector { max-width: 32px; }
  .st-orb-1 { width: 300px; height: 300px; }
  .st-orb-2 { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .steps-section { padding: 70px 0 80px; }
  .st-bubble { width: 38px; height: 38px; }
  .st-bubble.active { width: 46px; height: 46px; }
  .st-bubble-inner { font-size: 0.85rem; }
  .st-bubble.active .st-bubble-inner { font-size: 1rem; }
  .st-connector { max-width: 18px; height: 2px; }
  .st-card-num-inner { font-size: 2.5rem; }
  .st-card-title { font-size: 1.05rem; }
  .st-card-btn { padding: 11px 16px; font-size: 1.05rem; }
}

@media (max-width: 380px) {
  .steps-section { padding: 60px 0 70px; }
  .st-progress-wrap { margin-bottom: 32px; }
  .st-bubble { width: 34px; height: 34px; }
  .st-bubble.active { width: 40px; height: 40px; }
  .st-bubble-inner { font-size: 1.05rem; }
  .st-connector { max-width: 12px; }
  .st-card-num { padding: 12px 16px 0; }
  .st-card-num-inner { font-size: 2.1rem; }
  .st-card-body { padding: 8px 16px 18px; }
  .st-card-title { font-size: 1.15rem; }
  .st-card-desc { font-size: 1.05rem; margin-bottom: 10px; }
  .st-chip { font-size: 0.7rem; padding: 3px 8px; }
  .st-card-btn { padding: 10px 14px; font-size: 0.81rem; }
  .st-heading h2 { font-size: 1.5rem; }
  .st-label { font-size: 0.64rem; }
}











.gl-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(135deg,
    #f0f7ff 0%, #e6f0ff 25%, #d9eaff 50%, #cce4ff 75%, #f0f7ff 100%);
  background-size: 200% 200%;
  animation: glGradFlow 18s ease infinite;
}
@keyframes glGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gl-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.58), rgba(223,239,255,0.44),
    rgba(201,228,255,0.34), rgba(255,255,255,0.52));
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none; z-index: 1;
}
.gl-section::after {
  content: "";
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 34%;
  background: linear-gradient(to right,
    transparent, rgba(147,197,253,0.13) 40%,
    rgba(186,230,255,0.22) 50%, rgba(147,197,253,0.13) 60%, transparent);
  transform: rotate(-26deg);
  pointer-events: none; z-index: 1; filter: blur(18px);
}
.gl-section .container {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
}

.gl-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.gl-orb-1 { width: 520px; height: 520px; top: -160px; right: -130px; background: radial-gradient(circle, rgba(147,197,253,0.30) 0%, transparent 65%); }
.gl-orb-2 { width: 400px; height: 400px; bottom: -110px; left: -110px; background: radial-gradient(circle, rgba(186,230,255,0.36) 0%, transparent 65%); }
.gl-orb-3 { width: 260px; height: 260px; top: 42%; left: 44%; background: radial-gradient(circle, rgba(224,242,254,0.40) 0%, transparent 60%); }

.gl-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(59,130,246,0.12); pointer-events: none; z-index: 0; animation: glRingSpin linear infinite; }
.gl-ring-1 { width: 380px; height: 380px; top: -120px; right: -80px; animation-duration: 36s; }
.gl-ring-2 { width: 220px; height: 220px; top: -60px; right: -20px; border-color: rgba(59,130,246,0.07); animation-duration: 22s; animation-direction: reverse; }
@keyframes glRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.gl-panel { position: absolute; background: rgba(255,255,255,0.26); border: 1.5px solid rgba(255,255,255,0.52); border-radius: 9px; backdrop-filter: blur(3px); pointer-events: none; z-index: 0; animation: glPanelFloat ease-in-out infinite; }
.gl-panel::before, .gl-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.08); }
.gl-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.gl-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.gl-panel-1 { width: 64px; height: 82px; top: 18%; right: 5.5%; animation-duration: 7.5s; opacity: 0.75; }
.gl-panel-2 { width: 46px; height: 60px; bottom: 24%; right: 9%; animation-duration: 10s; animation-delay: -4s; opacity: 0.48; }
.gl-panel-3 { width: 54px; height: 70px; top: 55%; left: 2.5%; animation-duration: 9s; animation-delay: -5.5s; opacity: 0.38; }
@keyframes glPanelFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 38% { transform: translateY(-12px) rotate(1deg); } 70% { transform: translateY(-6px) rotate(-0.5deg); } }

.gl-dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; animation: glDotFloat ease-in-out infinite; }
.gl-dot-1 { width: 13px; height: 13px; background: rgba(59,130,246,0.24); top: 26%; right: 21%; animation-duration: 5.5s; animation-delay: -1s; }
.gl-dot-2 { width: 9px; height: 9px; background: rgba(147,197,253,0.34); top: 64%; left: 14%; animation-duration: 6.5s; animation-delay: -3s; }
@keyframes glDotFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-17px) scale(1.1); } }

.gl-cross { position: absolute; width: 24px; height: 24px; pointer-events: none; z-index: 0; animation: glDotFloat ease-in-out infinite; }
.gl-cross::before, .gl-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.20); border-radius: 2px; }
.gl-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.gl-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.gl-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
.gl-cross-2 { bottom: 20%; right: 12%; animation-duration: 6.5s; animation-delay: -4.5s; opacity: 0.6; }

.gl-heading { text-align: center; margin-bottom: 48px; }
.gl-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.gl-label i { font-size: 0.8em; }
.gl-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 800; color: var(--text-main);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.gl-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gl-heading .gl-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; }
.gl-heading .gl-sub i { color: #3b82f6; margin: 0 2px; font-size: 0.7em; }

.gl-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 44px;
}
.gl-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; transition: all 0.28s ease;
  background: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.85);
  color: var(--text-secondary); backdrop-filter: blur(10px);
}
.gl-filter-btn i { font-size: 0.82em; }
.gl-filter-btn:hover,
.gl-filter-btn.gl-active {
  background: rgba(255,255,255,0.92);
  border-color: rgba(59,130,246,0.28);
  color: #2563eb;
  box-shadow: 0 6px 20px rgba(59,130,246,0.14);
}
.gl-filter-btn.gl-active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6; color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.30);
}
.gl-filter-btn.gl-active i { color: rgba(255,255,255,0.85); }

.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.gl-item {
  position: relative; border-radius: 18px; overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(31,42,55,0.08);
  background: rgba(255,255,255,0.5);
  transition: all 0.46s var(--ease-spring);
  display: none;
}
.gl-item.gl-show { display: block; }
.gl-item:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(31,42,55,0.15); }
.gl-item:hover .gl-item-img { transform: scale(1.07); filter: brightness(0.88) saturate(1.1); }
.gl-item:hover .gl-overlay { opacity: 1; }
.gl-item:hover .gl-overlay-body { transform: translateY(0); opacity: 1; }

.gl-item-img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: brightness(0.96) saturate(0.92);
}

.gl-cat-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95); border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.69rem; font-weight: 700; color: #1e40af;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.gl-cat-badge i { color: #3b82f6; font-size: 0.78em; }

.gl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.86) 0%, rgba(15,23,42,0.38) 55%, transparent 100%);
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity 0.36s ease;
  padding: 20px;
}
.gl-overlay-body {
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.36s var(--ease-spring) 0.05s, opacity 0.36s ease 0.05s;
  width: 100%;
}
.gl-overlay-title {
  font-size: 1rem; font-weight: 700; color: white; margin-bottom: 5px; line-height: 1.3;
}
.gl-overlay-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin-bottom: 12px;
}
.gl-overlay-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.gl-otag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 6px;
  padding: 3px 8px; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.gl-otag i { font-size: 0.65em; color: rgba(255,255,255,0.7); }

.gl-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s ease; color: white; font-size: 0.8rem;
}
.gl-item:hover .gl-zoom { opacity: 1; }
.gl-zoom:hover { background: rgba(255,255,255,0.28); transform: scale(1.1); }

.gl-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 32px;
}
.gl-stat-card {
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.88); border-radius: 16px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center; position: relative;
  transition: all 0.38s var(--ease-spring);
  box-shadow: 0 2px 14px rgba(31,42,55,0.05);
}
.gl-stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px; background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd); opacity: 0; transition: opacity 0.3s; border-radius: 16px 16px 0 0; }
.gl-stat-card:hover::before { opacity: 1; }
.gl-stat-card:hover { background: rgba(255,255,255,0.92); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(31,42,55,0.1); }
.gl-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text-main); line-height: 1; letter-spacing: -0.03em; }
.gl-stat-num span { font-size: 1.1rem; color: #3b82f6; }
.gl-stat-label { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.4; }

.gl-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88); border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
}
.gl-cta-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 3px; }
.gl-cta-text span { font-size: 0.88rem; color: var(--text-secondary); }
.gl-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: nowrap; }
.gl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 22px; border-radius: 11px; border: none; cursor: pointer;
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; white-space: nowrap;
}
.gl-btn i { font-size: 0.82em; }
.gl-btn-primary { background: linear-gradient(135deg,#3b82f6,#2563eb); color: white; box-shadow: 0 6px 18px rgba(59,130,246,0.28); }
.gl-btn-primary:hover { background: linear-gradient(135deg,#2563eb,#1d4ed8); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(59,130,246,0.40); }
.gl-btn-outline { background: rgba(255,255,255,0.72); border: 1.5px solid rgba(59,130,246,0.22); color: #2563eb; backdrop-filter: blur(8px); }
.gl-btn-outline:hover { background: rgba(255,255,255,0.95); border-color: #3b82f6; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(59,130,246,0.14); }

.gl-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,17,32,0.92); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 20px;
}
.gl-lightbox.gl-lb-open { opacity: 1; pointer-events: auto; }
.gl-lb-inner {
  max-width: 900px; width: 100%; max-height: 90vh;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 22px; overflow: hidden;
  transform: scale(0.9) translateY(20px); transition: transform 0.36s var(--ease-spring);
  display: flex; flex-direction: column;
}
.gl-lightbox.gl-lb-open .gl-lb-inner { transform: scale(1) translateY(0); }
.gl-lb-img-wrap { position: relative; flex-shrink: 0; }
.gl-lb-img { width: 100%; max-height: 60vh; object-fit: cover; display: block; border-radius: 22px 22px 0 0; }
.gl-lb-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 10px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s;
}
.gl-lb-close:hover { background: rgba(255,255,255,0.28); transform: scale(1.08); }
.gl-lb-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 12px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s;
}
.gl-lb-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.06); }
.gl-lb-nav-btn:disabled { opacity: 0.25; cursor: default; }
.gl-lb-prev { left: 14px; }
.gl-lb-next { right: 14px; }
.gl-lb-info { padding: 20px 24px 24px; }
.gl-lb-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #60a5fa; margin-bottom: 6px; display: block; }
.gl-lb-title { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 6px; line-height: 1.3; }
.gl-lb-desc { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 12px; }
.gl-lb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.gl-lb-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px; padding: 4px 10px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.gl-lb-tag i { font-size: 0.68em; color: #60a5fa; }
.gl-lb-counter { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }

.gl-reveal {
  opacity: 0; transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
  transition-delay: var(--delay, 0s);
}
.gl-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .gl-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gl-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .gl-section { padding: 100px 0 120px; }
  .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gl-stats { grid-template-columns: repeat(2, 1fr); }
  .gl-orb-3, .gl-ring-2, .gl-panel-3 { display: none; }
}
@media (max-width: 768px) {
  .gl-cta { flex-direction: column; align-items: stretch; gap: 20px; }
  .gl-cta-text { text-align: center; }
  .gl-cta-btns { flex-direction: row; justify-content: center; }
  .gl-lb-inner { max-height: 85vh; }
  .gl-lb-img { max-height: 45vh; }
}
@media (max-width: 640px) {
  .gl-section { padding: 80px 0 90px; }
  .gl-heading { margin-bottom: 36px; }
  .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gl-item-img { height: 200px; }
  .gl-filters { gap: 6px; }
  .gl-filter-btn { padding: 8px 14px; font-size: 1.05rem; }
  .gl-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gl-stat-num { font-size: 1.5rem; }
  .gl-orb-1 { width: 300px; height: 300px; }
  .gl-orb-2 { width: 240px; height: 240px; }
  .gl-ring-1 { display: none; }
  .gl-cta { padding: 22px 18px; }
  .gl-cta-btns { flex-direction: column; gap: 10px; }
  .gl-btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 0.85rem; width:100%}
}
@media (max-width: 480px) {
  .gl-section { padding: 70px 0 80px; }
  .gl-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .gl-item-img { height: 170px; }
  .gl-filters { gap: 5px; }
  .gl-filter-btn { padding: 7px 11px; font-size: 1.05rem; }
  .gl-filter-btn i { display: none; }
  .gl-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gl-stat-card { padding: 14px 12px 15px; }
  .gl-stat-num { font-size: 1.35rem; }
  .gl-stat-label { font-size: 0.72rem; }
  .gl-lb-nav-btn { width: 36px; height: 36px; font-size: 1.05rem; }
  .gl-lb-title { font-size: 1.05rem; }
  .gl-lb-desc { font-size: 1.05rem; }
}
@media (max-width: 380px) {
  .gl-section { padding: 60px 0 70px; }
  .gl-heading h2 { font-size: 1.5rem; }
  .gl-label { font-size: 0.64rem; }
  .gl-grid { grid-template-columns: 1fr; gap: 9px; }
  .gl-item-img { height: 210px; }
  .gl-stats { grid-template-columns: 1fr 1fr; }
  .gl-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .gl-filters::-webkit-scrollbar { height: 3px; }
  .gl-filters::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.25); border-radius: 3px; }
  .gl-filter-btn { flex-shrink: 0; padding: 7px 12px; font-size: 0.76rem; }
  .gl-btn { padding: 11px 8px; font-size: 1.05rem; }
  .gl-btn i { display: none; }
  .gl-cta { padding: 18px 14px; gap: 16px; }
  .gl-cta-text strong { font-size: 1.15rem; }
  .gl-cta-text span { font-size: 0.8rem; }
  .gl-lb-info { padding: 14px 16px 18px; }
  .gl-lb-tag { font-size: 0.7rem; padding: 3px 8px; }
}














.faq-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(ellipse 60% 55% at 5%  8%,  rgba(255,236,194,0.60) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 95% 88%, rgba(207,234,255,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 110%,rgba(219,240,255,0.38) 0%, transparent 65%),
    linear-gradient(155deg,
      #fffcf7 0%,
      #fdf4e8 28%,
      #f5f8ff 60%,
      #f8fbff 100%);

  background-size: 200% 200%;
  animation: faqGradFlow 22s ease infinite;
}
@keyframes faqGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.faq-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.faq-orb-1 {
  width: 500px; height: 500px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(186,226,255,0.30) 0%, transparent 65%);
}
.faq-orb-2 {
  width: 400px; height: 400px;
  bottom: -110px; left: -110px;
  background: radial-gradient(circle, rgba(255,228,160,0.40) 0%, transparent 65%);
}
.faq-orb-3 {
  width: 280px; height: 280px;
  top: 35%; left: 44%;
  background: radial-gradient(circle, rgba(255,243,199,0.35) 0%, transparent 60%);
}
.faq-orb-4 {
  width: 180px; height: 180px;
  top: 10%; right: 28%;
  background: radial-gradient(circle, rgba(255,248,200,0.32) 0%, transparent 60%);
}

.faq-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.10);
  pointer-events: none; z-index: 0;
  animation: faqRingSpin linear infinite;
}
.faq-ring-1 { width: 360px; height: 360px; top: -100px; right: -70px; animation-duration: 36s; }
.faq-ring-2 { width: 190px; height: 190px; bottom: 12%; left: -50px; border-color: rgba(59,130,246,0.07); animation-duration: 26s; animation-direction: reverse; }
@keyframes faqRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.faq-panel {
  position: absolute;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: 8px; backdrop-filter: blur(3px);
  pointer-events: none; z-index: 0;
  animation: faqPanelFloat ease-in-out infinite;
}
.faq-panel::before, .faq-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.07); }
.faq-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.faq-panel-1 { width: 62px; height: 80px; top: 18%; right: 5.5%; animation-duration: 7.5s; opacity: 0.70; }
.faq-panel-2 { width: 44px; height: 58px; bottom: 22%; right: 10%; animation-duration: 10s; animation-delay: -4s; opacity: 0.45; }
.faq-panel-3 { width: 52px; height: 68px; top: 54%; left: 2.5%; animation-duration: 9s; animation-delay: -5.5s; opacity: 0.36; }
@keyframes faqPanelFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  38% { transform: translateY(-13px) rotate(1deg); }
  70% { transform: translateY(-6px) rotate(-0.5deg); }
}

.faq-dot {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  animation: faqDotFloat ease-in-out infinite;
}
.faq-dot-1 { width: 12px; height: 12px; background: rgba(59,130,246,0.22); top: 26%; right: 20%; animation-duration: 5.5s; animation-delay: -1s; }
.faq-dot-2 { width: 8px;  height: 8px;  background: rgba(147,197,253,0.32); top: 65%; left: 13%; animation-duration: 6.5s; animation-delay: -3s; }
.faq-dot-3 { width: 16px; height: 16px; background: rgba(255,220,130,0.28); bottom: 30%; right: 30%; animation-duration: 7.2s; animation-delay: -2s; }
@keyframes faqDotFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-16px) scale(1.1); } }

.faq-cross { position: absolute; width: 22px; height: 22px; pointer-events: none; z-index: 0; animation: faqDotFloat ease-in-out infinite; }
.faq-cross::before, .faq-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.18); border-radius: 2px; }
.faq-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.faq-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.faq-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
.faq-cross-2 { bottom: 20%; right: 11%; animation-duration: 6.5s; animation-delay: -4.5s; opacity: 0.55; }

.faq-section .container { position: relative; z-index: 2; }

.faq-heading { text-align: center; margin-bottom: 64px; }
.faq-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #b45309;
  background: rgba(180,83,9,0.07);
  border: 1px solid rgba(180,83,9,0.16);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.faq-label i { font-size: 0.8em; }
.faq-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--text-main, #1f2a37);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.faq-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.faq-heading .faq-sub {
  font-size: 1.05rem; color: var(--text-secondary, #5b6b7c); line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(31,42,55,0.05), 0 6px 28px rgba(31,42,55,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.38s cubic-bezier(0.16,1,0.3,1);
}
.faq-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #f59e0b, #3b82f6, #60a5fa);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
  border-radius: 18px 18px 0 0;
}
.faq-item:hover::before { opacity: 1; }
.faq-item:hover {
  background: rgba(255,255,255,0.90);
  border-color: rgba(59,130,246,0.16);
  box-shadow: 0 12px 40px rgba(31,42,55,0.10), 0 0 0 1px rgba(59,130,246,0.08);
  transform: translateY(-3px);
}
.faq-item.faq-open {
  background: rgba(255,255,255,0.92);
  border-color: rgba(59,130,246,0.18);
  box-shadow: 0 16px 48px rgba(31,42,55,0.12);
  transform: translateY(-3px);
}
.faq-item.faq-open::before { opacity: 1; }

.faq-question {
  width: 100%; padding: 20px 22px;
  text-align: left; background: transparent;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.28s ease;
}
.faq-question:focus-visible { outline: 2px solid #3b82f6; outline-offset: -2px; border-radius: 18px; }

.faq-q-icon {
  flex: 0 0 36px; height: 36px; border-radius: 9px;
  background: rgba(59,130,246,0.09);
  border: 1px solid rgba(59,130,246,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-q-icon i { color: #2563eb; font-size: 0.88rem; }
.faq-item:hover .faq-q-icon,
.faq-item.faq-open .faq-q-icon {
  background: rgba(59,130,246,0.16);
  border-color: rgba(59,130,246,0.30);
  transform: scale(1.08) rotate(-4deg);
}

.faq-q-text {
  flex: 1; min-width: 0;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-main, #1f2a37);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-item.faq-open .faq-q-text { color: #1a2f4a; }

.faq-q-arr {
  flex: 0 0 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.70);
  border: 1.5px solid rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-q-arr i { color: var(--text-light, #8fa1b3); font-size: 0.72rem; transition: color 0.25s; }
.faq-item.faq-open .faq-q-arr {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.22);
  transform: rotate(180deg);
}
.faq-item.faq-open .faq-q-arr i { color: #2563eb; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.faq-open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 22px 20px 72px;
}
.faq-answer-inner p {
  font-size: 0.88rem;
  color: var(--text-secondary, #5b6b7c);
  line-height: 1.65; margin: 0;
  padding-top: 2px;
  border-top: 1px solid rgba(59,130,246,0.08);
  padding-top: 14px;
}

.faq-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 30px 38px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
}
.faq-cta-text { flex: 1; min-width: 240px; }
.faq-cta-text strong {
  display: block; font-size: 1.1rem; font-weight: 700;
  color: var(--text-main, #1f2a37); margin-bottom: 3px;
}
.faq-cta-text span { font-size: 0.88rem; color: var(--text-secondary, #5b6b7c); }
.faq-cta-btns {
  display: flex; flex-direction: row;
  gap: 12px; flex-shrink: 0; flex-wrap: nowrap;
}
.faq-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.3s ease;
  border: none; white-space: nowrap;
}
.faq-btn i { font-size: 0.82em; }
.faq-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white; box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.faq-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(59,130,246,0.42);
}
.faq-btn-outline {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(59,130,246,0.26);
  color: #2563eb; backdrop-filter: blur(8px);
}
.faq-btn-outline:hover {
  background: rgba(255,255,255,0.95);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.14);
}

.faq-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.faq-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .faq-grid { gap: 14px; }
  .faq-q-text { font-size: 0.92rem; }
  .faq-orb-3, .faq-orb-4 { display: none; }
}
@media (max-width: 900px) {
  .faq-section { padding: 100px 0 120px; }
  .faq-ring-1 { display: none; }
  .faq-panel-3 { display: none; }
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 10px; }
  .faq-cta { flex-direction: column; align-items: stretch; gap: 22px; }
  .faq-cta-text { min-width: unset; text-align: center; }
  .faq-cta-btns { flex-direction: row; justify-content: center; gap: 12px; }
  .faq-heading { margin-bottom: 44px; }
}
@media (max-width: 640px) {
  .faq-section { padding: 80px 0 90px; }
  .faq-question { padding: 16px 18px; gap: 12px; }
  .faq-q-icon { flex: 0 0 32px; height: 32px; border-radius: 8px; }
  .faq-q-icon i { font-size: 0.8rem; }
  .faq-q-text { font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 18px 18px 62px; }
  .faq-answer-inner p { font-size: 1.05rem; }
  .faq-cta { padding: 22px 20px; }
  .faq-cta-btns { gap: 10px; }
  .faq-btn { flex: 1; justify-content: center; padding: 12px 12px; font-size: 0.86rem; }
  .faq-orb-1 { width: 300px; height: 300px; }
  .faq-orb-2 { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
  .faq-section { padding: 70px 0 80px; }
  .faq-item { border-radius: 14px; }
  .faq-question { padding: 14px 16px; gap: 10px; }
  .faq-q-icon { flex: 0 0 30px; height: 30px; border-radius: 7px; }
  .faq-q-icon i { font-size: 0.74rem; }
  .faq-q-text { font-size: 0.86rem; }
  .faq-q-arr { flex: 0 0 24px; height: 24px; border-radius: 6px; }
  .faq-q-arr i { font-size: 0.64rem; }
  .faq-answer-inner { padding: 0 16px 16px 56px; }
  .faq-answer-inner p { font-size: 1.05rem; line-height: 1.6; }
  .faq-cta-text strong { font-size: 1rem; }
  .faq-cta-text span { font-size: 1.05rem; }
  .faq-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
  .faq-ring-2 { display: none; }
}
@media (max-width: 380px) {
  .faq-section { padding: 60px 0 70px; }
  .faq-heading { margin-bottom: 36px; }
  .faq-heading h2 { font-size: 1.5rem; }
  .faq-label { font-size: 0.64rem; }
  .faq-heading .faq-sub { font-size: 0.86rem; }
  .faq-question { padding: 13px 14px; gap: 9px; }
  .faq-q-icon { flex: 0 0 28px; height: 28px; border-radius: 7px; }
  .faq-q-icon i { font-size: 0.7rem; }
  .faq-q-text { font-size: 0.83rem; line-height: 1.35; }
  .faq-q-arr { flex: 0 0 22px; height: 22px; }
  .faq-answer-inner { padding: 0 14px 14px 14px; }
  .faq-answer-inner p { font-size: 0.8rem; }
  .faq-col { gap: 9px; }
  .faq-grid { gap: 9px; margin-bottom: 36px; }
  .faq-cta { padding: 18px 14px; gap: 16px; border-radius: 16px; }
  .faq-cta-text strong { font-size: 0.95rem; }
  .faq-cta-text span { font-size: 0.8rem; }
  .faq-btn { padding: 10px 10px; font-size: 1.05rem; gap: 5px; }
  .faq-btn i { display: none; }
}











.rv-section {
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(135deg,
    #f0f7ff 0%, #e6f0ff 25%, #d9eaff 50%, #cce4ff 75%, #f0f7ff 100%);
  background-size: 200% 200%;
  animation: rvGradFlow 18s ease infinite;
}
@keyframes rvGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.rv-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.58),
    rgba(223,239,255,0.44),
    rgba(201,228,255,0.32),
    rgba(255,255,255,0.50));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none; z-index: 1;
}
.rv-section::after {
  content: "";
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 34%;
  background: linear-gradient(to right,
    transparent, rgba(147,197,253,0.13) 40%,
    rgba(186,230,255,0.22) 50%, rgba(147,197,253,0.13) 60%, transparent);
  transform: rotate(-26deg);
  pointer-events: none; z-index: 1; filter: blur(18px);
}

.rv-section .container { position: relative; z-index: 2; }

.rv-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.rv-orb-1 { width: 540px; height: 540px; top: -170px; right: -140px; background: radial-gradient(circle, rgba(147,197,253,0.32) 0%, transparent 65%); }
.rv-orb-2 { width: 420px; height: 420px; bottom: -120px; left: -120px; background: radial-gradient(circle, rgba(186,230,255,0.38) 0%, transparent 65%); }
.rv-orb-3 { width: 280px; height: 280px; top: 40%; left: 44%; background: radial-gradient(circle, rgba(224,242,254,0.40) 0%, transparent 60%); }

.rv-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(59,130,246,0.12); pointer-events: none; z-index: 0; animation: rvRingSpin linear infinite; }
.rv-ring-1 { width: 380px; height: 380px; top: -120px; right: -80px; animation-duration: 35s; }
.rv-ring-2 { width: 220px; height: 220px; top: -60px; right: -20px; border-color: rgba(59,130,246,0.07); animation-duration: 22s; animation-direction: reverse; }
.rv-ring-3 { width: 160px; height: 160px; bottom: 18%; left: -50px; border-color: rgba(99,179,237,0.08); animation-duration: 28s; }
@keyframes rvRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.rv-panel { position: absolute; background: rgba(255,255,255,0.26); border: 1.5px solid rgba(255,255,255,0.52); border-radius: 9px; backdrop-filter: blur(3px); pointer-events: none; z-index: 0; animation: rvPanelFloat ease-in-out infinite; }
.rv-panel::before, .rv-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.08); }
.rv-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.rv-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.rv-panel-1 { width: 66px; height: 84px; top: 18%; right: 6%; animation-duration: 7s; opacity: 0.75; }
.rv-panel-2 { width: 48px; height: 62px; bottom: 24%; right: 10%; animation-duration: 9.5s; animation-delay: -3.5s; opacity: 0.50; }
.rv-panel-3 { width: 56px; height: 72px; top: 52%; left: 3%; animation-duration: 8.5s; animation-delay: -5s; opacity: 0.38; }
@keyframes rvPanelFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 35% { transform: translateY(-13px) rotate(1deg); } 68% { transform: translateY(-6px) rotate(-0.5deg); } }

.rv-dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; animation: rvDotFloat ease-in-out infinite; }
.rv-dot-1 { width: 13px; height: 13px; background: rgba(59,130,246,0.24); top: 25%; right: 22%; animation-duration: 5.5s; animation-delay: -1s; }
.rv-dot-2 { width: 9px;  height: 9px;  background: rgba(147,197,253,0.35); top: 62%; left: 15%; animation-duration: 6.5s; animation-delay: -3s; }
.rv-dot-3 { width: 17px; height: 17px; background: rgba(99,179,237,0.18); bottom: 32%; right: 30%; animation-duration: 7.2s; animation-delay: -2s; }
.rv-dot-4 { width: 10px; height: 10px; background: rgba(59,130,246,0.20); top: 70%; right: 15%; animation-duration: 8s; animation-delay: -4s; }
@keyframes rvDotFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.1); } }

.rv-cross { position: absolute; width: 26px; height: 26px; pointer-events: none; z-index: 0; animation: rvDotFloat ease-in-out infinite; }
.rv-cross::before, .rv-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.20); border-radius: 2px; }
.rv-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.rv-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.rv-cross-1 { top: 22%; left: 9%; animation-duration: 8s; animation-delay: -2s; }
.rv-cross-2 { bottom: 22%; right: 11%; animation-duration: 6.5s; animation-delay: -4s; opacity: 0.6; }

.rv-heading { text-align: center; margin-bottom: 56px; }
.rv-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.rv-label i { font-size: 0.8em; }
.rv-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--text-main, #1f2a37); line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 14px;
}
.rv-heading h2 .h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rv-heading .rv-sub { font-size: 1.05rem; color: var(--text-secondary, #5b6b7c); line-height: 1.6; margin-bottom: 24px; }
.rv-heading .rv-sub span { font-weight: 700; color: #2563eb; }

.rv-trust-row {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.rv-trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.72); border: 1.5px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); border-radius: 10px; padding: 7px 14px;
  font-size: 1.05rem; font-weight: 600; color: var(--text-main, #1f2a37);
}
.rv-trust-chip i.fa-star { color: #fbbf24; font-size: 0.72em; }
.rv-trust-chip--light { color: var(--text-secondary, #5b6b7c); font-weight: 500; }
.rv-trust-chip--light i { color: #3b82f6; font-size: 0.8em; }
.rv-trust-sep { width: 1px; height: 22px; background: rgba(59,130,246,0.15); flex-shrink: 0; }

.rv-swiper {
  width: 100%;
  padding: 12px 4px 60px !important;
  overflow: visible !important;
  margin-bottom: 0;
}
.rv-swiper .swiper-wrapper { align-items: stretch; }
.rv-swiper .swiper-slide { height: auto; display: flex; }

.rv-card {
  width: 100%;
  background: rgba(255,255,255,0.68);
  border: 1.5px solid rgba(255,255,255,0.88);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07), 0 10px 42px rgba(31,42,55,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: all 0.46s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden; position: relative; cursor: default;
  display: flex;
  --rv-accent: #3b82f6;
}

.rv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rv-accent), #60a5fa, var(--rv-accent));
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.rv-card:hover::before { opacity: 1; }

.rv-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59,130,246,0.05), transparent);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.rv-card:hover::after { opacity: 1; }

.rv-card:hover {
  background: rgba(255,255,255,0.94);
  border-color: rgba(59,130,246,0.18);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(31,42,55,0.13), 0 0 0 1px rgba(59,130,246,0.09);
}

.rv-card[data-color="amber"] { --rv-accent: #f59e0b; }
.rv-card[data-color="amber"]::before { background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b); }
.rv-card[data-color="green"] { --rv-accent: #10b981; }
.rv-card[data-color="green"]::before { background: linear-gradient(90deg, #10b981, #34d399, #10b981); }
.rv-card[data-color="purple"] { --rv-accent: #8b5cf6; }
.rv-card[data-color="purple"]::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6); }

.rv-card-inner {
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1; position: relative; z-index: 2;
}

.rv-card-quote {
  position: absolute; top: 18px; right: 22px;
  font-size: 3.2rem; line-height: 1;
  color: rgba(59,130,246,0.07);
  transition: color 0.35s;
  pointer-events: none;
}
.rv-card[data-color="amber"] .rv-card-quote { color: rgba(245,158,11,0.07); }
.rv-card[data-color="green"]  .rv-card-quote { color: rgba(16,185,129,0.07); }
.rv-card[data-color="purple"] .rv-card-quote { color: rgba(139,92,246,0.07); }
.rv-card:hover .rv-card-quote { color: rgba(59,130,246,0.13); }
.rv-card[data-color="amber"]:hover .rv-card-quote { color: rgba(245,158,11,0.13); }
.rv-card[data-color="green"]:hover  .rv-card-quote { color: rgba(16,185,129,0.13); }
.rv-card[data-color="purple"]:hover .rv-card-quote { color: rgba(139,92,246,0.13); }

.rv-card-top {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

.rv-card-avatar {
  flex: 0 0 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);

  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 1.5px solid rgba(59,130,246,0.22);
  color: #1d4ed8;
  box-shadow: 0 4px 14px rgba(59,130,246,0.15);
}
.rv-card-avatar[data-color="amber"] {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: rgba(245,158,11,0.25);
  color: #b45309;
  box-shadow: 0 4px 14px rgba(245,158,11,0.18);
}
.rv-card-avatar[data-color="green"] {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-color: rgba(16,185,129,0.25);
  color: #065f46;
  box-shadow: 0 4px 14px rgba(16,185,129,0.16);
}
.rv-card-avatar[data-color="purple"] {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border-color: rgba(139,92,246,0.25);
  color: #5b21b6;
  box-shadow: 0 4px 14px rgba(139,92,246,0.16);
}
.rv-card:hover .rv-card-avatar { transform: scale(1.1) rotate(-4deg); }

.rv-card-meta { flex: 1; min-width: 0; }
.rv-card-meta strong {
  display: block; font-size: 0.96rem; font-weight: 700;
  color: var(--text-main, #1f2a37); line-height: 1.2; margin-bottom: 4px;
}
.rv-stars { display: flex; gap: 2px; }
.rv-stars i { color: #fbbf24; font-size: 0.72rem; }

.rv-card-badge {
  display: inline-flex; align-items: center;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 7px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.16);
  color: #1d4ed8; white-space: nowrap;
  transition: all 0.3s;
}
.rv-card[data-color="amber"] .rv-card-badge {
  background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.18); color: #92400e;
}
.rv-card[data-color="green"] .rv-card-badge {
  background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.18); color: #065f46;
}
.rv-card[data-color="purple"] .rv-card-badge {
  background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.18); color: #5b21b6;
}

.rv-card-text {
  font-size: 0.88rem; color: var(--text-secondary, #5b6b7c);
  line-height: 1.65; margin: 0; flex-grow: 1;
}

.rv-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap; margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(59,130,246,0.07);
}
.rv-card[data-color="amber"] .rv-card-footer { border-color: rgba(245,158,11,0.07); }
.rv-card[data-color="green"]  .rv-card-footer { border-color: rgba(16,185,129,0.07); }
.rv-card[data-color="purple"] .rv-card-footer { border-color: rgba(139,92,246,0.07); }

.rv-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; color: var(--text-secondary, #5b6b7c); font-weight: 500;
}
.rv-card-tag i { color: #3b82f6; font-size: 0.7em; }
.rv-card[data-color="amber"] .rv-card-tag i { color: #d97706; }
.rv-card[data-color="green"]  .rv-card-tag i { color: #059669; }
.rv-card[data-color="purple"] .rv-card-tag i { color: #7c3aed; }

.rv-helpful {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.88);
  border-radius: 8px; padding: 5px 11px;
  font-size: 0.74rem; font-weight: 600;
  color: var(--text-secondary, #5b6b7c); cursor: pointer;
  transition: all 0.28s ease; backdrop-filter: blur(8px);
  white-space: nowrap;
}
.rv-helpful i { font-size: 0.8em; transition: transform 0.3s; }
.rv-helpful:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(59,130,246,0.25);
  color: #2563eb;
}
.rv-helpful:hover i { transform: translateY(-2px) scale(1.15); }
.rv-helpful.rv-liked {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.28);
  color: #2563eb;
}
.rv-helpful.rv-liked i { color: #2563eb; }
.rv-helpful em { font-style: normal; }

.rv-swiper-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 28px;
}
.rv-nav-btn {
  flex: 0 0 40px; height: 40px; border-radius: 11px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.72); border: 1.5px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); color: var(--text-secondary, #5b6b7c);
  font-size: 1.05rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.28s ease; box-shadow: 0 4px 14px rgba(31,42,55,0.07);
}
.rv-nav-btn:hover {
  background: rgba(255,255,255,0.96); border-color: rgba(59,130,246,0.25);
  color: #2563eb; transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(59,130,246,0.15);
}
.rv-nav-btn:active { transform: scale(0.96); }

.rv-pagination.swiper-pagination {
  position: static; display: flex; align-items: center; gap: 6px;
}
.rv-pagination .swiper-pagination-bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(59,130,246,0.25); opacity: 1;
  transition: all 0.3s ease; margin: 0 !important;
  flex-shrink: 0;
}
.rv-pagination .swiper-pagination-bullet-active {
  width: 22px; border-radius: 4px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  box-shadow: 0 2px 8px rgba(59,130,246,0.35);
}

.rv-cta {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 30px 38px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(31,42,55,0.07);
  margin-top: 40px;
}
.rv-cta-text { flex: 1; min-width: 240px; }
.rv-cta-text strong {
  display: block; font-size: 1.1rem; font-weight: 700;
  color: var(--text-main, #1f2a37); margin-bottom: 3px;
}
.rv-cta-text span { font-size: 0.88rem; color: var(--text-secondary, #5b6b7c); }
.rv-cta-btns { display: flex; flex-direction: row; gap: 12px; flex-shrink: 0; flex-wrap: nowrap; }
.rv-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.3s ease; border: none; white-space: nowrap;
}
.rv-btn i { font-size: 0.82em; }
.rv-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white; box-shadow: 0 6px 20px rgba(59,130,246,0.32);
}
.rv-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(59,130,246,0.42);
}
.rv-btn-outline {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(59,130,246,0.26);
  color: #2563eb; backdrop-filter: blur(8px);
}
.rv-btn-outline:hover {
  background: rgba(255,255,255,0.95); border-color: #3b82f6;
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(59,130,246,0.14);
}

.rv-reveal {
  opacity: 0; transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.rv-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .rv-orb-3 { display: none; }
  .rv-panel-3 { display: none; }
}
@media (max-width: 900px) {
  .rv-section { padding: 100px 0 120px; }
  .rv-ring-1 { display: none; }
}
@media (max-width: 768px) {
  .rv-cta { flex-direction: column; align-items: stretch; gap: 22px; }
  .rv-cta-text { min-width: unset; text-align: center; }
  .rv-cta-btns { flex-direction: row; justify-content: center; gap: 12px; }
  .rv-trust-sep { display: none; }
  .rv-trust-row { gap: 8px; }
}
@media (max-width: 640px) {
  .rv-section { padding: 80px 0 90px; }
  .rv-heading { margin-bottom: 40px; }
  .rv-card-inner { padding: 20px 20px 18px; gap: 13px; }
  .rv-card-quote { font-size: 2.6rem; top: 14px; right: 16px; }
  .rv-card-avatar { flex: 0 0 40px; height: 40px; border-radius: 11px; font-size: 0.8rem; }
  .rv-card-meta strong { font-size: 0.92rem; }
  .rv-card-badge { font-size: 0.62rem; padding: 2px 7px; }
  .rv-card-text { font-size: 0.85rem; }
  .rv-card-footer { padding-top: 12px; }
  .rv-cta { padding: 22px 20px; }
  .rv-cta-btns { gap: 10px; }
  .rv-btn { flex: 1; justify-content: center; padding: 12px 12px; font-size: 0.86rem; }
  .rv-swiper { padding: 8px 4px 52px !important; }
  .rv-orb-1 { width: 300px; height: 300px; }
  .rv-orb-2 { width: 240px; height: 240px; }
  .rv-panel-2 { display: none; }
  .rv-ring-2 { display: none; }
}
@media (max-width: 480px) {
  .rv-section { padding: 70px 0 80px; }
  .rv-card { border-radius: 18px; }
  .rv-card-inner { padding: 18px 18px 16px; gap: 12px; }
  .rv-card-quote { font-size: 2.2rem; top: 12px; right: 14px; }
  .rv-card-avatar { flex: 0 0 38px; height: 38px; border-radius: 10px; font-size: 0.76rem; }
  .rv-card-meta strong { font-size: 0.88rem; }
  .rv-card-text { font-size: 0.83rem; line-height: 1.6; }
  .rv-card-tag { font-size: 0.71rem; }
  .rv-helpful { font-size: 0.71rem; padding: 4px 9px; }
  .rv-heading h2 { font-size: clamp(1.65rem, 6vw, 2.8rem); }
  .rv-trust-chip { font-size: 0.76rem; padding: 5px 10px; }
}
@media (max-width: 380px) {
  .rv-section { padding: 60px 0 70px; }
  .rv-heading { margin-bottom: 32px; }
  .rv-heading h2 { font-size: 1.5rem; }
  .rv-label { font-size: 0.64rem; }
  .rv-heading .rv-sub { font-size: 0.86rem; }
  .rv-card { border-radius: 16px; }
  .rv-card-inner { padding: 16px 16px 14px; gap: 11px; }
  .rv-card-top { gap: 9px; }
  .rv-card-avatar { flex: 0 0 34px; height: 34px; border-radius: 9px; font-size: 0.72rem; }
  .rv-card-meta strong { font-size: 1.05rem; }
  .rv-stars i { font-size: 0.66rem; }
  .rv-card-badge { display: none; }
  .rv-card-text { font-size: 0.8rem; line-height: 1.58; }
  .rv-card-tag { font-size: 0.68rem; }
  .rv-helpful { font-size: 0.68rem; padding: 4px 8px; gap: 4px; }
  .rv-helpful span { display: none; }
  .rv-card-footer { padding-top: 10px; gap: 8px; }
  .rv-card-quote { font-size: 1.9rem; top: 10px; right: 12px; }
  .rv-cta { padding: 18px 14px; border-radius: 16px; gap: 16px; }
  .rv-cta-text strong { font-size: 0.95rem; }
  .rv-cta-text span { font-size: 0.8rem; }
  .rv-btn { padding: 10px 10px; font-size: 1.05rem; gap: 5px; }
  .rv-btn i { display: none; }
  .rv-trust-chip { font-size: 0.7rem; padding: 4px 8px; }
  .rv-nav-btn { flex: 0 0 36px; height: 36px; border-radius: 9px; }
  .rv-swiper-nav { gap: 10px; }
}
















.fc-section {
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg,
    #f0f7ff 0%, #e6f0ff 25%, #d9eaff 50%, #cce4ff 75%, #f0f7ff 100%);
  background-size: 200% 200%;
  animation: fcGradFlow 18s ease infinite;
}
@keyframes fcGradFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.fc-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.56),
    rgba(223,239,255,0.40),
    rgba(201,228,255,0.30),
    rgba(255,255,255,0.48));
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none; z-index: 1;
}
.fc-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 160%;
  top: -30%; left: 34%;
  background: linear-gradient(to right,
    transparent, rgba(147,197,253,0.13) 40%,
    rgba(186,230,255,0.22) 50%, rgba(147,197,253,0.13) 60%, transparent);
  transform: rotate(-26deg);
  pointer-events: none; z-index: 1; filter: blur(18px);
}
.fc-section .container { position: relative; z-index: 2; }

.fc-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.fc-orb-1 { width: 600px; height: 600px; top: -200px; right: -160px; background: radial-gradient(circle, rgba(147,197,253,0.30) 0%, transparent 65%); }
.fc-orb-2 { width: 450px; height: 450px; bottom: -150px; left: -130px; background: radial-gradient(circle, rgba(186,230,255,0.36) 0%, transparent 65%); }
.fc-orb-3 { width: 300px; height: 300px; top: 35%; left: 42%; background: radial-gradient(circle, rgba(224,242,254,0.38) 0%, transparent 60%); }

.fc-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(59,130,246,0.10); pointer-events: none; z-index: 0; animation: fcRingSpin linear infinite; }
.fc-ring-1 { width: 420px; height: 420px; top: -130px; right: -90px; animation-duration: 38s; }
.fc-ring-2 { width: 240px; height: 240px; top: -70px; right: -25px; border-color: rgba(59,130,246,0.06); animation-duration: 24s; animation-direction: reverse; }
.fc-ring-3 { width: 180px; height: 180px; bottom: 15%; left: -55px; border-color: rgba(99,179,237,0.07); animation-duration: 30s; }
@keyframes fcRingSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.fc-panel { position: absolute; background: rgba(255,255,255,0.24); border: 1.5px solid rgba(255,255,255,0.50); border-radius: 9px; backdrop-filter: blur(3px); pointer-events: none; z-index: 0; animation: fcPanelFloat ease-in-out infinite; }
.fc-panel::before, .fc-panel::after { content: ''; position: absolute; background: rgba(59,130,246,0.07); }
.fc-panel::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.fc-panel::after  { height: 1.5px; width: 100%; top: 50%; transform: translateY(-50%); }
.fc-panel-1 { width: 70px; height: 90px; top: 15%; left: 8%; animation-duration: 7.2s; opacity: 0.70; }
.fc-panel-2 { width: 52px; height: 66px; bottom: 20%; right: 6%; animation-duration: 9.8s; animation-delay: -3.5s; opacity: 0.48; }
.fc-panel-3 { width: 44px; height: 56px; top: 55%; right: 4%; animation-duration: 8.2s; animation-delay: -5s; opacity: 0.35; }
@keyframes fcPanelFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 35% { transform: translateY(-14px) rotate(1deg); } 68% { transform: translateY(-7px) rotate(-0.5deg); } }

.fc-dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; animation: fcDotFloat ease-in-out infinite; }
.fc-dot-1 { width: 14px; height: 14px; background: rgba(59,130,246,0.22); top: 22%; left: 22%; animation-duration: 5.5s; }
.fc-dot-2 { width: 9px;  height: 9px;  background: rgba(147,197,253,0.32); top: 65%; left: 12%; animation-duration: 6.8s; animation-delay: -3s; }
.fc-dot-3 { width: 18px; height: 18px; background: rgba(99,179,237,0.16); bottom: 28%; right: 28%; animation-duration: 7.5s; animation-delay: -2s; }
.fc-dot-4 { width: 11px; height: 11px; background: rgba(59,130,246,0.18); top: 75%; right: 14%; animation-duration: 8.2s; animation-delay: -4s; }
@keyframes fcDotFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.1); } }

.fc-cross { position: absolute; width: 28px; height: 28px; pointer-events: none; z-index: 0; animation: fcDotFloat ease-in-out infinite; }
.fc-cross::before, .fc-cross::after { content: ''; position: absolute; background: rgba(59,130,246,0.18); border-radius: 2px; }
.fc-cross::before { width: 100%; height: 2.5px; top: 50%; transform: translateY(-50%); }
.fc-cross::after  { height: 100%; width: 2.5px; left: 50%; transform: translateX(-50%); }
.fc-cross-1 { top: 18%; right: 20%; animation-duration: 8s; animation-delay: -2s; }
.fc-cross-2 { bottom: 25%; left: 10%; animation-duration: 6.8s; animation-delay: -4s; opacity: 0.6; }
.fc-cross-3 { top: 50%; left: 30%; animation-duration: 9s; animation-delay: -1.5s; opacity: 0.4; }

.fc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 44px;
}

.fc-left { display: flex; flex-direction: column; gap: 24px; }

.fc-label {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  padding: 5px 14px; border-radius: 20px;
}
.fc-label i { font-size: 0.85em; }

.fc-left h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-main, #1f2a37); margin: 0;
}
.fc-h2-accent {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.fc-subtitle {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.88rem; font-weight: 600; color: var(--text-main, #1f2a37); margin: 0;
}
.fc-subtitle i { color: #3b82f6; font-size: 0.8em; }
.fc-sep { color: rgba(59,130,246,0.35); }

.fc-desc {
  font-size: 0.95rem; color: var(--text-secondary, #5b6b7c);
  line-height: 1.65; margin: 0;
}

.fc-btns { display: flex; flex-direction: column; gap: 12px; }

.fc-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px;
  border-radius: 16px; border: none; cursor: pointer;
  transition: all 0.38s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none; position: relative; overflow: hidden;
  text-align: left;
}
.fc-btn-icon {
  flex: 0 0 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.fc-btn-text { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.fc-btn-text em { font-style: normal; font-weight: 700; font-size: 0.96rem; }
.fc-btn-text small { font-size: 0.74rem; opacity: 0.72; font-weight: 400; margin-top: 2px; }
.fc-btn-arr { flex-shrink: 0; font-size: 1.05rem; opacity: 0.6; transition: transform 0.35s ease; }

.fc-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 28px rgba(59,130,246,0.32);
}
.fc-btn-primary .fc-btn-icon { background: rgba(255,255,255,0.18); color: white; }
.fc-btn-primary .fc-btn-text em, .fc-btn-primary .fc-btn-text small { color: white; }
.fc-btn-primary .fc-btn-arr { color: white; }
.fc-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(59,130,246,0.44);
}
.fc-btn-primary:hover .fc-btn-icon { transform: scale(1.1) rotate(-6deg); }
.fc-btn-primary:hover .fc-btn-arr { transform: translateX(4px); opacity: 1; }

.fc-btn-secondary {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(59,130,246,0.20);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(31,42,55,0.07);
}
.fc-btn-secondary .fc-btn-icon { background: rgba(59,130,246,0.09); color: #2563eb; }
.fc-btn-secondary .fc-btn-text em { color: var(--text-main, #1f2a37); }
.fc-btn-secondary .fc-btn-text small { color: var(--text-secondary, #5b6b7c); }
.fc-btn-secondary:hover {
  background: rgba(255,255,255,0.96); border-color: rgba(59,130,246,0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(59,130,246,0.14);
}
.fc-btn-secondary:hover .fc-btn-icon { transform: scale(1.1) rotate(-6deg); background: rgba(59,130,246,0.14); }

.fc-btn-phone {
  background: rgba(255,255,255,0.50);
  border: 1.5px solid rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(31,42,55,0.06);
}
.fc-btn-phone .fc-btn-icon { background: rgba(16,185,129,0.10); color: #059669; }
.fc-btn-phone .fc-btn-text em { color: #059669; font-size: 1rem; }
.fc-btn-phone .fc-btn-text small { color: var(--text-secondary, #5b6b7c); }
.fc-btn-phone:hover {
  background: rgba(255,255,255,0.95); border-color: rgba(16,185,129,0.30);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(16,185,129,0.14);
}
.fc-btn-phone:hover .fc-btn-icon { transform: scale(1.1) rotate(-6deg); background: rgba(16,185,129,0.16); }

.fc-ripple::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.fc-ripple:active::after {
  width: 300px; height: 300px; opacity: 0;
}

.fc-tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.71rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 9px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.85);
  color: var(--text-secondary, #5b6b7c);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.fc-tag i { color: #3b82f6; font-size: 0.72em; }
.fc-tag:hover { background: rgba(255,255,255,0.96); border-color: rgba(59,130,246,0.22); color: #2563eb; transform: translateY(-2px); }

.fc-right {
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.90);
  border-radius: 26px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 36px rgba(31,42,55,0.09), 0 2px 8px rgba(59,130,246,0.05);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.42s ease;
}
.fc-right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #2563eb);
}
.fc-right:hover { box-shadow: 0 20px 60px rgba(31,42,55,0.12), 0 0 0 1px rgba(59,130,246,0.08); }

.fc-card-header { display: flex; align-items: center; gap: 14px; }
.fc-card-icon-wrap {
  flex: 0 0 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(59,130,246,0.30);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.fc-right:hover .fc-card-icon-wrap { transform: scale(1.08) rotate(-4deg); }
.fc-card-header h3 {
  font-size: 1.25rem; font-weight: 800; margin: 0 0 3px;
  color: var(--text-main, #1f2a37);
}
.fc-card-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-secondary, #5b6b7c);
}
.fc-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: fcStatusPulse 2s ease infinite;
}
@keyframes fcStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.fc-right hr {
  border: none; border-top: 1px solid rgba(59,130,246,0.07); margin: 0;
}

.fc-contacts { display: flex; flex-direction: column; gap: 6px; }

.fc-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.75);
  transition: all 0.32s ease;
}
.fc-contact-item:hover {
  background: rgba(255,255,255,0.90);
  border-color: rgba(59,130,246,0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(31,42,55,0.07);
}
.fc-ci-icon {
  flex: 0 0 36px; height: 36px; border-radius: 10px;
  background: rgba(59,130,246,0.09);
  border: 1px solid rgba(59,130,246,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #2563eb; font-size: 0.85rem;
  transition: all 0.32s ease; flex-shrink: 0;
}
.fc-contact-item:hover .fc-ci-icon { background: rgba(59,130,246,0.15); transform: scale(1.08) rotate(-4deg); }
.fc-ci-body { flex: 1; min-width: 0; }
.fc-ci-body strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--text-main, #1f2a37); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.fc-ci-body span {
  display: flex; flex-direction: column; gap: 1px;
  font-size: 0.83rem; color: var(--text-secondary, #5b6b7c); line-height: 1.4;
}
.fc-ci-body span a { color: var(--text-secondary, #5b6b7c); text-decoration: none; transition: color 0.2s; }
.fc-ci-body span a:hover { color: #2563eb; }
.fc-ci-body span b { color: var(--text-main, #1f2a37); font-weight: 600; }
.fc-ci-body span small { font-size: 0.76rem; color: var(--text-secondary, #5b6b7c); opacity: 0.85; }
.fc-ci-action {
  flex: 0 0 32px; height: 32px; border-radius: 9px;
  background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #2563eb; font-size: 0.76rem; text-decoration: none;
  transition: all 0.28s ease; flex-shrink: 0;
}
.fc-ci-action:hover { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.28); transform: scale(1.1); }
.fc-ci-badge {
  flex-shrink: 0;
  font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 7px;
}
.fc-badge-open  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.22); color: #059669; }
.fc-badge-soon  { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.22); color: #92400e; }
.fc-badge-closed { background: rgba(239,68,68,0.09); border: 1px solid rgba(239,68,68,0.18); color: #b91c1c; }

.fc-messengers {
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 16px;
  padding: 16px 16px 14px;
}
.fc-msg-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 700;
  color: var(--text-secondary, #5b6b7c); text-transform: uppercase; letter-spacing: 0.07em;
  margin: 0 0 12px;
}
.fc-msg-title i { color: #3b82f6; }
.fc-msg-row { display: flex; flex-direction: column; gap: 8px; }

.fc-msg-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: 13px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.34s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.fc-msg-btn::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.34s;
}
.fc-msg-btn:hover::before { opacity: 1; }
.fc-msg-btn:hover { transform: translateX(4px) scale(1.01); }

.fc-msg-icon {
  flex: 0 0 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
  transition: transform 0.36s cubic-bezier(0.16,1,0.3,1);
}
.fc-msg-btn:hover .fc-msg-icon { transform: scale(1.12) rotate(-5deg); }

.fc-msg-icon-max {
  font-size: 1.1rem; font-weight: 900; font-family: 'Manrope', sans-serif;
}

.fc-msg-label { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.fc-msg-label b { font-size: 0.88rem; font-weight: 700; }
.fc-msg-label small { font-size: 0.73rem; opacity: 0.75; }

.fc-msg-ext { font-size: 0.62rem; opacity: 0; transition: opacity 0.28s, transform 0.28s; flex-shrink: 0; }
.fc-msg-btn:hover .fc-msg-ext { opacity: 0.5; transform: translate(2px,-2px); }

.fc-msg-tg {
  background: rgba(0,136,204,0.07);
  border-color: rgba(0,136,204,0.15);
}
.fc-msg-tg::before { background: rgba(0,136,204,0.08); }
.fc-msg-tg .fc-msg-icon { background: rgba(0,136,204,0.12); border: 1px solid rgba(0,136,204,0.18); color: #0088cc; }
.fc-msg-tg .fc-msg-label b, .fc-msg-tg .fc-msg-ext { color: #0077b5; }
.fc-msg-tg .fc-msg-label small { color: var(--text-secondary,#5b6b7c); }
.fc-msg-tg:hover { border-color: rgba(0,136,204,0.30); box-shadow: 0 6px 20px rgba(0,136,204,0.12); }

.fc-msg-vk {
  background: rgba(39,105,185,0.07);
  border-color: rgba(39,105,185,0.15);
}
.fc-msg-vk::before { background: rgba(39,105,185,0.08); }
.fc-msg-vk .fc-msg-icon { background: rgba(39,105,185,0.12); border: 1px solid rgba(39,105,185,0.18); color: #2769b9; }
.fc-msg-vk .fc-msg-label b, .fc-msg-vk .fc-msg-ext { color: #2769b9; }
.fc-msg-vk .fc-msg-label small { color: var(--text-secondary,#5b6b7c); }
.fc-msg-vk:hover { border-color: rgba(39,105,185,0.30); box-shadow: 0 6px 20px rgba(39,105,185,0.12); }

.fc-msg-max {
  background: rgba(0,112,240,0.06);
  border-color: rgba(0,112,240,0.13);
}
.fc-msg-max::before { background: rgba(0,112,240,0.07); }
.fc-msg-max .fc-msg-icon { background: linear-gradient(135deg, rgba(0,112,240,0.14), rgba(64,156,255,0.14)); border: 1px solid rgba(0,112,240,0.18); color: #0070f0; }
.fc-msg-max .fc-msg-label b, .fc-msg-max .fc-msg-ext { color: #0060d0; }
.fc-msg-max .fc-msg-label small { color: var(--text-secondary,#5b6b7c); }
.fc-msg-max:hover { border-color: rgba(0,112,240,0.28); box-shadow: 0 6px 20px rgba(0,112,240,0.11); }

.fc-bottom {
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 22px 36px;
  box-shadow: 0 4px 22px rgba(31,42,55,0.07);
}
.fc-bottom-stats {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.fc-stat {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-align: center;
}
.fc-stat strong {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--text-main, #1f2a37); line-height: 1;
  display: flex; align-items: center; gap: 2px;
}
.fc-stat strong span { color: #3b82f6; }
.fc-stat strong i { font-size: 0.55em; color: #fbbf24; margin-top: 2px; }
.fc-stat > span { font-size: 0.76rem; color: var(--text-secondary, #5b6b7c); font-weight: 500; }
.fc-stat-sep { width: 1px; height: 36px; background: rgba(59,130,246,0.12); flex-shrink: 0; }

.fc-reveal {
  opacity: 0; transform: translateY(44px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0s);
}
.fc-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
  .fc-orb-3 { display: none; }
  .fc-panel-3 { display: none; }
  .fc-cross-3 { display: none; }
}
@media (max-width: 960px) {
  .fc-layout { grid-template-columns: 1fr; gap: 32px; }
  .fc-left h2 { font-size: clamp(2rem, 6vw, 3rem); }
  .fc-ring-1 { display: none; }
}
@media (max-width: 768px) {
  .fc-section { padding: 90px 0 80px; }
  .fc-bottom { padding: 18px 20px; }
  .fc-stat-sep { display: none; }
  .fc-bottom-stats { gap: 12px 20px; }
  .fc-stat strong { font-size: 1.6rem; }
}
@media (max-width: 640px) {
  .fc-section { padding: 72px 0 64px; }
  .fc-layout { gap: 26px; margin-bottom: 28px; }
  .fc-btn { padding: 13px 16px; gap: 11px; }
  .fc-btn-icon { flex: 0 0 38px; height: 38px; border-radius: 10px; font-size: 0.9rem; }
  .fc-btn-text em { font-size: 0.9rem; }
  .fc-right { padding: 24px 20px 20px; gap: 16px; border-radius: 22px; }
  .fc-card-header h3 { font-size: 1.12rem; }
  .fc-orb-1 { width: 320px; height: 320px; }
  .fc-orb-2 { width: 260px; height: 260px; }
  .fc-ring-2 { display: none; }
  .fc-panel-2 { display: none; }
  .fc-bottom { padding: 16px 16px; border-radius: 16px; }
  .fc-stat strong { font-size: 1.45rem; }
  .fc-stat > span { font-size: 0.7rem; }
  .fc-contact-item { padding: 10px 11px; }
  .fc-ci-icon { flex: 0 0 32px; height: 32px; border-radius: 9px; font-size: 0.8rem; }
  .fc-msg-btn { padding: 10px 11px; gap: 10px; }
  .fc-msg-icon { flex: 0 0 32px; height: 32px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .fc-section { padding: 62px 0 56px; }
  .fc-btns { gap: 9px; }
  .fc-btn { padding: 12px 14px; gap: 10px; border-radius: 14px; }
  .fc-btn-icon { flex: 0 0 35px; height: 35px; border-radius: 9px; font-size: 0.85rem; }
  .fc-btn-text em { font-size: 0.87rem; }
  .fc-btn-text small { font-size: 0.7rem; }
  .fc-tags-row { gap: 6px; }
  .fc-tag { font-size: 0.68rem; padding: 4px 9px; }
  .fc-contact-item { gap: 9px; }
  .fc-ci-body span { font-size: 0.79rem; }
  .fc-ci-body span a, .fc-ci-body span small { font-size: 0.76rem; }
  .fc-ci-action { flex: 0 0 28px; height: 28px; font-size: 0.7rem; }
  .fc-msg-label b { font-size: 1.05rem; }
  .fc-msg-label small { font-size: 0.68rem; }
  .fc-bottom-stats { gap: 10px 14px; }
  .fc-stat strong { font-size: 1.3rem; }
  .fc-card-icon-wrap { flex: 0 0 40px; height: 40px; border-radius: 12px; font-size: 1rem; }
}
@media (max-width: 380px) {
  .fc-section { padding: 52px 0 48px; }
  .fc-label { font-size: 0.63rem; padding: 4px 11px; }
  .fc-left h2 { font-size: 1.5rem; }
  .fc-subtitle { font-size: 0.8rem; gap: 5px; }
  .fc-desc { font-size: 0.86rem; }
  .fc-btn { padding: 11px 13px; gap: 9px; border-radius: 13px; }
  .fc-btn-icon { flex: 0 0 32px; height: 32px; border-radius: 8px; font-size: 1.05rem; }
  .fc-btn-text em { font-size: 0.83rem; }
  .fc-btn-text small { display: none; }
  .fc-btn-arr { display: none; }
  .fc-right { padding: 20px 16px 18px; border-radius: 20px; gap: 14px; }
  .fc-card-header {gap: 10px; }
  .fc-card-icon-wrap { flex: 0 0 36px; height: 36px; border-radius: 10px; font-size: 0.9rem; }
  .fc-card-header h3 { font-size: 1rem; }
  .fc-contact-item { padding: 9px 10px; border-radius: 12px; gap: 8px; }
  .fc-ci-icon { flex: 0 0 30px; height: 30px; border-radius: 8px; font-size: 0.75rem; }
  .fc-ci-body strong { font-size: 0.67rem; }
  .fc-ci-body span { font-size: 0.75rem; }
  .fc-ci-action { flex: 0 0 26px; height: 26px; border-radius: 7px; font-size: 0.66rem; }
  .fc-messengers { padding: 13px 13px 11px; border-radius: 14px; }
  .fc-msg-btn { padding: 9px 10px; border-radius: 11px; gap: 9px; }
  .fc-msg-icon { flex: 0 0 30px; height: 30px; border-radius: 9px; font-size: 0.88rem; }
  .fc-msg-label b { font-size: 1.05rem; }
  .fc-msg-label small { font-size: 0.65rem; }
  .fc-bottom { padding: 13px 12px; border-radius: 14px; }
  .fc-stat strong { font-size: 1.2rem; }
  .fc-stat > span { font-size: 0.66rem; }
  .fc-bottom-stats { gap: 8px 10px; }
  .fc-tags-row { gap: 5px; }
  .fc-tag { font-size: 0.64rem; padding: 3px 7px; }
}