:root {
  --primary: #1a2740;
  --primary-md: #2d4a6e;
  --primary-lt: #3d6a9e;
  --accent: #00b894;
  --accent-dk: #00a077;
  --warm: #e17055;
  --warm-dk: #c0392b;
  --bg: #f5f7fa;
  --bg-alt: #edf1f7;
  --white: #ffffff;
  --txt: #1a1a2e;
  --txt-body: #555555;
  --txt-muted: #888888;
  --border: #dce3eb;
  --sh-sm: 0 1px 4px rgba(26,39,64,0.06);
  --sh-md: 0 4px 15px rgba(26,39,64,0.08);
  --sh-lg: 0 8px 30px rgba(26,39,64,0.12);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --ease: 0.3s cubic-bezier(0.4,0,0.2,1);
  --heading: 'Sora', sans-serif;
  --body: 'DM Sans', sans-serif;
  --max-w: 1140px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--body);
  color: var(--txt-body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dk);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  color: var(--txt);
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.55rem;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 0.95rem;
}

p {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.header-scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.2rem;
  height: 64px;
}

.logo {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logo::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary-md);
}

.header-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 1.5rem;
  max-width: 80px;
}

.main-nav ul {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.main-nav a {
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--txt-body);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--ease);
  letter-spacing: 0.2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: white;
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  transition: all var(--ease);
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

.menu-toggle.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background-color: white;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
  background-color: white;
}

.hero {
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-md) 60%, #1e4d6e 100%);
  color: var(--white);
  padding: 7rem 0 4rem;
}

.hero-home::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,184,148,0.08);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 520px;
}

.hero-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0,184,148,0.3);
  border-radius: var(--r-md);
  pointer-events: none;
}

.hero-image-wrap img {
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-sub {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-md) 100%);
  padding: 7.5rem 0 2.5rem;
  text-align: center;
  color: var(--white);
  min-height: 240px;
  display: flex;
  align-items: center;
}

.hero-sub .container {
  width: 100%;
}

.hero-sub h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-sub p {
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,184,148,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-warm {
  background: var(--warm);
  color: var(--white);
}

.btn-warm:hover {
  background: var(--warm-dk);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-md);
  color: var(--white);
  transform: translateY(-2px);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.78);
}

.section-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  color: var(--white);
}

.section-accent h2 {
  color: var(--white);
}

.section-accent p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--txt-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.section-header-light p {
  color: rgba(255,255,255,0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.8rem 1.4rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: all var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent);
}

.service-card.featured {
  border-color: var(--accent);
  box-shadow: var(--sh-md);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--accent);
  color: var(--white);
  padding: 0.2rem 2.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  transform: rotate(45deg);
  font-family: var(--heading);
  letter-spacing: 0.5px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-card .price {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.8rem 0;
}

.service-card .price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--txt-muted);
}

.service-features {
  text-align: left;
  margin: 1rem 0 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--txt-body);
}

.service-features li i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.feature-item {
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.feature-item:hover {
  box-shadow: var(--sh-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.feature-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: var(--txt-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.2rem 0.8rem;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 33px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.process-step h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--txt-muted);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.section-dark .stat-item h3 {
  color: var(--accent);
}

.stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.cta-section {
  padding: 3.5rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}

.detail-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.detail-content.reverse {
  direction: rtl;
}

.detail-content.reverse > * {
  direction: ltr;
}

.detail-text h2 {
  margin-bottom: 0.7rem;
}

.detail-text p {
  font-size: 0.9rem;
}

.detail-list {
  margin: 1rem 0 1.5rem;
}

.detail-list li {
  padding: 0.35rem 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--txt-body);
}

.detail-list li i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.detail-image {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.benefit-card:hover {
  box-shadow: var(--sh-sm);
  border-color: var(--accent);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.benefit-card h4 {
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 0.7rem;
}

.about-text p {
  font-size: 0.9rem;
}

.about-image {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.value-card {
  text-align: center;
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.value-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
  font-size: 1.05rem;
  color: var(--accent);
}

.value-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 0;
}

.contact-section {
  padding: 3.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-md) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0,184,148,0.12);
  pointer-events: none;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
  font-size: 0.85rem;
}

.contact-detail strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.78rem;
  font-family: var(--heading);
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 0.25rem;
  font-family: var(--heading);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--txt);
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--txt-muted);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--accent-dk);
}

.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.full-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  padding: 2rem;
  min-height: 100vh !important;
}

.full-page-content {
  max-width: 460px;
}

.full-page-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.full-page-icon.error-icon {
  color: var(--warm);
}

.full-page-content h1 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.full-page-content p {
  color: var(--txt-muted);
  margin-bottom: 1.5rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
}

.policy-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.policy-content h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.policy-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.policy-content p {
  font-size: 0.86rem;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 0.8rem;
  line-height: 1.65;
}

.policy-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.policy-date {
  font-size: 0.78rem;
  color: var(--txt-muted);
  margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 1.2rem 0 0.8rem;
  font-size: 0.75rem;
}

.footer-risk {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
}

.footer-risk p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  z-index: 9999;
  display: none;
  padding: 0.9rem 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--accent);
}

.cookie-content a:hover {
  color: var(--white);
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-sm);
  font-family: var(--heading);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease);
}

.cookie-accept:hover {
  background: var(--accent-dk);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.tool-card {
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--ease);
}

.tool-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,184,148,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
  font-size: 1rem;
  color: var(--accent);
}

.tool-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.tool-card p {
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-content.reverse {
    direction: ltr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-line {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(26,39,64,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 1001;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
  }

  .main-nav a {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
  }

  .main-nav a:hover {
    color: var(--accent);
  }

  .main-nav a::after {
    background: var(--accent);
  }

  .hero-home {
    min-height: 70vh;
    padding: 5.5rem 0 2.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .hero-sub {
    padding: 5.5rem 0 2rem;
    min-height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .cta-section {
    padding: 2.5rem 0;
  }

  .map-container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .header-inner {
    padding: 0 0.8rem;
  }

  .hero-home {
    padding: 5rem 0 2rem;
  }

  .hero-text h1 {
    font-size: 1.65rem;
  }

  .service-card {
    padding: 1.4rem 1rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .map-container {
    height: 200px;
  }
}
