@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --c-primary: #1a365d;
  --c-secondary: #2b6cb0;
  --c-accent: #b7862b;
  --c-bg: #f7f8fc;
  --c-bg-alt: #edf0f7;
  --c-text: #1e2a3a;
  --c-text-light: #5a6878;
  --c-white: #ffffff;
  --c-border: #d5dbe5;
  --f-heading: 'Cormorant Garamond', serif;
  --f-body: 'Outfit', sans-serif;
  --header-h: 60px;
  --radius: 6px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

a {
  color: var(--c-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--c-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-primary);
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 0.8rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(247, 248, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213, 219, 229, 0.45);
  z-index: 1001;
  transition: transform 0.35s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.header-logo {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.25s;
}

.header-logo:hover {
  color: var(--c-accent);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-left a,
.nav-right a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width 0.3s;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--c-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-primary);
  transition: all 0.3s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(26, 54, 93, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.nav-overlay-inner a {
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s;
}

.nav-overlay-inner a:hover {
  color: var(--c-accent);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0f2342 100%);
  color: var(--c-white);
  padding: 8rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(183, 134, 43, 0.07);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(43, 108, 176, 0.08);
  pointer-events: none;
}

.hero h1 {
  color: var(--c-white);
  margin-bottom: 1rem;
  position: relative;
}

.hero h1 span {
  color: var(--c-accent);
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn-primary:hover {
  background: #a3751f;
  color: var(--c-white);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-dark:hover {
  background: #0f2342;
  color: var(--c-white);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--c-bg-alt);
}

.section-dark {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0f2342 100%);
  color: var(--c-white);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--c-text-light);
  font-size: 0.92rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.section-dark .section-title {
  color: var(--c-white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.08);
}

.service-card i {
  font-size: 1.8rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--c-text-light);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.service-card a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.why-content h2 {
  margin-bottom: 1rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.benefit-item i {
  color: var(--c-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefit-item div h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.benefit-item div p {
  color: var(--c-text-light);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.step-num {
  font-family: var(--f-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--c-accent);
  opacity: 0.12;
  position: absolute;
  top: 0.3rem;
  right: 0.8rem;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.step-card p {
  color: var(--c-text-light);
  font-size: 0.82rem;
  margin-bottom: 0;
  position: relative;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.quality-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.quality-content h2 {
  margin-bottom: 0.8rem;
}

.quality-content > p {
  color: var(--c-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 0.8rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
}

.stat-number {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-accent);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--c-text-light);
  margin-top: 0.2rem;
}

.cta-section {
  padding: 3.5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--c-white);
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.92rem;
  font-weight: 300;
}

.subpage-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0f2342 100%);
  color: var(--c-white);
  padding: 6.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(183, 134, 43, 0.06);
  pointer-events: none;
}

.subpage-hero h1 {
  color: var(--c-white);
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--c-border);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.08);
}

.pricing-card.featured {
  border-color: var(--c-accent);
  box-shadow: 0 4px 20px rgba(183, 134, 43, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pricing-card .pricing-desc {
  font-size: 0.78rem;
  color: var(--c-text-light);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 1.2rem;
}

.pricing-amount small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-text-light);
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  font-size: 0.82rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--c-bg-alt);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li i {
  color: var(--c-accent);
  font-size: 0.7rem;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.req-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.req-card i {
  color: var(--c-secondary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.req-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.req-card p {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.story-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.story-content h2 {
  margin-bottom: 0.8rem;
}

.story-content p {
  color: var(--c-text-light);
  font-size: 0.88rem;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  background: var(--c-white);
  padding: 1.8rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--c-text-light);
  margin-bottom: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.expertise-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
}

.expertise-stat .stat-number {
  font-family: var(--f-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-primary);
  display: block;
}

.expertise-stat .stat-label {
  font-size: 0.78rem;
  color: var(--c-text-light);
  display: block;
  margin-top: 0.3rem;
}

.contact-hero {
  padding: 6.5rem 0 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--c-primary) 0%, #0f2342 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(183, 134, 43, 0.06);
  pointer-events: none;
}

.contact-hero h1 {
  color: var(--c-white);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

.contact-main {
  padding: 3.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.contact-form {
  background: var(--c-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--c-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.85rem;
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-secondary);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--c-text-light);
  cursor: pointer;
  margin-bottom: 1.2rem;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--c-accent);
}

.contact-info-panel {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-info-panel h2 {
  color: var(--c-white);
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-detail i {
  color: var(--c-accent);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-detail div p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-detail div strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
  color: var(--c-white);
}

.contact-hours {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h3 {
  color: var(--c-white);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.contact-hours p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.map-section {
  padding: 0 0 0;
}

.map-wrapper {
  width: 100%;
  border-top: 3px solid var(--c-accent);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.site-footer {
  background: var(--c-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0;
  font-size: 0.72rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-risk {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--c-accent);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.footer-copy p {
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-inner p {
  font-size: 0.78rem;
  color: var(--c-text-light);
  margin-bottom: 0;
}

.cookie-inner p a {
  color: var(--c-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s;
}

.cookie-buttons .btn-accept {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}

.cookie-buttons .btn-accept:hover {
  background: #a3751f;
}

.cookie-buttons .btn-decline {
  background: transparent;
  color: var(--c-text-light);
  border-color: var(--c-border);
}

.cookie-buttons .btn-decline:hover {
  border-color: var(--c-text-light);
}

.policy-content {
  padding: 6.5rem 0 3rem;
}

.policy-content .container {
  max-width: 780px;
}

.policy-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.policy-content .policy-date {
  font-size: 0.78rem;
  color: var(--c-text-light);
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
}

.policy-content p {
  color: var(--c-text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.6rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.page-fullscreen main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.fullscreen-content {
  max-width: 480px;
}

.fullscreen-content i {
  font-size: 3rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: block;
}

.fullscreen-content h1 {
  margin-bottom: 0.8rem;
}

.fullscreen-content p {
  color: var(--c-text-light);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-intro-text h2 {
  margin-bottom: 0.8rem;
}

.service-intro-text p {
  color: var(--c-text-light);
  font-size: 0.88rem;
}

.service-intro-img img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .service-cards,
  .step-cards,
  .pricing-cards,
  .value-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid,
  .quality-grid,
  .story-grid,
  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .why-image,
  .quality-image,
  .story-image,
  .service-intro-img {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .req-grid {
    grid-template-columns: 1fr;
  }

  .quality-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  html {
    font-size: 13px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .subpage-hero,
  .contact-hero {
    padding: 5.5rem 0 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 6rem 0 2.5rem;
  }

  .header-logo {
    font-size: 1rem;
  }
}
