:root {
      --primary: #4C7C7D;
      --accent: #F2A87E;
      --bg: #F5F7F8;
      --text: #253238;
      --radius-lg: 16px;
      --font-base: "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
    }

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

    body {
      font-family: var(--font-base);
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

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

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

    button, .btn {
      cursor: pointer;
      border: none;
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 16px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(245, 247, 248, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(37, 50, 56, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
    }

    .logo {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      letter-spacing: 0.03em;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 20px;
      font-size: 0.95rem;
    }

    .nav-links a {
      padding: 6px 0;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-size: 0.9rem;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      border: 1px solid transparent;
      transition: background 0.2s ease, transform 0.1s ease;
    }

    .nav-cta:hover {
      background: #3b6162;
      transform: translateY(-1px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 25px rgba(76, 124, 125, 0.25);
    }

    .btn-primary:hover {
      background: #3b6162;
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(76, 124, 125, 0.28);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(37, 50, 56, 0.16);
      color: var(--text);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(76, 124, 125, 0.04);
    }

    .section {
      padding: 72px 0;
    }

    .section-heading {
      margin-bottom: 24px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 4px;
      color: var(--text);
    }

    .section-subtitle {
      font-size: 1rem;
      color: rgba(37, 50, 56, 0.76);
      margin-bottom: 12px;
    }

    .section-text {
      max-width: 720px;
      font-size: 0.98rem;
      color: rgba(37, 50, 56, 0.9);
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .card-soft {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: 0 18px 45px rgba(15, 35, 52, 0.07);
      padding: 28px;
    }

    /* HERO */
    #hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: radial-gradient(circle at top left, #e6f0f1 0%, #f5f7f8 50%, #f2eae5 100%);
    }

    #hero .hero-kicker {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--primary);
      margin-bottom: 10px;
    }

    #hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 4vw, 3.1rem);
      line-height: 1.15;
      margin-bottom: 16px;
      color: #1e282d;
    }

    #hero .hero-subtitle {
      font-size: 1.02rem;
      color: rgba(37, 50, 56, 0.84);
      margin-bottom: 14px;
    }

    #hero .hero-text {
      font-size: 0.98rem;
      color: rgba(37, 50, 56, 0.9);
      margin-bottom: 26px;
      max-width: 520px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-note {
      font-size: 0.85rem;
      color: rgba(37, 50, 56, 0.7);
    }

    .hero-media {
      position: relative;
      padding: 24px;
    }

    .hero-card {
      background: #ffffffd9;
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: 0 20px 55px rgba(15, 35, 52, 0.12);
      max-width: 360px;
      margin-left: auto;
    }

    .hero-card-title {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      margin-bottom: 8px;
      color: var(--primary);
    }

    .hero-card-list {
      list-style: none;
      font-size: 0.9rem;
      color: rgba(37, 50, 56, 0.85);
    }

    .hero-card-list li {
      margin-bottom: 6px;
      padding-left: 18px;
      position: relative;
    }

    .hero-card-list li::before {
      content: "•";
      position: absolute;
      left: 4px;
      top: 0;
      color: var(--accent);
    }

    /* ABOUT */
    #about {
      background: #ffffff;
    }

    /* TESTIMONIALS */
    #testimonials {
      background: transparent;
    }

    .testimonials-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      margin-top: 24px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 22px 22px 20px;
      box-shadow: 0 10px 30px rgba(15, 35, 52, 0.06);
      font-size: 0.95rem;
    }

    .testimonial-quote {
      margin-bottom: 14px;
      color: rgba(37, 50, 56, 0.9);
    }

    .testimonial-author {
      font-weight: 600;
      font-size: 0.9rem;
      color: rgba(37, 50, 56, 0.86);
    }

    .testimonial-meta {
      font-size: 0.8rem;
      color: rgba(37, 50, 56, 0.6);
    }

    /* ADVANTAGES */
    #advantages {
      background: #ffffff;
    }

    .advantages-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      margin-top: 16px;
    }

    .adv-card {
      background: #f7fafb;
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      border: 1px solid rgba(37, 50, 56, 0.05);
    }

    .adv-title {
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 0.98rem;
    }

    .adv-text {
      font-size: 0.9rem;
      color: rgba(37, 50, 56, 0.8);
    }

    /* SERVICES */
    #services {
      background: #f5f7f8;
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: "img/image_694d123c7886e.png";
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
    }

    .services-card {
      background: #ffffffee;
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 20px 50px rgba(15, 35, 52, 0.08);
    }

    .services-list {
      list-style: none;
      margin-top: 12px;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .services-list li {
      margin-bottom: 6px;
      padding-left: 16px;
      position: relative;
    }

    .services-list li::before {
      content: "–";
      position: absolute;
      left: 2px;
      color: var(--primary);
    }

    .meta-note {
      font-size: 0.85rem;
      color: rgba(37, 50, 56, 0.65);
    }

    /* PRICING */
    #pricing {
      background: transparent;
    }

    .pricing-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 26px 24px 22px;
      box-shadow: 0 18px 45px rgba(15, 35, 52, 0.07);
      max-width: 720px;
      margin: 0 auto;
    }

    .pricing-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 8px;
      align-items: baseline;
      margin-bottom: 6px;
    }

    .pricing-label {
      font-weight: 600;
      font-size: 0.98rem;
    }

    .pricing-value {
      font-weight: 700;
      color: var(--primary);
    }

    .pricing-note {
      font-size: 0.9rem;
      color: rgba(37, 50, 56, 0.8);
      margin-top: 8px;
    }

    /* PORTFOLIO / AREAS OF FOCUS */
    #portfolio {
      position: relative;
      background: #f5f7f8;
      overflow: hidden;
    }

    #portfolio::before {
      content: "img/image_694d12446ab14.png";
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
    }

    .focus-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      margin-top: 16px;
    }

    .focus-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 18px 18px 14px;
      box-shadow: 0 12px 30px rgba(15, 35, 52, 0.06);
      font-size: 0.92rem;
    }

    .focus-title {
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 0.95rem;
    }

    /* FOOTER */
    #footer {
      background: #ffffff;
      border-top: 1px solid rgba(37, 50, 56, 0.08);
      font-size: 0.9rem;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
      gap: 32px;
      align-items: center;
    }

    .footer-title {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .footer-subtitle {
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .footer-text {
      white-space: pre-line;
      color: rgba(37, 50, 56, 0.85);
      margin-bottom: 12px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
      color: rgba(37, 50, 56, 0.7);
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-form-label {
      font-size: 0.9rem;
      margin-bottom: 8px;
      color: rgba(37, 50, 56, 0.9);
    }

    .footer-form {
      display: grid;
      gap: 8px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .field label {
      font-size: 0.8rem;
      color: rgba(37, 50, 56, 0.75);
    }

    .field input,
    .field textarea {
      border-radius: 999px;
      border: 1px solid rgba(37, 50, 56, 0.15);
      padding: 9px 12px;
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      background: #fafcfd;
    }

    .field textarea {
      resize: vertical;
      min-height: 70px;
      border-radius: 12px;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(76, 124, 125, 0.15);
      background: #fff;
    }

    /* Cookie notice */
    .cookie-notice {
      position: fixed;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: min(520px, calc(100% - 32px));
      background: #ffffff;
      border-radius: 999px;
      box-shadow: 0 18px 40px rgba(15, 35, 52, 0.18);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.78rem;
      color: rgba(37, 50, 56, 0.8);
      z-index: 50;
    }

    .cookie-notice button {
      font-size: 0.8rem;
      padding: 6px 12px;
      border-radius: 999px;
      border: none;
      background: var(--primary);
      color: #fff;
      white-space: nowrap;
    }

    .cookie-notice a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cookie-notice-hide {
      display: none !important;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .two-column {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-media {
        order: -1;
      }

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

      header {
        position: static;
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }
    }
