
  :root {
    --cream: #f5f0e8;
    --black: #111111;
    --red: #c9323c;
    --blue: #1e4d8c;
    --yellow: #e8b84b;
    --teal: #2a7a8c;
    --navy: #0f1f3d;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--black);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--black);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
  }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    color: var(--black);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--black); color: var(--cream);
    border: none; padding: 12px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--red); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    padding: 120px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Abstract canvas background */
  .hero-canvas {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  /* Big circle top-right */
  .hero-canvas::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 520px; height: 520px;
    border-radius: 50%;
    border: 2px solid var(--black);
    opacity: 0.12;
  }
  .hero-canvas::after {
    content: '';
    position: absolute; bottom: 40px; left: 80px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.35;
  }

  /* SVG abstract shapes */
  .abstract-bg {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
  }

  .hero-content { position: relative; z-index: 2; }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--red);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block; width: 36px; height: 2px;
    background: var(--red);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 36px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--red);
  }
  .hero-title .outline {
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
  }

  .hero-desc {
    font-size: 17px; line-height: 1.7; font-weight: 300;
    color: #333;
    max-width: 480px;
    margin-bottom: 44px;
  }

  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--black); color: var(--cream);
    padding: 16px 40px;
    font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    font-weight: 500;
    transition: all 0.25s;
    border: 2px solid var(--black);
  }
  .btn-primary:hover { background: var(--red); border-color: var(--red); }
  .btn-secondary {
    color: var(--black); text-decoration: none;
    font-size: 14px; letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 2px solid var(--black);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { color: var(--red); border-color: var(--red); }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.2);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; line-height: 1;
    color: var(--black);
  }
  .stat-num span { color: var(--red); }
  .stat-label {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: #666; margin-top: 4px;
  }

  /* Hero right — geometric composition */
  .hero-art {
    position: relative; z-index: 2;
    height: 580px;
  }
  .geo-wrap {
    position: relative; width: 100%; height: 100%;
  }
  /* Large circle */
  .g-circle-lg {
    position: absolute; top: 30px; right: 20px;
    width: 340px; height: 340px; border-radius: 50%;
    border: 3px solid var(--black);
    background: transparent;
  }
  /* Filled circle blue */
  .g-circle-blue {
    position: absolute; top: 60px; right: 50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--blue);
    mix-blend-mode: multiply;
  }
  /* Red solid circle */
  .g-circle-red {
    position: absolute; top: 10px; left: 40px;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--red);
  }
  /* Yellow arc */
  .g-circle-yellow {
    position: absolute; bottom: 100px; left: 0px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 14px solid var(--yellow);
    clip-path: inset(0 0 50% 0);
  }
  /* Small black circles */
  .g-dot-1 { position: absolute; bottom: 180px; right: 60px; width: 40px; height: 40px; border-radius: 50%; background: var(--black); }
  .g-dot-2 { position: absolute; bottom: 60px; right: 160px; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); }
  .g-dot-3 { position: absolute; top: 220px; left: 80px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 2px solid var(--black); }
  /* Vertical line */
  .g-line-v {
    position: absolute; top: 0; left: 50%;
    width: 3px; height: 100%;
    background: var(--black); opacity: 0.15;
  }
  /* Horizontal line */
  .g-line-h {
    position: absolute; top: 40%; left: 0; right: 0;
    height: 2px;
    background: var(--black); opacity: 0.12;
  }
  /* Rectangle block */
  .g-rect {
    position: absolute; bottom: 140px; left: 20px;
    width: 80px; height: 120px;
    background: var(--teal); opacity: 0.6;
  }
  /* Black square */
  .g-sq {
    position: absolute; top: 180px; right: 30px;
    width: 60px; height: 60px;
    background: var(--black);
  }
  /* Thin diagonal line (SVG) */
  .g-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }

  /* text label on art */
  .g-label {
    position: absolute; bottom: 30px; right: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px; color: var(--black); opacity: 0.05;
    letter-spacing: -4px;
    user-select: none;
  }

  /* ─── TICKER ─── */
  .ticker {
    background: var(--black); color: var(--cream);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    grid-column: 1 / -1;
    width: calc(100% + 96px);
    margin: 0 -48px;
  }
  .ticker-inner {
    display: inline-flex; gap: 60px;
    animation: ticker 22s linear infinite;
  }
  .ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px;
    display: flex; align-items: center; gap: 24px;
  }
  .ticker-sep {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--yellow); display: inline-block;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── SERVICES ─── */
  .section { padding: 100px 48px; }
  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 64px;
    border-bottom: 2px solid var(--black);
    padding-bottom: 32px;
  }
  .section-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px; color: var(--black); opacity: 0.08;
    line-height: 1;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 2px;
    line-height: 1;
  }
  .section-subtitle {
    font-size: 14px; color: #666; max-width: 320px; line-height: 1.6;
    text-align: right;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--black);
    border: 2px solid var(--black);
  }
  .service-card {
    background: var(--cream);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover { background: var(--black); color: var(--cream); }
  .service-card:hover .service-price { color: var(--yellow); }
  .service-card:hover .service-icon { border-color: var(--cream); }

  .service-icon {
    width: 56px; height: 56px;
    border: 2px solid var(--black);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    font-family: 'Bebas Neue', sans-serif; font-size: 22px;
    transition: border-color 0.3s;
  }
  .si-1 { background: var(--red); color: var(--cream); border-color: var(--red); }
  .si-2 { background: var(--blue); color: var(--cream); border-color: var(--blue); }
  .si-3 { background: var(--teal); color: var(--cream); border-color: var(--teal); }
  .si-4 { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
  .si-5 { background: var(--navy); color: var(--cream); border-color: var(--navy); }
  .si-6 { background: var(--black); color: var(--cream); border-color: var(--black); }
  .service-card:hover .si-1,
  .service-card:hover .si-2,
  .service-card:hover .si-3,
  .service-card:hover .si-4,
  .service-card:hover .si-5,
  .service-card:hover .si-6 { opacity: 0.9; }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .service-desc {
    font-size: 14px; line-height: 1.7; color: #555;
    margin-bottom: 28px;
  }
  .service-card:hover .service-desc { color: #bbb; }
  .service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 1px;
    color: var(--red);
    transition: color 0.3s;
  }

  /* Corner geo accent */
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent var(--black) transparent;
    transition: border-color 0.3s;
  }
  .service-card:hover::after { border-color: transparent transparent var(--red) transparent; }

  /* ─── ABOUT ─── */
  .about { padding: 100px 48px; background: var(--black); color: var(--cream); position: relative; overflow: hidden; }
  .about::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.07);
  }
  .about::after {
    content: '';
    position: absolute; bottom: -60px; left: 200px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--red); opacity: 0.15;
  }

  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; position: relative; z-index: 2;
  }
  .about-art {
    position: relative; height: 420px;
  }
  /* Abstract portrait-like composition */
  .ap-1 { position: absolute; top: 0; left: 0; width: 220px; height: 300px; background: var(--blue); }
  .ap-2 { position: absolute; top: 40px; left: 40px; width: 200px; height: 200px; border-radius: 50%; background: var(--cream); }
  .ap-3 { position: absolute; top: 60px; left: 60px; width: 160px; height: 160px; border-radius: 50%; background: var(--blue); }
  .ap-4 { position: absolute; bottom: 0; left: 80px; width: 180px; height: 80px; background: var(--yellow); }
  .ap-5 { position: absolute; top: 20px; right: 20px; width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--cream); opacity: 0.3; }
  .ap-6 { position: absolute; bottom: 60px; right: 0; width: 80px; height: 80px; background: var(--red); }
  .ap-7 { position: absolute; top: 240px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.2); }
  .about-num {
    position: absolute; bottom: 10px; right: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px; color: white; opacity: 0.04;
    line-height: 1;
  }

  .about-section-label {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--yellow); margin-bottom: 24px;
  }
  .about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px; letter-spacing: 2px; line-height: 1;
    margin-bottom: 28px;
  }
  .about-title em { font-style: normal; color: var(--yellow); }
  .about-text {
    font-size: 16px; line-height: 1.8; color: #bbb;
    margin-bottom: 40px;
  }
  .about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .about-list li {
    display: flex; align-items: center; gap: 16px;
    font-size: 15px; font-weight: 300; color: #ccc;
  }
  .about-list li::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--red); flex-shrink: 0;
  }

  /* ─── PROCESS ─── */
  .process { padding: 100px 48px; }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 2px solid var(--black);
    margin-top: 64px;
  }
  .step {
    padding: 48px 36px;
    border-right: 2px solid var(--black);
    position: relative;
    overflow: hidden;
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px; color: var(--black); opacity: 0.06;
    line-height: 1; margin-bottom: 24px;
  }
  .step-circle {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 20px;
    margin-bottom: 24px;
    position: relative; z-index: 2;
  }
  .sc1 { background: var(--red); color: white; }
  .sc2 { background: var(--blue); color: white; }
  .sc3 { background: var(--yellow); color: var(--black); }
  .sc4 { background: var(--teal); color: white; }
  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .step-desc { font-size: 14px; line-height: 1.7; color: #555; }

  /* ─── CTA ─── */
  .cta-section {
    margin: 0 48px 100px;
    background: var(--red);
    padding: 80px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 40px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: -60px; right: 200px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
  }
  .cta-section::after {
    content: '';
    position: absolute; bottom: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
  }
  .cta-label {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 20px;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px; letter-spacing: 2px; line-height: 1;
    color: white;
  }
  .btn-cta-white {
    background: white; color: var(--red);
    padding: 20px 48px;
    font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; display: inline-block; white-space: nowrap;
    transition: all 0.25s;
    position: relative; z-index: 2;
  }
  .btn-cta-white:hover { background: var(--black); color: white; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    color: var(--cream);
    padding: 64px 48px 40px;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .footer-logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
  .footer-desc { font-size: 14px; line-height: 1.7; color: #8899aa; max-width: 280px; }
  .footer-col-title {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: #8899aa; margin-bottom: 24px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 15px; color: #ccc; text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--yellow); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: #556677;
  }

  /* ─── GEO DECORATIONS ─── */
  .geo-decor {
    position: absolute; pointer-events: none;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: floatUp 0.8s ease forwards;
  }
  .hero-eyebrow { animation-delay: 0.1s; opacity: 0; }
  .hero-title { animation-delay: 0.25s; opacity: 0; }
  .hero-desc { animation-delay: 0.4s; opacity: 0; }
  .hero-actions { animation-delay: 0.55s; opacity: 0; }
  .hero-stats { animation-delay: 0.7s; opacity: 0; }

  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .g-circle-lg { animation: rotateSlow 60s linear infinite; }

  /* responsive tweaks */
  @media (max-width: 900px) {
    .hero, .about-inner { grid-template-columns: 1fr; }
    .hero-art { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps .step:nth-child(2) { border-right: none; }
    .process-steps .step:nth-child(3) { border-top: 2px solid var(--black); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .section, .about, .process { padding: 64px 24px; }
    .cta-section { margin: 0 24px 64px; padding: 48px 32px; grid-template-columns: 1fr; }
  }


/* WordPress compatibility */
.admin-bar nav { top: 32px; }
body { overflow-x: hidden; }
.footer-logo,
.footer-logo:hover,
.nav-logo,
.nav-logo:hover { color: inherit; text-decoration: none; }
.nav-links,
.nav-cta-menu,
.footer-links { margin: 0; padding: 0; }
.nav-links li,
.nav-cta-menu li,
.footer-links li { list-style: none; margin: 0; padding: 0; }
.nav-cta-menu {
  display: flex;
  list-style: none;
}
.nav-cta-menu a {
  background: var(--black);
  color: var(--cream);
  padding: 14px 28px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
}
.nav-cta-menu a:hover {
  background: var(--red);
  color: var(--cream);
}
.footer-widget p { margin: 0; }
.footer-inner > div { min-width: 0; }
.site-main { min-height: 60vh; }
.page-shell { padding: 140px 35px 90px; }
.post-card { display:block; height:100%; padding:32px; border:1px solid var(--black); color:var(--black); background:var(--cream); }
.post-card__image,.entry-image{width:100%;height:auto;margin-bottom:24px;}
.post-card__title{font-family:'Bebas Neue',sans-serif;font-size:42px;line-height:.95;margin:10px 0;}
.narrow-content{max-width:840px;margin:0 auto;}
.entry-content{font-size:18px;line-height:1.7;}
@media (max-width: 782px){ .admin-bar nav { top: 46px; } }

@media (max-width: 600px) {
  nav {
    gap: 12px;
    padding: 10px 14px;
  }
  .nav-logo {
    font-size: 22px;
    letter-spacing: 2px;
    gap: 7px;
  }
  .nav-logo-dot {
    width: 9px;
    height: 9px;
  }
  .nav-cta-menu a {
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
  .hero {
    min-height: auto;
    padding: 88px 20px 48px;
    gap: 30px;
  }
  .hero-title {
    max-width: 100%;
    font-size: clamp(50px, 17vw, 66px);
    line-height: 0.96;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .hero-title .outline {
    -webkit-text-stroke-width: 1px;
    overflow-wrap: anywhere;
  }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .hero-desc {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .hero-actions {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 34px;
  }
  .btn-primary,
  .btn-secondary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }
  .btn-primary {
    padding: 13px 22px;
    font-size: 10px;
  }
  .btn-secondary {
    font-size: 10px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 20px;
  }
  .stat-num {
    font-size: 38px;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.3;
  }
  .ticker {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 13px 0;
  }
  .ticker-inner {
    gap: 38px;
  }
  .ticker-item {
    font-size: 17px;
    letter-spacing: 2px;
  }
  .section,
  .process {
    padding: 64px 20px;
  }
  .section-header {
    display: block;
    margin-bottom: 34px;
    padding-bottom: 22px;
  }
  .section-num {
    font-size: 58px;
  }
  .section-title {
    font-size: 44px;
    letter-spacing: 1px;
  }
  .section-subtitle {
    max-width: 250px;
    margin-top: 14px;
    margin-left: auto;
    text-align: right;
    font-size: 10px;
    line-height: 1.45;
  }
  .services-grid,
  .process-steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .service-card,
  .step {
    min-height: auto;
    border-right: none !important;
  }
  .service-card:not(:last-child),
  .step:not(:last-child) {
    border-bottom: 2px solid var(--black);
  }
  .service-card {
    padding: 26px 28px 72px;
  }
  .service-name {
    max-width: 260px;
    font-size: 26px;
    line-height: 1.05;
  }
  .service-desc,
  .step-desc {
    max-width: 260px;
    font-size: 12px;
    line-height: 1.6;
  }
  .service-price {
    right: 28px;
    bottom: 26px;
    font-size: 28px;
  }
  .about {
    padding: 60px 20px 68px;
  }
  .about-inner {
    gap: 34px;
  }
  .about-art {
    height: 280px;
  }
  .about-title {
    font-size: 42px;
    line-height: 1;
  }
  .about-text,
  .about-list li {
    font-size: 12px;
    line-height: 1.65;
  }
  .process-steps {
    margin-top: 34px;
  }
  .step {
    padding: 26px;
  }
  .step-num {
    font-size: 56px;
    margin-bottom: 22px;
  }
  .step-circle {
    position: static;
    margin-bottom: 18px;
  }
  .step-title {
    max-width: 240px;
    font-size: 24px;
    line-height: 1.05;
  }
  .cta-section {
    margin: 0 20px 64px;
    padding: 36px 28px;
    min-height: 0;
    display: block;
  }
  .cta-label {
    font-size: 9px;
    letter-spacing: 3px;
  }
  .cta-title {
    font-size: 42px;
    margin-bottom: 24px;
  }
  .btn-cta-white {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    font-size: 11px;
  }
  footer {
    padding: 52px 20px 32px;
  }
  .footer-inner {
    gap: 32px;
  }
  .footer-logo {
    font-size: 28px;
  }
  .footer-desc,
  .footer-links a {
    font-size: 12px;
    line-height: 1.55;
  }
  .footer-bottom {
    display: block;
    padding-top: 24px;
    font-size: 11px;
  }
}
