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

    :root {
      --cream: #F7F9FC;
      --cream-alt: #EDF1F7;
      --brown-light: #B0C4DE;
      --brown-mid: #5B7FA5;
      --brown-dark: #1E3A5F;
      --brown-deep: #0F1F33;
      --accent: #2E86DE;
      --sage: #34D399;
      --text: #1A2332;
      --text-muted: #5A6B7F;
      --header-h: 72px;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
      background: var(--cream);
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ─── Grain overlay (отключён для чистой голубой темы) ─── */

    /* ─── HEADER ─── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      height: var(--header-h);
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      z-index: 100;
      transition: box-shadow 0.3s, background 0.3s;
      overflow: hidden;
    }

    header.scrolled {
      box-shadow: 0 1px 0 var(--brown-light), 0 4px 24px rgba(30, 58, 95, 0.07);
    }

    .logo {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(1.2rem, 4vw, 1.55rem);
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--brown-dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.45em;
      flex-shrink: 1;
      min-width: 0;
    }

    .logo span {
      color: var(--accent);
    }

    .logo-img {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2.2rem;
    }

    nav a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: var(--brown-dark);
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-phone {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--brown-dark) !important;
      text-decoration: none;
      letter-spacing: 0.03em;
      padding: 0.4em 1.1em;
      border: 1.5px solid var(--brown-light);
      border-radius: 2px;
      transition: background 0.25s, border-color 0.25s, color 0.25s !important;
    }

    .nav-phone::after {
      display: none !important;
    }

    .nav-phone:hover {
      background: var(--brown-dark);
      border-color: var(--brown-dark);
      color: var(--cream) !important;
    }

    /* ─── SECTIONS COMMON ─── */
    section {
      padding: 100px 5vw;
      max-width: 100%;
      overflow-x: clip;
    }

    section:nth-child(even) {
      background: var(--cream-alt);
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.7em;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--accent);
    }

    h2 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--brown-dark);
      margin-bottom: 1.6rem;
    }

    /* ─── FADE-IN ANIMATION ─── */
    /* По умолчанию всё видно — JS добавит .js-ready к <html> и включит анимацию */
    .js-ready .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .js-ready .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.32s;
    }

    .reveal-delay-4 {
      transition-delay: 0.44s;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      padding-top: calc(var(--header-h) + 80px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4vw;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-ring {
      position: absolute;
      right: -8vw;
      top: 50%;
      transform: translateY(-50%);
      width: 55vw;
      height: 55vw;
      max-width: 680px;
      max-height: 680px;
      border-radius: 50%;
      border: 1px solid var(--brown-light);
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-bg-ring::after {
      content: '';
      position: absolute;
      inset: 12%;
      border-radius: 50%;
      border: 1px solid var(--brown-light);
      opacity: 0.6;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.6em;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--accent);
    }

    h1 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(3rem, 6.5vw, 5.6rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--brown-dark);
      margin-bottom: 1.6rem;
    }

    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    h1 strong {
      font-weight: 600;
    }

    .hero-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 440px;
      margin-bottom: 2.4rem;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      background: var(--brown-dark);
      color: var(--cream);
      font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.95em 2.2em;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    .hero-phone-link {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--brown-mid);
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.25s;
      position: relative;
    }

    .hero-phone-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .hero-phone-link:hover {
      color: var(--accent);
    }

    .hero-phone-link:hover::after {
      transform: scaleX(1);
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      background: var(--cream-alt);
      border: 1px solid var(--brown-light);
      border-radius: 4px;
      padding: 3rem 2.5rem;
      width: 100%;
      max-width: 380px;
      position: relative;
      z-index: 1;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px dashed var(--brown-light);
      border-radius: 2px;
      opacity: 0.5;
      pointer-events: none;
    }

    .hero-card-stat {
      margin-bottom: 1.6rem;
    }

    .hero-card-stat:last-child {
      margin-bottom: 0;
    }

    .hero-card-num {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 3.2rem;
      font-weight: 300;
      color: var(--brown-dark);
      line-height: 1;
    }

    .hero-card-num span {
      font-size: 1.5rem;
      color: var(--accent);
    }

    .hero-card-label {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    .hero-card-divider {
      height: 1px;
      background: var(--brown-light);
      margin: 1.4rem 0;
      opacity: 0.5;
    }

    .floater {
      position: absolute;
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 0.82rem;
      font-style: italic;
      color: var(--text-muted);
      opacity: 0.7;
    }

    .floater-tl {
      top: -1.5rem;
      left: 0;
    }

    .floater-br {
      bottom: -1.5rem;
      right: 0;
    }

    /* ─── ABOUT ─── */
    #about .inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      overflow: hidden;
    }

    .about-img-box {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--cream-alt);
      border: 1px solid var(--brown-light);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .about-img-box::after {
      display: none;
    }

    .about-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-offset-card {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--brown-dark);
      color: var(--cream);
      padding: 1.4rem 1.8rem;
      border-radius: 4px;
      z-index: 2;
    }

    .about-offset-num {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 2.6rem;
      font-weight: 300;
      line-height: 1;
    }

    .about-offset-text {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-top: 0.2rem;
    }

    .about-text p {
      color: var(--text-muted);
      margin-bottom: 1.1rem;
      font-size: 0.97rem;
    }

    .about-features {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .about-features li {
      display: flex;
      align-items: center;
      gap: 0.8em;
      font-size: 0.9rem;
      color: var(--brown-dark);
      font-weight: 500;
    }

    .about-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }

    /* ─── SERVICES ─── */
    #services .grid,
    #works .grid,
    #faq .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    #services .grid {
      margin-top: 3.5rem;
    }

    .service-card {
      background: var(--cream);
      border: 1px solid var(--cream-alt);
      border-radius: 4px;
      padding: 2.4rem 2rem;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(30, 58, 95, 0.1);
      border-color: var(--brown-light);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.4rem;
      display: block;
    }

    .card-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      display: block;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--brown-dark);
      margin-bottom: 0.7rem;
    }

    .service-card h3 a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .service-card h3 a:hover {
      color: var(--accent);
    }

    .service-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── WORKS (clients) ─── */
    #works .section-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    #works .section-top h2 {
      margin-bottom: 0;
    }

    /* ─── PRICING ─── */
    #pricing .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .price-card {
      background: var(--cream-alt);
      border: 1px solid var(--brown-light);
      border-radius: 4px;
      padding: 2.6rem 2.2rem;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .price-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1);
    }

    .price-card.featured {
      background: var(--brown-dark);
      border-color: var(--brown-dark);
      color: var(--cream);
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: var(--cream);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.3em 1em;
      border-radius: 20px;
    }

    .price-tier {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.8rem;
    }

    .price-card.featured .price-tier {
      color: var(--brown-light);
    }

    .price-num {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 3rem;
      font-weight: 300;
      line-height: 1;
      color: var(--brown-dark);
      margin-bottom: 0.3rem;
    }

    .price-card.featured .price-num {
      color: var(--cream);
    }

    .price-num sub {
      font-size: 1.1rem;
      vertical-align: baseline;
      margin-right: 0.1em;
    }

    .price-num sup {
      font-size: 1rem;
      vertical-align: super;
    }

    .price-per {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
    }

    .price-card.featured .price-per {
      color: rgba(247, 249, 252, 0.55);
    }

    .price-divider {
      height: 1px;
      background: var(--brown-light);
      opacity: 0.4;
      margin: 1.4rem 0;
    }

    .price-card.featured .price-divider {
      background: rgba(176, 196, 222, 0.4);
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .price-features li {
      font-size: 0.88rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.7em;
    }

    .price-card.featured .price-features li {
      color: rgba(247, 249, 252, 0.75);
    }

    .price-features li::before {
      content: '✓';
      color: var(--sage);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .price-card.featured .price-features li::before {
      color: var(--brown-light);
    }

    .price-cta {
      display: block;
      text-align: center;
      margin-top: 2rem;
      padding: 0.8em 1.5em;
      border: 1.5px solid var(--brown-mid);
      border-radius: 2px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brown-dark);
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }

    .price-cta:hover {
      background: var(--brown-dark);
      border-color: var(--brown-dark);
      color: var(--cream);
    }

    .price-card.featured .price-cta {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--cream);
    }

    .price-card.featured .price-cta:hover {
      background: var(--brown-light);
      border-color: var(--brown-light);
      color: var(--brown-deep);
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--brown-dark);
      color: var(--cream);
    }

    #contact .inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: start;
    }

    #contact .section-label {
      color: var(--brown-light);
    }

    #contact .section-label::before {
      background: var(--brown-light);
    }

    #contact h2 {
      color: var(--cream);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 1rem;
    }

    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(176, 196, 222, 0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .contact-item-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown-light);
      margin-bottom: 0.3rem;
    }

    .contact-item-value {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
    }

    a.contact-item-value {
      text-decoration: none;
      transition: color 0.25s;
    }

    a.contact-item-value:hover {
      color: var(--brown-light);
    }

    .contact-phone-big {
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--cream);
      text-decoration: none;
      transition: color 0.25s;
    }

    .contact-phone-big:hover {
      color: var(--brown-light);
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(176, 196, 222, 0.2);
      border-radius: 4px;
      padding: 2.5rem;
    }

    .contact-form h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 1.8rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brown-light);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(176, 196, 222, 0.25);
      border-radius: 2px;
      padding: 0.8em 1em;
      font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.9rem;
      color: var(--cream);
      outline: none;
      transition: border-color 0.25s;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(176, 196, 222, 0.4);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--brown-light);
    }

    .form-group textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-group select option {
      background: var(--brown-dark);
    }

    .btn-submit {
      width: 100%;
      padding: 0.95em;
      background: var(--accent);
      color: var(--cream);
      border: none;
      border-radius: 2px;
      font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-submit:hover {
      background: var(--brown-light);
      color: var(--brown-dark);
      transform: translateY(-2px);
    }

    /* ─── MESSENGERS ─── */
    .messenger-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .messenger-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6em;
      padding: 0.7em 1.4em;
      border: 1px solid rgba(176, 196, 222, 0.3);
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: background 0.25s, border-color 0.25s, transform 0.2s;
    }

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

    .messenger-link i {
      flex-shrink: 0;
    }

    .messenger-viber {
      color: #7360F2;
      border-color: rgba(115, 96, 242, 0.3);
    }

    .messenger-viber:hover {
      background: rgba(115, 96, 242, 0.1);
      border-color: #7360F2;
    }

    .messenger-telegram {
      color: #2AABEE;
      border-color: rgba(42, 171, 238, 0.3);
    }

    .messenger-telegram:hover {
      background: rgba(42, 171, 238, 0.1);
      border-color: #2AABEE;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--brown-deep);
      padding: 2.5rem 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      max-width: 100%;
      overflow-x: clip;
    }

    footer .logo {
      color: var(--cream-alt);
    }

    footer .logo span {
      color: var(--accent);
    }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(176, 196, 222, 0.5);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
    }

    .footer-links a {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(176, 196, 222, 0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--brown-light);
    }

    /* ─── SEO CONTENT & PAGE CONTENT ─── */
    #seo-content .seo-grid,
    #page-content .seo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(2rem, 4vw, 4rem);
      margin-top: 2rem;
    }

    #page-content .seo-grid {
      margin-top: 0;
    }

    #page-content .seo-grid--2 {
      grid-template-columns: repeat(2, 1fr);
    }

    #seo-content .seo-item,
    #page-content .seo-item {
      border-top: 1px solid var(--brown-light);
      padding-top: 1.25rem;
    }

    #seo-content .seo-item h2,
    #page-content .seo-item h2 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(1.4rem, 2.2vw, 1.85rem);
      font-weight: 600;
      line-height: 1.2;
      margin-top: 0;
      margin-bottom: 1rem;
      color: var(--brown-dark);
    }

    #seo-content .seo-item p,
    #page-content .seo-item p {
      color: var(--text-muted);
      margin-bottom: 1.1rem;
      line-height: 1.75;
      font-size: 0.95rem;
    }

    #seo-content .seo-item p:last-child,
    #page-content .seo-item p:last-child {
      margin-bottom: 0;
    }

    #page-content .seo-item ul {
      list-style: none;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    #page-content .seo-item li {
      display: flex;
      align-items: center;
      gap: 0.8em;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    #page-content .seo-item li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }

    /* ─── BRANDS ─── */
    #brands .brand-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      list-style: none;
      margin-top: 2rem;
    }

    #brands .brand-list li {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--brown-dark);
      background: var(--cream);
      border: 1px solid var(--brown-light);
      padding: 0.55em 1.1em;
      border-radius: 4px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr;
        padding-top: calc(var(--header-h) + 40px);
      }

      .hero-visual {
        display: none;
      }

      #about .inner {
        grid-template-columns: 1fr;
      }

      .about-img-wrap {
        max-width: 420px;
        margin-bottom: 3rem;
      }

      .about-offset-card {
        right: 0;
      }

      #contact .inner {
        grid-template-columns: 1fr;
      }

      #faq .grid {
        grid-template-columns: 1fr;
      }

      #seo-content .seo-grid,
      #page-content .seo-grid,
      #page-content .seo-grid--2 {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      #works .section-top {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ─── HEADER MESSENGERS ─── */
    .nav-messengers {
      display: flex;
      gap: 0.6rem;
    }

    .nav-msg {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 1.1rem;
      text-decoration: none;
      transition: transform 0.2s, background 0.25s;
    }

    .nav-msg:hover {
      transform: scale(1.15);
    }

    .nav-msg-viber {
      color: #7360F2;
      background: rgba(115, 96, 242, 0.1);
    }

    .nav-msg-viber:hover {
      background: rgba(115, 96, 242, 0.2);
    }

    .nav-msg-tg {
      color: #2AABEE;
      background: rgba(42, 171, 238, 0.1);
    }

    .nav-msg-tg:hover {
      background: rgba(42, 171, 238, 0.2);
    }

    .header-messengers-mobile {
      display: none;
      gap: 0.5rem;
      position: absolute;
      right: calc(5vw + 40px);
      top: 50%;
      transform: translateY(-50%);
    }

    /* ─── BURGER ─── */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 102;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--brown-dark);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .burger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
      opacity: 0;
    }

    .burger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 1100px) {
      .burger {
        display: flex;
      }

      .header-messengers-mobile {
        display: flex;
      }

      nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(85vw, 320px);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 1.2rem;
        box-shadow: -4px 0 24px rgba(30, 58, 95, 0.1);
        transform: translate3d(100%, 0, 0);
        transition: transform 0.3s ease, visibility 0.3s;
        visibility: hidden;
        pointer-events: none;
        z-index: 101;
        overflow-y: auto;
      }

      nav.open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
      }

      nav a {
        font-size: 0.9rem;
        white-space: normal;
      }

      .nav-phone {
        margin-top: 1rem;
      }

      h1 {
        font-size: clamp(2.2rem, 9vw, 2.8rem);
        overflow-wrap: anywhere;
      }

      .hero-desc,
      .about-text p,
      #seo-content p,
      #page-content p {
        overflow-wrap: anywhere;
      }

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

    @media (max-width: 640px) {
      section {
        padding: 72px 5vw;
      }

      .header-messengers-mobile {
        right: calc(5vw + 44px);
      }
    }

    /* ─── SERVICE PAGE ─── */
    #hero.hero-compact {
      min-height: auto;
      padding-bottom: 80px;
    }

    #hero.hero-compact h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
    }

    #hero.hero-compact .hero-desc {
      max-width: 600px;
    }

    body.page-short {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    body.page-short #hero.hero-compact {
      flex: 1;
    }

    nav a.active {
      color: var(--brown-dark);
    }

    nav a.active::after {
      width: 100%;
    }
