﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;}
    body{width:100%;margin:0;overflow-x:hidden;background-color:#F8FAFC;color:#0F172A;line-height:1.5;}
    img{max-width:100%;height:auto;}
    a{color:#3B82F6;text-decoration:none;transition:color .25s;}
    a:hover{color:#1D4ED8;}

    
    :root {
      --primary: #3B82F6;
      --primary-rgb: 59,130,246;
      --secondary: #94A3B8;
      --accent: #DBEAFE;
      --accent-fallback: rgb(108,92,231); 
      --bg-light: #F8FAFC;
      --bg-dark: #0F172A;
      --border-color: rgba(148,163,184,0.18);
      --shadow-sm: 0 4px 12px rgba(15,23,42,0.03);
      --shadow-md: 0 12px 36px rgba(59,130,246,0.08);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:72px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }

    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }

    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }

    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#0F172A;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }

    .desktop-nav::-webkit-scrollbar{display:none;}

    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 16px;
      border-radius:999px;
      color:#475569;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      transition: all 0.25s;
    }
    .desktop-nav a:hover {
      background: var(--accent);
      color: var(--primary);
    }

    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }

    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#0F172A;
    }

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(15,23,42,.56);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:#ffffff;
      color:#0F172A;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(15,23,42,.24);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }

    .drawer-head{
      min-height:76px;
      padding:16px 16px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      flex:0 0 auto;
    }

    .drawer-logo{min-width:0;}
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;font-weight:800;color:#0F172A;}

    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(15,23,42,.08);
      color:#0F172A;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }

    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }

    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(15,23,42,.045);
      color:#0F172A;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}

    
    .hero {
      position: relative;
      background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
      padding: 96px 0 120px 0;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;
      height: 600px;
      background: radial-gradient(circle, rgba(219,234,254,0.6) 0%, rgba(248,250,252,0) 70%);
      z-index: 0;
      pointer-events: none;
    }
    .hero-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .hero-declaration {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 48px auto;
    }
    .hero-tag {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      color: var(--primary);
      border-radius: 99px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 24px;
      text-transform: uppercase;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      line-height: 1.15;
      color: #0F172A;
      margin: 0 0 20px 0;
      letter-spacing: -1px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: clamp(15px, 2vw, 18px);
      color: #475569;
      line-height: 1.6;
      margin: 0 0 32px 0;
    }
    .hero-btn-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }
    .btn-main {
      padding: 14px 28px;
      background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
      color: #ffffff;
      font-weight: 700;
      font-size: 15px;
      border-radius: 12px;
      box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
      transition: all 0.3s;
    }
    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
      color: #ffffff;
    }
    .btn-sub {
      padding: 14px 28px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.3);
      color: #334155;
      font-weight: 700;
      font-size: 15px;
      border-radius: 12px;
      backdrop-filter: blur(8px);
      transition: all 0.3s;
    }
    .btn-sub:hover {
      background: #ffffff;
      border-color: #3B82F6;
      color: #3B82F6;
    }

    
    .hero-visual-wrapper {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }
    .hero-map-panel {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 24px;
      padding: 36px;
      box-shadow: var(--shadow-md);
      position: relative;
      z-index: 10;
    }
    .map-inner-title {
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      color: #64748B;
      letter-spacing: 1.5px;
      text-align: center;
      margin-bottom: 28px;
    }
    .map-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .map-step-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.15);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .map-step-card:hover {
      transform: translateY(-4px);
      border-color: #3B82F6;
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
    }
    .step-num {
      display: inline-flex;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--primary);
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 12px;
    }
    .map-step-card h4 {
      margin: 0 0 6px 0;
      font-size: 15px;
      font-weight: 700;
      color: #0F172A;
    }
    .map-step-card p {
      margin: 0;
      font-size: 12px;
      color: #64748B;
      line-height: 1.4;
    }

    
    .float-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(59, 130, 246, 0.15);
      border-radius: 14px;
      padding: 12px 18px;
      box-shadow: 0 10px 30px rgba(15,23,42,0.06);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 20;
      transition: all 0.4s ease-out;
    }
    .float-card-01 { top: -20px; left: -40px; }
    .float-card-02 { top: 30px; right: -50px; }
    .float-card-03 { bottom: -24px; left: -20px; }
    .float-card-04 { bottom: 20px; right: -30px; }
    
    .float-card:hover {
      transform: scale(1.05) translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 15px 35px rgba(59,130,246,0.15);
    }
    .float-card .icon-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--primary);
      box-shadow: 0 0 10px var(--primary);
    }
    .float-card-text {
      text-align: left;
    }
    .float-card-text span {
      display: block;
      font-size: 11px;
      color: #64748B;
      font-weight: 500;
    }
    .float-card-text strong {
      display: block;
      font-size: 13px;
      color: #0F172A;
      font-weight: 700;
    }

    
    .trust-strip {
      background: #FFFFFF;
      padding: 24px 0;
      border-bottom: 1px solid var(--border-color);
    }
    .trust-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display:grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .trust-icon {
      font-size: 24px;
      color: var(--primary);
      background: var(--accent);
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }
    .trust-meta h4 {
      margin: 0 0 2px 0;
      font-size: 16px;
      font-weight: 800;
      color: #0F172A;
    }
    .trust-meta p {
      margin: 0;
      font-size: 12px;
      color: #64748B;
    }

    
    .section-padding {
      padding: 80px 0;
    }
    .section-title {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 56px auto;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 800;
      color: #0F172A;
      margin: 0 0 12px 0;
    }
    .section-title p {
      color: #64748B;
      font-size: 15px;
      margin: 0;
    }
    .features-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 4px;
      background: var(--primary);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(59, 130, 246, 0.2);
    }
    .feature-card:hover::before {
      opacity: 1;
    }
    .feature-icon-box {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .feature-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: #0F172A;
      margin: 0 0 12px 0;
    }
    .feature-card p {
      font-size: 14px;
      color: #64748B;
      line-height: 1.6;
      margin: 0;
    }

    
    .rebate-mechanics {
      background: #EFF6FF;
    }
    .mechanics-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }
    .calc-box {
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid var(--border-color);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .calc-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 32px;
    }
    .calc-col {
      background: #F8FAFC;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid rgba(148, 163, 184, 0.1);
    }
    .calc-label {
      font-size: 13px;
      color: #64748B;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .calc-val {
      font-size: 24px;
      font-weight: 800;
      color: #0F172A;
    }
    .calc-val span {
      font-size: 14px;
      color: #94A3B8;
      font-weight: 500;
      margin-left: 4px;
    }
    .calc-total {
      background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
      color: #ffffff;
      border-radius: 16px;
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .total-title h3 {
      margin: 0 0 4px 0;
      font-size: 18px;
      font-weight: 800;
    }
    .total-title p {
      margin: 0;
      font-size: 13px;
      color: #94A3B8;
    }
    .total-amount {
      font-size: 36px;
      font-weight: 900;
      color: #3B82F6;
    }

    
    .news-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .news-sub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(59, 130, 246, 0.2);
    }
    .article-thumb {
      aspect-ratio: 16 / 10;
      background-color: #E2E8F0;
      position: relative;
      overflow: hidden;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .article-card:hover .article-thumb img {
      transform: scale(1.05);
    }
    .article-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(15, 23, 42, 0.85);
      color: #ffffff;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 6px;
      backdrop-filter: blur(4px);
    }
    .article-meta {
      padding: 20px 20px 0;
      display: flex;
      gap: 12px;
      font-size: 12px;
      color: #64748B;
    }
    .article-content {
      padding: 12px 20px 20px;
    }
    .article-content h3 {
      font-size: 16px;
      font-weight: 800;
      margin: 0 0 8px 0;
      line-height: 1.4;
    }
    .article-content h3 a {
      color: #0F172A;
    }
    .article-content h3 a:hover {
      color: var(--primary);
    }
    .article-desc {
      font-size: 13px;
      color: #64748B;
      line-height: 1.5;
      margin: 0 0 16px 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      border-top: 1px solid rgba(148, 163, 184, 0.1);
      padding-top: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #64748B;
    }
    .read-more-btn {
      color: var(--primary);
      font-weight: 700;
    }

    
    .cta-section {
      background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
      color: #ffffff;
      padding: 80px 0;
      text-align: center;
    }
    .cta-container {
      width: min(800px, calc(100% - 32px));
      margin: 0 auto;
    }
    .cta-section h2 {
      font-size: 36px;
      font-weight: 900;
      margin: 0 0 16px 0;
    }
    .cta-section p {
      color: #94A3B8;
      font-size: 16px;
      margin: 0 0 32px 0;
    }

    
    .site-footer{
      position:relative;
      z-index:1;
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      padding:56px 0 24px;
      overflow:hidden;
    }

    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3, minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }

    .footer-brand{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(229,231,235,.74);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-logo span{color:#ffffff;}
    .footer-column{min-width:0;}
    .footer-column h3{margin:0 0 14px;font-size:15px;color:#ffffff;}
    .footer-column ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
    .footer-column li{min-width:0;}
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(229,231,235,.74);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#ffffff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(229,231,235,.62);
      font-size:13px;
    }
    .footer-bottom p{margin:0;min-width:0;word-break:break-word;overflow-wrap:anywhere;}
    .footer-bottom a{color:rgba(229,231,235,.74);text-decoration:none;word-break:break-word;overflow-wrap:anywhere;}

    
    @media (max-width: 900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:64px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
      
      
      .hero-declaration { max-width: 100%; margin-bottom: 32px; }
      .hero-visual-wrapper { padding: 0 12px; }
      .map-steps { grid-template-columns: 1fr; gap: 12px; }
      .float-card { display: none !important; }
      .calc-row { grid-template-columns: 1fr; gap: 16px; }
      .calc-total { flex-direction: column; gap: 16px; text-align: center; }
      .features-grid { grid-template-columns: 1fr; gap: 16px; }
      .news-sub-grid { grid-template-columns: 1fr; gap: 16px; }
      .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    }

    @media (max-width: 640px){
      .footer-inner{grid-template-columns:1fr;}
      .trust-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:112px;}
      .drawer-logo span{max-width:118px;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }