﻿:root {
  --red: #ff0000;
  --red-dark: #c60000;
  --red-soft: #fff1f1;
  --white: #ffffff;
  --ink: #141414;
  --ink-soft: #555c63;
  --bg: #f5f5f5;
  --panel: #ffffff;
  --line: #ececec;
  --shadow: 0 22px 50px rgba(10, 10, 10, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.topbar-meta,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,0.8);
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,20,20,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--red);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(255, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--red-soft);
  position: relative;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  width: 22px;
  height: 2px;
  left: 12px;
  background: var(--ink);
  border-radius: 99px;
  transition: all 0.2s ease;
}

.nav-toggle span { top: 22px; }
.nav-toggle span::before { content: ""; top: -7px; left: 0; }
.nav-toggle span::after { content: ""; top: 7px; left: 0; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.is-open span::after { transform: rotate(-45deg); top: 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.18) 38%, rgba(255, 255, 255, 0.08)),
    url("../img/hero-1.jpg") center/cover no-repeat;
  padding: 76px 0 52px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.36), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
}

.eyebrow,
.label,
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-copy h1,
.section-head h2,
.about-copy h2,
.content-card h2,
.page-hero-inner h1,
.pricing-box h2,
.policy-card h3,
.title,
.info-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-width: 640px;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.07rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(255, 0, 0, 0.18);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(20,20,20,0.1);
}

.hero-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.hero-card-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
  border-radius: 20px;
  padding: 24px 20px 0;
}

.hero-card h3 {
  margin: 16px 0 8px;
  font-size: 2rem;
  font-family: "Barlow Condensed", sans-serif;
}

.hero-card p {
  color: var(--ink-soft);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-stat,
.stat-box {
  padding: 18px 14px;
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.hero-stat strong,
.stat-box strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--red);
}

.hero-stat span,
.stat-box span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head .label {
  margin-bottom: 18px;
}

.section-head h2,
.about-copy h2,
.pricing-box h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.section-head p,
.about-copy p,
.content-card p,
.policy-card p,
.info-card p,
.feature-box p,
.service-body p,
.detail-card p,
.contact-form label,
.field label,
.form-grid input,
.form-grid textarea,
.form-grid select,
.contact-card li {
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 28px rgba(20,20,20,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(20,20,20,0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--bg);
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.mini-link {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  margin-top: 10px;
}

.about-layout,
.split,
.contact-layout,
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-copy .check-list,
.price-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.about-copy .check-list li,
.price-list li,
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.about-copy .check-list i,
.price-list i,
.info-list i {
  color: var(--red);
  margin-top: 3px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(255,0,0,0.2);
}

.about-tag strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.feature-bar {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-box {
  padding: 30px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
}

.feature-box .icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 0, 0, 0.16);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-box h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.feature-box p {
  color: rgba(255,255,255,0.72);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pricing-box,
.policy-box,
.content-card,
.info-card,
.contact-form,
.policy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(20,20,20,0.05);
}

.pricing-box,
.policy-box {
  padding: 30px;
}

.policy-box {
  background: linear-gradient(180deg, #fff, #fff4f4);
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.testimonial-slide {
  min-width: calc(33.333% - 16px);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(20,20,20,0.04);
}

.stars {
  color: #ffb400;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.person-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.person span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.fixed-call-btn {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red) 0%, #d10000 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(255, 0, 0, 0.28);
  border: 2px solid rgba(255,255,255,0.35);
}

.fixed-call-btn span {
  white-space: nowrap;
}

.fixed-call-btn:hover {
  transform: translateX(-50%) translateY(-2px);
}

.cta-band {
  background: linear-gradient(90deg, var(--red) 0%, #d00000 100%);
  color: var(--white);
  padding: 28px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-inner h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.72);
  padding: 72px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 14px;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.15rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.page-hero {
  background: linear-gradient(135deg, rgba(255,0,0,0.9), rgba(91,0,0,0.82)), url("../img/hero-1.jpg") center/cover no-repeat;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.page-hero-inner {
  padding: 74px 0 32px;
}

.page-hero-inner h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
}

.page-hero-inner p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.04rem;
}

.mission-grid,
.policy-wrap,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.content-card,
.policy-card {
  padding: 28px 24px;
}

.content-card h3,
.policy-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
}

.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-item {
  position: relative;
}

.service-detail-layout {
  display: block;
  max-width: 1200px;
}

.side-nav {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 18px;
  position: sticky;
  top: 110px;
}

.side-nav h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}

.side-nav a.active,
.side-nav a:hover {
  background: var(--red-soft);
  color: var(--red);
}

.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.detail-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  min-height: 100%;
  height: 100%;
}

.detail-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.1;
}

.detail-card p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.detail-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--ink-soft);
  flex: 1;
}

.detail-card li + li {
  margin-top: 8px;
}

.detail-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-layout {
  align-items: start;
}

.contact-form,
.info-card {
  padding: 26px 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
}

.error-text {
  min-height: 18px;
  color: var(--red);
  font-size: 0.8rem;
}

.info-list {
  display: grid;
  gap: 14px;
}

.map-frame {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.policy-wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .hero-inner,
  .about-layout,
  .split,
  .contact-layout,
  .pricing-wrap,
  .service-detail-layout,
  .footer-grid,
  .feature-grid,
  .stat-grid,
  .service-grid,
  .mission-grid,
  .policy-wrap,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .contact-layout,
  .pricing-wrap,
  .about-layout,
  .split,
  .service-detail-layout {
    display: grid;
  }

  .feature-grid,
  .service-grid,
  .stat-grid,
  .mission-grid,
  .policy-wrap,
  .service-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-slide {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.98);
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-header {
    position: sticky;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-actions {
    display: none !important;
  }

  .hero-inner,
  .feature-grid,
  .service-grid,
  .stat-grid,
  .mission-grid,
  .policy-wrap,
  .footer-grid,
  .timeline,
  .form-grid,
  .about-layout,
  .split,
  .contact-layout,
  .pricing-wrap,
  .service-detail-layout,
  .service-detail-list {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 22px 18px;
  }

  .detail-card h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .hero {
    min-height: 620px;
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .service-card img {
    aspect-ratio: 16 / 10;
  }

  .fixed-call-btn {
    width: calc(100% - 22px);
    max-width: 320px;
    min-width: 0;
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
