    :root{
      --primary:#E30613;
      --primary-dark:#b7040f;
      --primary-soft:#fff1f2;
      --text:#121826;
      --muted:#667085;
      --line:#eceff3;
      --surface:#ffffff;
      --bg:#ffffff;
      --shadow:0 20px 70px rgba(17,24,39,.09);
      --shadow-soft:0 14px 34px rgba(17,24,39,.07);
      --radius-xl:28px;
      --radius-lg:20px;
      --radius-md:16px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      font-family:'Manrope',sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(227,6,19,.06), transparent 18%),
        radial-gradient(circle at 90% 20%, rgba(227,6,19,.05), transparent 22%),
        linear-gradient(180deg,#fff 0%,#fff 35%,#fff7f8 100%);
      overflow-x:hidden;
    }

    a{text-decoration:none}
    img{max-width:100%;display:block}
    .section-pad{padding:90px 0}
    .text-muted-2{color:var(--muted)}

    .mini-topbar{
      background:linear-gradient(90deg, var(--primary) 0%, #ff3b47 100%);
      color:#fff;
      font-size:14px;
      padding:10px 0;
    }
    .mini-topbar .mini-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.24);
      border-radius:999px;
      padding:10px 16px;
      color:#fff;
      font-weight:700;
      backdrop-filter:blur(8px);
    }

    .navbar-wrap{
      position:sticky;
      top:0;
      z-index:1040;
      backdrop-filter:blur(14px);
      background:rgba(255,255,255,.84);
      border-bottom:1px solid rgba(17,24,39,.05);
    }
    .navbar{
      padding:16px 0;
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:1.1rem;
      font-weight:800;
      color:var(--text);
      letter-spacing:-.02em;
      width: 140px;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:20px;
      background:linear-gradient(135deg,var(--primary),#ff515b);
      box-shadow:0 16px 34px rgba(227,6,19,.26);
    }
    .nav-link{
      color:#344054;
      font-weight:700;
      padding:10px 16px !important;
    }
    .nav-link:hover{color:var(--primary)}

    .btn-pill{
      border-radius:999px;
      padding:14px 22px;
      font-weight:800;
      letter-spacing:-.01em;
      transition:.25s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .btn-main{
      color:#fff;
      border:0;
      background:linear-gradient(135deg,var(--primary),#ff4955);
      box-shadow:0 18px 40px rgba(227,6,19,.25);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 44px rgba(227,6,19,.30);
    }
    .btn-soft{
      color:var(--primary);
      background:#fff;
      border:1px solid rgba(227,6,19,.16);
      box-shadow:var(--shadow-soft);
    }
    .btn-soft:hover{
      color:var(--primary-dark);
      border-color:rgba(227,6,19,.28);
      transform:translateY(-2px);
    }

    .hero{
      position:relative;
      padding:88px 0 76px;
      overflow:hidden;
      border-bottom: 2px solid #68728714;
      box-shadow: 0px 0px 40px #e3061326;
    }
    .hero::before,
    .hero::after{
      content:"";
      position:absolute;
      border-radius:50%;
      z-index:-1;
      filter:blur(24px);
    }
    .hero::before{
      width:380px;
      height:380px;
      background:rgba(227,6,19,.09);
      top:-140px;
      right:-80px;
    }
    .hero::after{
      width:260px;
      height:260px;
      background:rgba(227,6,19,.08);
      bottom:-90px;
      left:-90px;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#fff;
      color:var(--primary);
      border:1px solid rgba(227,6,19,.12);
      border-radius:999px;
      padding:10px 16px;
      font-size:14px;
      font-weight:800;
      box-shadow:var(--shadow-soft);
      margin-bottom:24px;
    }
    .hero-title{
      font-size: clamp(2.5rem,4.8vw,4rem);
      line-height:1.02;
      font-weight:800;
      letter-spacing:-.05em;
      margin:0 0 18px;
    }
    .hero-title .accent{
      color:var(--primary);
      position:relative;
    }
    .hero-title .accent::after{
      content:"";
      position:absolute;
      left:0;
      bottom:6px;
      width:100%;
      height:14px;
      background:rgba(227,6,19,.12);
      z-index:-1;
      border-radius:999px;
    }
    .hero-text{
      font-size: 1rem;
      line-height:1.85;
      color:var(--muted);
      max-width:640px;
      margin-bottom:30px;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:26px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:16px;
      margin-top:6px;
    }
    .trust-chip{
      display:flex;
      align-items:center;
      gap:12px;
      background:#fff;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid #eef0f4;
      box-shadow:var(--shadow-soft);
      min-width:210px;
    }
    .trust-chip i{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-size:18px;
    }
    .trust-chip strong{
      display:block;
      font-size:14px;
      color:var(--text);
    }
    .trust-chip span{
      font-size:12px;
      color:var(--muted);
    }

    .hero-visual{
      position:relative;
      min-height:640px;
    }
    .visual-card,
    .floating-note,
    .score-card{
      position:absolute;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,.76);
      box-shadow:var(--shadow);
    }
    .visual-card{
      inset:34px 22px 24px 48px;
      border-radius:34px;
      overflow:hidden;
    }
    .visual-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.16));
      z-index:1;
    }
    .visual-card img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .visual-caption{
      position:absolute;
      left:22px;
      right:22px;
      bottom:22px;
      z-index:2;
      color:#fff;
      background: linear-gradient(135deg, rgb(197 197 197 / 18%), rgba(255, 255, 255, .08));
      border: 1px solid rgb(89 89 89 / 22%);
      border-radius:22px;
      padding:18px 18px;
      backdrop-filter:blur(12px);
    }
    .visual-caption .eyebrow{
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      opacity:.95;
      margin-bottom:8px;
      color: var(--primary);
    }
    .visual-caption h3{
      margin:0 0 6px;
      font-size:1.4rem;
      font-weight:800;
      letter-spacing:-.03em;
      color: var(--bs-dark);
    }
    .visual-caption p{
      margin:0;
      font-size:14px;
      color: var(--muted);
      line-height:1.7;
    }
    .floating-note{
      top:0;
      left:0;
      width:220px;
      border-radius:24px;
      padding:18px;
      animation:floatY 5s ease-in-out infinite;
    }
    .score-card{
      right:0;
      bottom:0;
      width:260px;
      border-radius:26px;
      padding:18px 18px 16px;
      animation:floatY 5.8s ease-in-out infinite;
    }
    .floating-note .icon,
    .score-card .icon{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:22px;
      background:linear-gradient(135deg,var(--primary),#ff5964);
      box-shadow:0 18px 28px rgba(227,6,19,.22);
      margin-bottom:14px;
    }
    .floating-note h4,
    .score-card h4{
      font-size:1rem;
      font-weight:800;
      margin-bottom:6px;
      letter-spacing:-.02em;
    }
    .floating-note p,
    .score-card p{
      margin:0;
      font-size:14px;
      color:var(--muted);
      line-height:1.7;
    }
    .score-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:14px;
    }
    .score-item{
      background:#fff8f8;
      border:1px solid rgba(227,6,19,.08);
      border-radius:18px;
      padding:12px;
    }
    .score-item strong{
      display:block;
      font-size:1.3rem;
      color:var(--primary);
      letter-spacing:-.04em;
    }
    .score-item span{
      font-size:12px;
      color:var(--muted);
    }

    .stats-strip{
      margin-top:-12px;
    }
    .stats-shell{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      box-shadow:var(--shadow-soft);
      padding:18px;
    }
    .stat-card{
      display:flex;
      align-items:center;
      gap:14px;
      padding:14px;
      border-radius:20px;
      transition:.25s ease;
    }
    .stat-card:hover{background:#fff7f8}
    .stat-card i{
      width:54px;
      height:54px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      border-radius:18px;
      font-size:22px;
      flex:0 0 auto;
    }
    .stat-card strong{
      display:block;
      font-size:1.55rem;
      line-height:1;
      letter-spacing:-.05em;
    }
    .stat-card span{
      font-size:13px;
      color:var(--muted);
    }

    .section-head{
      max-width:720px;
      margin:0 auto 46px;
      text-align:center;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:var(--primary-soft);
      color:var(--primary);
      border-radius:999px;
      padding:9px 16px;
      font-size:13px;
      font-weight:800;
      margin-bottom:18px;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .section-title{
      font-size:clamp(2rem,3.6vw,3rem);
      line-height:1.1;
      font-weight:800;
      letter-spacing:-.04em;
      margin-bottom:14px;
    }
    .section-desc{
      font-size:1rem;
      line-height:1.85;
      color:var(--muted);
      margin:0;
    }

    .card-pro{
      height:100%;
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      padding:28px;
      box-shadow:var(--shadow-soft);
      transition:.28s ease;
      position:relative;
      overflow:hidden;
    }
    .card-pro::before{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:0;
      background:linear-gradient(180deg, rgba(227,6,19,0), rgba(227,6,19,.035));
      transition:.28s ease;
    }
    .card-pro:hover{
      transform:translateY(-8px);
      box-shadow:0 24px 48px rgba(17,24,39,.10);
      border-color:rgba(227,6,19,.14);
    }
    .card-pro:hover::before{height:100%}
    .card-icon{
      width:64px;
      height:64px;
      display:grid;
      place-items:center;
      border-radius:22px;
      background:linear-gradient(135deg,var(--primary-soft),#fff);
      color:var(--primary);
      box-shadow:inset 0 0 0 1px rgba(227,6,19,.07);
      font-size:28px;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .card-pro h3,
    .card-pro h4{
      position:relative;
      z-index:1;
      font-size:1.25rem;
      font-weight:800;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    .card-pro p,
    .card-pro li{
      position:relative;
      z-index:1;
      color:var(--muted);
      line-height:1.8;
      margin:0;
    }
    .card-pro ul{
      padding-left:18px;
      margin:0;
    }

    .experience-panel{
      background:linear-gradient(135deg,#fff,#fff6f7);
      border:1px solid var(--line);
      border-radius:34px;
      padding:28px;
      box-shadow:var(--shadow-soft);
    }
    .experience-image{
      position:relative;
      min-height:100%;
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .experience-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height: 850px;
    }
    .experience-image .overlay-box{
      position:absolute;
      left:20px;
      right:20px;
      bottom:20px;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(10px);
      border-radius:22px;
      padding:18px;
      border:1px solid rgba(255,255,255,.6);
      box-shadow:var(--shadow-soft);
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .tag-list span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:12px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#344054;
      font-size:14px;
      font-weight:700;
      box-shadow:var(--shadow-soft);
    }
    .tag-list i{color:var(--primary)}

    .process-step{
      position:relative;
      padding:30px 24px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      height:100%;
    }
    .process-step .step-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:14px;
      background:var(--primary);
      color:#fff;
      font-size:1rem;
      font-weight:800;
      margin-bottom:18px;
      box-shadow:0 14px 26px rgba(227,6,19,.2);
    }
    .process-step h4{
      font-size:1.15rem;
      font-weight:800;
      letter-spacing:-.03em;
      margin-bottom:10px;
    }
    .process-step p{margin:0;color:var(--muted);line-height:1.8}

    .cta-banner{
      position:relative;
      background:linear-gradient(135deg,var(--primary),#ff4955 60%, #ff6b74 100%);
      color:#fff;
      padding:42px;
      border-radius:34px;
      overflow:hidden;
      box-shadow:0 28px 60px rgba(227,6,19,.28);
    }
    .cta-banner::before,
    .cta-banner::after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:rgba(255,255,255,.12);
    }
    .cta-banner::before{
      width:280px;
      height:280px;
      top:-120px;
      right:-90px;
    }
    .cta-banner::after{
      width:180px;
      height:180px;
      bottom:-60px;
      left:-60px;
    }
    .cta-banner h3{
      font-size:clamp(1.8rem,2.8vw,2.7rem);
      font-weight:800;
      letter-spacing:-.04em;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .cta-banner p{
      color:rgba(255,255,255,.9);
      line-height:1.8;
      margin:0;
      position:relative;
      z-index:1;
    }
    .cta-banner .btn-soft{
      background:#fff;
      border-color:rgba(255,255,255,.32);
      color:var(--primary);
    }

    .testimonial-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow-soft);
      height:100%;
    }
    .stars{
      color:#f5b301;
      display:flex;
      gap:4px;
      margin-bottom:16px;
    }
    .testimonial-card p{
      color:var(--muted);
      line-height:1.9;
      margin-bottom:18px;
    }
    .testimonial-person{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .avatar{
      width:52px;
      height:52px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:800;
    }
    .testimonial-person strong{display:block}
    .testimonial-person span{font-size:14px;color:var(--muted)}

    .accordion-item{
      border:1px solid var(--line);
      border-radius:22px !important;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      margin-bottom:16px;
      background:#fff;
    }
    .accordion-button{
      font-weight:800;
      letter-spacing:-.02em;
      padding:22px 24px;
      box-shadow:none !important;
      background:#fff;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:#fff7f8;
    }
    .accordion-body{
      color:var(--muted);
      line-height:1.85;
      padding:0 24px 22px;
    }

    .contact-card{
      height:100%;
      background:#fff;
      border:1px solid var(--line);
      border-radius:32px;
      padding:30px;
      box-shadow:var(--shadow-soft);
    }
    .contact-list{
      list-style:none;
      padding:0;
      margin:24px 0 0;
    }
    .contact-list li{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:16px 0;
      border-bottom:1px solid #f1f3f7;
    }
    .contact-list li:last-child{border-bottom:0;padding-bottom:0}
    .contact-list i{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      border-radius:16px;
      flex:0 0 auto;
      font-size:18px;
    }
    .contact-list strong{display:block;font-size:.98rem}
    .contact-list span,
    .contact-list a{color:var(--muted);line-height:1.7}
    .map-frame{
      height:100%;
      min-height:460px;
      border:0;
      border-radius:32px;
      box-shadow:var(--shadow);
      width:100%;
    }

    .footer{
      padding:30px 0 110px;
      color:#5b6577;
      font-size:14px;
    }
    .footer-shell{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:22px 24px;
      box-shadow:var(--shadow-soft);
    }

    .floating-call{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:1100;
      display:flex;
      align-items:center;
      gap:12px;
      background:linear-gradient(135deg,var(--primary),#ff4e59);
      color:#fff;
      padding:16px 20px 16px 18px;
      border-radius:999px;
      box-shadow:0 20px 38px rgba(227,6,19,.30);
      font-weight:800;
      letter-spacing:-.02em;
    }
    .floating-call i{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      border-radius:50%;
      animation:pulse 1.8s infinite;
    }
    .floating-call small{
      display:block;
      font-size:11px;
      opacity:.86;
      font-weight:700;
      letter-spacing:.06em;
      text-transform:uppercase;
    }
    .floating-call strong{
      display:block;
      font-size:15px;
      line-height:1.15;
    }

    .mobile-callbar{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:1090;
      background:#fff;
      border:1px solid rgba(17,24,39,.08);
      border-radius:22px;
      box-shadow:0 18px 34px rgba(17,24,39,.12);
      padding:10px;
    }
    .mobile-callbar .call-btn{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      width:100%;
      padding:15px 18px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),#ff5560);
      color:#fff;
      font-weight:800;
    }

    @keyframes pulse{
      0%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,255,255,.34)}
      70%{transform:scale(1.06);box-shadow:0 0 0 18px rgba(255,255,255,0)}
      100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,255,255,0)}
    }
    @keyframes floatY{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-10px)}
    }

    @media (max-width: 1199.98px){
      .hero-visual{min-height:560px;margin-top:34px}
      .visual-card{inset:34px 14px 24px 14px}
      .floating-note{left:8px}
      .score-card{right:8px}
    }

    @media (max-width: 991.98px){
      .section-pad{padding:78px 0}
      .hero{padding:64px 0 50px}
      .hero-visual{min-height:520px}
      .navbar-collapse{
        margin-top:16px;
        background:#fff;
        border:1px solid var(--line);
        border-radius:22px;
        padding:16px;
        box-shadow:var(--shadow-soft);
      }
      .navbar .btn-main{width:100%;justify-content:center;margin-top:8px}
      .cta-banner{padding:34px}
      .mobile-callbar{display:block}
      .floating-call{display:none}
      .footer{padding-bottom:106px}
    }

    @media (max-width: 767.98px){
      .mini-topbar .d-flex{justify-content:center !important}
      .hero-title{font-size:2.45rem}
      .hero-text{font-size:1rem}
      .hero-cta .btn-pill{width:100%;justify-content:center}
      .trust-chip{min-width:100%}
      .hero-visual{min-height:480px}
      .floating-note{
        width:180px;
        padding:16px;
      }
      .score-card{
        width:210px;
        padding:16px;
      }
      .experience-image img{min-height:380px}
      .cta-banner{padding:28px}
      .contact-card{padding:24px}
      .section-head{margin-bottom:34px}
    }

    @media (max-width: 575.98px){
      .container{padding-left:18px;padding-right:18px}
      .mini-topbar{font-size:13px}
      .hero-badge{font-size:12px}
      .hero-title{font-size:2.15rem}
      .hero-visual{min-height:440px;margin-top: 0px;}
      .visual-card{inset:34px 8px 10px 8px}
      .floating-note{top:6px;left:0;width:168px}
      .score-card{right:0;width:184px}
      .floating-call span{display:none}
      .stats-shell{padding:8px}
      .card-pro,
      .process-step,
      .testimonial-card{padding:24px}
    }

.footer{
  padding: 0 0 40px;
}

.footer-main{
  background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 34px 34px 22px;
  position: relative;
  overflow: hidden;
}

.footer-main::before{
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(227,6,19,.05);
  filter: blur(10px);
}

.footer-brand,
.footer-col{
  position: relative;
  z-index: 1;
}

.footer-logo{
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img{
  width: 150px;
  max-width: 100%;
}

.footer-text{
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.footer-badges i{
  color: var(--primary);
}

.footer-col h4{
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: var(--text);
}

.footer-links,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 12px;
}

.footer-links a{
  color: var(--muted);
  transition: .25s ease;
  font-weight: 600;
}

.footer-links a:hover{
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-contact i{
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 15px;
}

.footer-contact a,
.footer-contact span{
  color: var(--muted);
}

.footer-mini{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-actions .btn-pill{
  justify-content: center;
}

.footer-social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
}

.footer-social a:hover{
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-bottom{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(17,24,39,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom-left{
  color: #667085;
  font-size: 14px;
}

.footer-bottom-right{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-right a{
  color: #667085;
  font-size: 14px;
  font-weight: 600;
  transition: .25s ease;
}

.footer-bottom-right a:hover{
  color: var(--primary);
}

@media (max-width: 991.98px){
  .footer-main{
    padding: 28px 24px 20px;
    border-radius: 28px;
  }
}

@media (max-width: 767.98px){
  .footer{
    padding-bottom: 110px;
  }

  .footer-main{
    padding: 24px 20px 20px;
  }

  .footer-text{
    max-width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right{
    gap: 12px 16px;
  }
}

.footer-bottom a{
    color: var(--primary);
    font-weight: 600;
}

.discover-section{
  position: relative;
}

.discover-wrap{
  /* background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%); */
  /* border: 1px solid var(--line); */
  border-radius: 34px;
  padding: 34px;
  /* box-shadow: var(--shadow-soft); */
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}

.discover-wrap::before{
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  /* background: rgba(227,6,19,.05); */
  filter: blur(14px);
}

.discover-top{
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.discover-top-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.discover-heading{
  max-width: 760px;
}

.discover-nav{
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.discover-btn{
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
}

.discover-btn:hover{
  transform: translateY(-3px);
  color: #fff;
  background: linear-gradient(135deg,var(--primary),#ff4c58);
  border-color: var(--primary);
}

.discover-swiper{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px;
  border-radius: 40px;
}

.discover-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: .28s ease;
}

.discover-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(17,24,39,.10);
  border-color: rgba(227,6,19,.14);
}

.discover-image{
  position: relative;
  display: block;
  overflow: hidden;
}

.discover-image img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .45s ease;
}

.discover-card:hover .discover-image img{
  transform: scale(1.06);
}

.discover-category{
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  border: 1px solid rgba(227,6,19,.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.discover-content{
  padding: 24px 24px 22px;
}

.discover-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.discover-meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discover-meta i{
  color: var(--primary);
}

.discover-title{
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.discover-title a{
  color: var(--text);
  transition: .25s ease;
}

.discover-card:hover .discover-title a{
  color: var(--primary);
}

.discover-text{
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.discover-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  transition: .25s ease;
}

.discover-link i{
  transition: transform .25s ease;
}

.discover-link:hover{
  color: var(--primary-dark);
}

.discover-link:hover i{
  transform: translateX(4px);
}

.discover-pagination{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.discover-pagination .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #e6e8ec;
  transition: .25s ease;
}

.discover-pagination .swiper-pagination-bullet-active{
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

.testimonial-pagination{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-pagination .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #e6e8ec;
  transition: .25s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active{
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 991.98px){
  .discover-wrap{
    padding: 28px 24px;
    border-radius: 28px;
  }

  .discover-top-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .discover-nav{
    margin-top: 4px;
  }
}

@media (max-width: 767.98px){
  .discover-wrap{
    padding: 24px 20px;
  }

  .discover-image img{
    height: 220px;
  }

  .discover-content{
    padding: 22px 20px 20px;
  }

  .discover-title{
    font-size: 1.08rem;
  }
}

@media (max-width: 575.98px){
  .discover-btn{
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .discover-image img{
    height: 210px;
  }
}

.visual-card-slider{
  overflow: hidden;
}

.hero-visual-swiper{
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.hero-visual-swiper .swiper-slide{
  line-height: 0;
}

.hero-visual-swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-card-slider .visual-caption{
  position: relative;
  z-index: 2;
  position: absolute;
}

.hero-visual-pagination{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px !important;
  z-index: 3;
  display: flex;
  justify-content: center;
  display: none;
}

.hero-visual-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255,255,255,.45);
  transition: .25s ease;
}

.hero-visual-pagination .swiper-pagination-bullet-active{
  width: 28px;
  border-radius: 999px;
  background: #ffffff;
}

@media (max-width: 991.98px){
  .hero-visual-swiper .swiper-slide img{
    height: 360px;
  }
}

@media (max-width: 575.98px){
  .hero-visual-swiper .swiper-slide img{
    height: 100%;
  }
}

.contact-form-card{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
}

.contact-form-card::before{
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(227,6,19,.05);
  filter: blur(12px);
}

.contact-form-card > *{
  position: relative;
  z-index: 1;
}

.contact-form-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.contact-form-badges span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.contact-form-badges i{
  color: var(--primary);
}

.saftone-form{
  margin-top: 6px;
}

.saftone-form .form-label{
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.input-wrap{
  position: relative;
}

.input-wrap > i{
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--primary);
  font-size: 16px;
  z-index: 2;
}

.input-wrap .form-control{
  height: 58px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  padding: 14px 16px 14px 48px;
  color: var(--text);
  font-size: 15px;
  transition: .25s ease;
}

.textarea-wrap .form-control{
  height: auto;
  min-height: 150px;
  resize: vertical;
  padding-top: 16px;
}

.input-wrap .form-control:focus{
  border-color: rgba(227,6,19,.35);
  box-shadow: 0 0 0 4px rgba(227,6,19,.08);
}

.input-wrap .form-control::placeholder{
  color: #98a2b3;
}

.input-wrap-select .form-control{
  appearance: none;
  cursor: pointer;
}

.form-bottom{
  margin-top: 18px;
}

.custom-check{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  cursor: pointer;
}

.custom-check input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-mark{
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-top: 1px;
  position: relative;
  transition: .25s ease;
}

.check-mark::after{
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: .2s ease;
}

.custom-check input:checked + .check-mark{
  background: var(--primary);
  border-color: var(--primary);
}

.custom-check input:checked + .check-mark::after{
  transform: rotate(45deg) scale(1);
}

.check-text{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-submit{
  width: 100%;
  justify-content: center;
  min-height: 58px;
  font-size: 15px;
}

.contact-mini-panel{
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #eef1f5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mini-info-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-info-item i{
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 16px;
}

.mini-info-item strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 3px;
}

.mini-info-item span,
.mini-info-item a{
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.honeypot-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 991.98px){
  .contact-form-card{
    padding: 26px;
  }
}

@media (max-width: 575.98px){
  .contact-form-card{
    padding: 22px;
    border-radius: 26px;
  }

  .contact-form-badges{
    margin: 18px 0 20px;
  }

  .contact-form-badges span{
    width: 100%;
    justify-content: center;
  }

  .input-wrap .form-control{
    height: 54px;
    border-radius: 16px;
  }

  .textarea-wrap .form-control{
    min-height: 140px;
  }
}

.oturumacik {
  right: 0;
  text-align: center;
  background: #141414;
  color: white;
  position: fixed;
  bottom: 0%;
  left: 50%;
  z-index: 9999999;
  max-width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 600;
  font-family: system-ui !important;
  transform: translate(-50%, 0%);
  transition: width 0.4s ease, max-height 0.4s ease;
  max-height: 40px; /* Başlangıç yüksekliği */
  overflow: hidden; /* Taşmaları gizlemek için */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.oturumacik:hover {
  max-width: 100%;
  max-height: 500px; /* Hover durumunda geniş yüksekliğe geçiş */
  background: #141414;
}

.oturumacik p{
  color: white;
}

.butontg{
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: #141414;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px
}

@media screen and (max-width: 768px){
    .hero .col-lg-5{
        margin-top: 0px;
    }
}

.article-detail-section{
  position: relative;
}

.article-backbar{
  margin-bottom: 18px;
}

.article-backlink{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  transition: .25s ease;
}

.article-backlink:hover{
  color: var(--text);
  transform: translateX(-3px);
}

.article-detail-card{
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.article-detail-card::before{
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(227,6,19,.05);
  filter: blur(12px);
}

.article-detail-card > *{
  position: relative;
  z-index: 1;
}

.article-detail-head{
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.article-detail-title{
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 900;
  color: var(--text);
  margin: 16px 0 14px;
}

.article-detail-lead{
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto 18px;
}

.article-detail-meta{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.article-detail-meta span{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-detail-meta i{
  color: var(--primary);
}

.article-detail-cover{
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article-detail-cover img{
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.article-detail-body{
  max-width: 920px;
  margin: 0 auto;
  color: var(--text);
}

.article-detail-body p{
  font-size: 1.05rem;
  line-height: 2;
  color: #344054;
  margin-bottom: 22px;
}

.article-related{
  margin-top: 34px;
}

.article-related-top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.article-notfound{
  padding: 8px 0 0;
}

.article-notfound-card{
  background: linear-gradient(180deg, #ffffff 0%, #fff8f9 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 40px 28px;
  text-align: center;
}

@media (max-width: 991.98px){
  .article-detail-card{
    padding: 28px 24px;
    border-radius: 28px;
  }

  .article-related-top{
    align-items: flex-start;
  }

  .article-detail-cover img{
    max-height: 460px;
  }
}

@media (max-width: 767.98px){
  .article-detail-card{
    padding: 24px 18px;
  }

  .article-detail-title{
    font-size: 2rem;
  }

  .article-detail-lead{
    font-size: 1rem;
  }

  .article-detail-meta{
    justify-content: center;
  }

  .article-detail-meta span{
    width: 100%;
    justify-content: center;
  }

  .article-detail-cover{
    border-radius: 22px;
  }

  .article-detail-body p{
    font-size: 1rem;
    line-height: 1.9;
  }

  .article-notfound-card{
    padding: 32px 20px;
    border-radius: 28px;
  }
}