:root {
  --bg: #f7fafc;
  --bg-elevated: #ffffff;
  --primary: #2563eb;
  --primary-soft: #e0edff;
  --accent: #22c55e;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 40%, #ffffff 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.7));
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 85px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: conic-gradient(from 200deg, #22c55e, #0ea5e9, #2563eb, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  bottom: -4px;
  border-radius: 999px;
  background: linear-gradient(to right, #0ea5e9, #2563eb);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--text-main);
}

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

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  background: #ffffff;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-highlights li::before {
  content: "•";
  color: #22c55e;
  font-weight: 700;
  display: inline-block;
  width: 1rem;
}

.hero-media {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-card img {
  border-radius: 16px;
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.hero-card-content {
  padding: 0.7rem 0.6rem 0.4rem;
}

.hero-card-content h2 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.hero-card-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-features {
  padding: 1.5rem 0 2.5rem;
}

.home-features h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.feature-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-cta {
  padding: 0 0 3rem;
}

.home-cta-inner {
  background: linear-gradient(120deg, #eff6ff, #e0f2fe);
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.home-cta-inner h2 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
}

.home-cta-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-cta-contact {
  text-align: right;
}

.cta-phone {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-note {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 600px;
  color: var(--text-muted);
}

.about-story {
  padding: 0.5rem 0 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.about-story h2 {
  margin-top: 0;
}

.about-story p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.about-list {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.about-stats {
  padding: 0 0 2.3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-team {
  padding: 0 0 3rem;
}

.about-team h2 {
  margin-bottom: 0.4rem;
}

.about-team p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.team-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.team-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.team-card h3 {
  margin: 0 0 0.4rem;
}

.team-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-grid-section {
  padding: 0.5rem 0 2.5rem;
}

.services-grid-section h2 {
  margin-bottom: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.accessories-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
}

.service-card.small {
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* Service card image gallery */
.service-gallery {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.gallery-main {
  position: relative;
  min-height: 190px;
  background: var(--bg);
}
.gallery-main .gallery-current {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease;
  z-index: 2;
}
.gallery-btn:hover {
  background: rgba(15, 23, 42, 0.75);
  transform: translateY(-50%) scale(1.05);
}
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(248, 250, 252, 0.95);
  border-top: 1px solid var(--border-subtle);
}
.gallery-thumb {
  flex: 1;
  min-width: 0;
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #e2e8f0;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.gallery-thumb:hover {
  opacity: 0.9;
}
.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card.small .service-gallery { display: none; }
.service-image img {
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.service-body {
  padding: 1.1rem 1rem;
}

.service-body h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.service-body p {
  margin: 0.2rem 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-body ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-price {
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--primary);
}

.service-process {
  padding: 0 0 2.6rem;
}

.service-process h2 {
  margin-bottom: 1rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.process-steps li {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.process-steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta {
  padding: 0 0 3rem;
}

.service-cta-inner {
  background: linear-gradient(120deg, #eff6ff, #e0f2fe);
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.service-cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.service-cta-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta-inner a {
  color: var(--primary);
  font-weight: 500;
}

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 2.2rem;
  margin-top: 0.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 1.8rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact h3,
.footer-links h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact li + li {
  margin-top: 0.2rem;
}

.footer-links a {
  color: #d1d5db;
  font-size: 0.9rem;
}

.footer-links li + li {
  margin-top: 0.2rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.8rem 0 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

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

  .service-card {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .home-cta-contact {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-block: 0.7rem;
  }

  .nav {
    gap: 0.9rem;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .page-hero {
    padding-top: 2.3rem;
  }
}

