/*
Theme Name: Google Reklama
Theme URI: https://googlereklama.lt/
Author: AdsDrive
Description: Custom WordPress theme converted from static HTML with ACF-ready templates.
Version: 1.0.0
Text Domain: googlereklama
*/



/* Source: Pagrindinis.html */
:root {
      --green: #0f9d58;
      --green-dark: #063b2f;
      --green-soft: #eefaf4;
      --blue: #4285f4;
      --yellow: #fbbc04;
      --red: #ea4335;
      --text: #14201b;
      --muted: #66746f;
      --border: #e8efeb;
      --bg: #ffffff;
      --soft-bg: #f7faf8;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(17, 32, 25, 0.075);
      --shadow-soft: 0 12px 34px rgba(17, 32, 25, 0.045);
      --radius: 24px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(15,157,88,.06), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(66,133,244,.055), transparent 26%),
        #fff;
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(1440px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.84);
      border-bottom: 1px solid rgba(232,239,235,.7);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      font-size: 21px;
      letter-spacing: -0.04em;
    }

    .logo-mark {
      width: 31px;
      height: 31px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, transparent 28%, #fbbc04 28% 47%, transparent 47%),
        linear-gradient(35deg, #4285f4 0 48%, transparent 48%),
        linear-gradient(145deg, transparent 38%, #34a853 38% 100%);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #243b33;
      font-weight: 650;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      font-weight: 650;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 13px 20px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-primary { background: var(--green); color: white; box-shadow: 0 10px 24px rgba(15,157,88,.22); }
    .btn-primary:hover { background: #0b884c; transform: translateY(-1px); }
    .btn-outline { background: white; border-color: #dbe7e1; color: #16362a; }
    .btn-light { background: #dff6e8; color: #075f3f; }

    .hero-section { padding: 28px 0 48px; }

    .hero {
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      align-items: center;
      min-height: 610px;
    }

    .hero-content {
      padding: 28px 12px 28px 24px;
      max-width: 720px;
    }

    .eyebrow {
      color: var(--green);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 12px;
      margin-bottom: 14px;
    }

    h1, h2, h3 { line-height: 1.08; margin: 0; }
    h1 { font-size: clamp(42px, 5.8vw, 72px); letter-spacing: -0.065em; max-width: 720px; }
    h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.048em; }
    h3 { font-size: 21px; letter-spacing: -0.025em; }

    .accent { color: var(--green); }
    .lead { color: var(--muted); font-size: 17px; margin: 22px 0 30px; max-width: 600px; }
    .rich-text > :first-child { margin-top: 0; }
    .rich-text > :last-child { margin-bottom: 0; }
    .rich-text p { margin: 0 0 16px; }
    .rich-text ul,
    .rich-text ol { margin: 18px 0 0; padding-left: 22px; }
    .rich-text li { margin-bottom: 8px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

    .trust-row {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .trust-badge {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 10px;
      display: flex;
      gap: 9px;
      align-items: center;
      color: #50645c;
      font-size: 13px;
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .google-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc04 0 75%, #ea4335 0 100%);
    }

    .trust-badge-image {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      object-fit: contain;
      flex: 0 0 auto;
      display: block;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: stretch;
      justify-content: center;
      z-index: 1;
    }

    .photo-frame {
      width: 100%;
      height: 100%;
      min-height: 520px;
      border-radius: 28px;
      overflow: hidden;
      background: #eaf8f1;
      box-shadow: none;
      position: relative;
    }

    .photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

    .photo-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(6,59,47,.16));
    }

    .metric-float {
      position: absolute;
      left: 4px;
      bottom: 34px;
      background: rgba(255,255,255,.96);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 20px;
      width: 226px;
      box-shadow: var(--shadow);
      z-index: 2;
    }

    .metric-float span { color: var(--muted); font-weight: 800; font-size: 13px; }
    .metric-float strong { font-size: 34px; color: var(--green); display: block; letter-spacing: -0.06em; }
    .metric-float small { color: var(--muted); }
    .mini-chart { height: 42px; margin-top: 13px; border-bottom: 4px solid #78d7a2; border-radius: 50%; transform: skew(-18deg); }

    section { padding: 62px 0; }
    .white-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 54px;
      align-items: center;
    }

    .checks { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 12px; color: #27423a; }
    .checks li::before { content: "✓"; color: white; background: var(--green); border-radius: 50%; padding: 1px 5px; margin-right: 10px; font-size: 12px; font-weight: 900; }

    .dashboard {
      background: white;
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .dashboard img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      border-radius: 20px;
      border: 1px solid var(--border);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .stat, .card, .testimonial, .resource-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 27px;
      box-shadow: var(--shadow-soft);
    }

    .stat { text-align: center; }
    .stat strong { display: block; color: var(--green); font-size: 35px; letter-spacing: -0.055em; }
    .stat span { color: var(--muted); font-size: 13px; font-weight: 650; }

    .section-head { margin-bottom: 34px; }
    .section-head p { color: var(--muted); max-width: 760px; }

    .services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .icon { width: 47px; height: 47px; border-radius: 15px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-weight: 950; margin-bottom: 23px; }
    .card p, .testimonial p, .resource-card p { color: var(--muted); }

    .audit {
      background:
        radial-gradient(circle at 90% 0%, rgba(52,168,83,.24), transparent 32%),
        linear-gradient(135deg, #063b2f, #07533e);
      border-radius: 24px;
      padding: 34px;
      color: white;
      margin-top: 42px;
      box-shadow: 0 18px 48px rgba(6,59,47,.19);
    }

    .audit p { color: #cae5da; }
    .form-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 20px; }
    input, select, textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 15px 16px;
      font: inherit;
      outline: none;
      background: white;
    }

    .case-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
      box-shadow: var(--shadow-soft);
    }

    .case-image {
      height: 310px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--green-soft);
    }
    .case-image img { width: 100%; height: 100%; object-fit: cover; }

    .ai-strip {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 16px;
      background: #f2faf6;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 22px;
      margin-top: 34px;
      align-items: center;
    }

    .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .quote { color: var(--green); font-size: 35px; line-height: 1; }
    .author { display: flex; align-items: center; gap: 12px; margin-top: 23px; font-weight: 850; }
    .avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }

    .logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; align-items: center; margin-top: 32px; color: #a3afaa; font-weight: 950; text-align: center; }

    .two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .news-row { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--border); padding: 15px 0; color: var(--muted); }

    .team-photo {
      height: 350px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; }

    .resources { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; }
    .resource-list { display: grid; gap: 12px; margin-top: 16px; }
    .resource-list a { color: var(--green); font-weight: 800; font-size: 14px; }

    .contact-band {
      background:
        radial-gradient(circle at 6% 16%, rgba(15,157,88,.09), transparent 26%),
        linear-gradient(135deg, #f7fcf9, #ffffff);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 42px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 44px;
      align-items: center;
      box-shadow: var(--shadow-soft);
    }

    .contact-form { display: grid; gap: 12px; }
    .growth-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
    .growth-stats strong { color: var(--green); font-size: 28px; display: block; letter-spacing: -0.05em; }
    .growth-stats span { color: var(--muted); font-size: 13px; }

    footer {
      background:
        radial-gradient(circle at 12% 0%, rgba(15,157,88,.19), transparent 30%),
        #063b2f;
      color: white;
      padding: 64px 0 36px;
      margin-top: 70px;
    }

    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; }
    footer p, footer a { color: #bdd4cb; font-size: 14px; }
    .footer-links { display: grid; gap: 10px; margin-top: 16px; }
    .copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 24px; color: #bdd4cb; font-size: 13px; display: flex; justify-content: space-between; }

    @media (max-width: 980px) {
      .menu, .nav-actions a:first-child { display: none; }
      .hero, .split, .case-card, .contact-band { grid-template-columns: 1fr; }
      .stats, .services, .testimonials, .resources, .footer-grid, .growth-stats { grid-template-columns: 1fr 1fr; }
      .form-row, .ai-strip { grid-template-columns: 1fr 1fr; }
      .hero { padding: 46px 24px; }
    }

    @media (max-width: 640px) {
      section { padding: 46px 0; }
      .hero-section { padding-top: 16px; }
      .stats, .services, .testimonials, .two-cards, .resources, .footer-grid, .growth-stats, .form-row, .ai-strip, .logos { grid-template-columns: 1fr; }
      .hero-visual { min-height: 320px; }
      .photo-frame { width: 100%; height: 305px; }
      .metric-float { width: 188px; padding: 16px; }
      .contact-band { padding: 24px; }
      .copyright { flex-direction: column; gap: 12px; }
    }

/* Source: blog_html.html */
:root {
      --green: #0f9d58;
      --green-dark: #063b2f;
      --green-soft: #eefaf4;
      --text: #14201b;
      --muted: #66746f;
      --border: #e8efeb;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(17, 32, 25, 0.075);
      --shadow-soft: 0 12px 34px rgba(17, 32, 25, 0.045);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 5%, rgba(15,157,88,.07), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(66,133,244,.055), transparent 26%),
        #fff;
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(1440px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(232,239,235,.7);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      font-size: 21px;
      letter-spacing: -0.04em;
    }

    .logo-mark {
      width: 31px;
      height: 31px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, transparent 28%, #fbbc04 28% 47%, transparent 47%),
        linear-gradient(35deg, #4285f4 0 48%, transparent 48%),
        linear-gradient(145deg, transparent 38%, #34a853 38% 100%);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #243b33;
      font-weight: 650;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 13px 20px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      box-shadow: 0 10px 24px rgba(15,157,88,.22);
    }

    .btn-light {
      background: #dff6e8;
      color: #075f3f;
    }

    .blog-page { padding: 34px 0 76px; }

    .blog-hero {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 56px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
      overflow: hidden;
    }

    .eyebrow {
      color: var(--green);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 12px;
      margin-bottom: 14px;
    }

    h1, h2, h3 { margin: 0; line-height: 1.06; }

    h1 {
      font-size: clamp(42px, 5.6vw, 72px);
      letter-spacing: -.065em;
      max-width: 760px;
    }

    h2 {
      font-size: clamp(30px, 4vw, 46px);
      letter-spacing: -.05em;
    }

    h3 {
      font-size: 22px;
      letter-spacing: -.03em;
    }

    .lead {
      color: var(--muted);
      font-size: 17px;
      max-width: 640px;
      margin: 22px 0 0;
    }

    .hero-card {
      background:
        radial-gradient(circle at 100% 0%, rgba(15,157,88,.13), transparent 35%),
        #f8fbf9;
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 28px;
    }

    .hero-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 22px;
    }

    .blog-toolbar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      margin: 28px 0;
    }

    .search-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 14px 16px;
      display: flex;
      gap: 12px;
      align-items: center;
      box-shadow: var(--shadow-soft);
    }

    .search-box input {
      border: 0;
      outline: 0;
      font: inherit;
      width: 100%;
      color: var(--text);
      background: transparent;
    }

    .categories {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .category-pill {
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 999px;
      padding: 10px 14px;
      color: #27423a;
      font-size: 13px;
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .category-pill.active {
      background: var(--green);
      color: #fff;
      border-color: var(--green);
    }

    .blog-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 24px;
      align-items: start;
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .post-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: .22s ease;
      min-height: 100%;
    }

    .post-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(17, 32, 25, 0.09);
    }

    .post-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .post-content { padding: 24px; }

    .post-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      margin-bottom: 12px;
    }

    .tag {
      color: var(--green);
      background: var(--green-soft);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .post-content p {
      color: var(--muted);
      margin: 12px 0 18px;
    }

    .read-more {
      color: var(--green);
      font-weight: 900;
      font-size: 14px;
    }

    .sidebar {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 96px;
    }

    .side-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .side-card.dark {
      background:
        radial-gradient(circle at 90% 0%, rgba(15,157,88,.22), transparent 32%),
        linear-gradient(135deg, #063b2f, #07533e);
      color: #fff;
    }

    .side-card.dark p { color: #cfe7dc; }

    .side-card p {
      color: var(--muted);
      margin: 10px 0 18px;
    }

    .popular-list {
      display: grid;
      gap: 16px;
      margin-top: 16px;
    }

    .popular-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 12px;
      align-items: center;
    }

    .popular-item img {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      object-fit: cover;
    }

    .popular-item strong {
      display: block;
      font-size: 14px;
      line-height: 1.25;
    }

    .popular-item span {
      color: var(--muted);
      font-size: 12px;
    }

    .pagination {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 34px;
    }

    .page-number {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      background: #fff;
      font-weight: 850;
      color: #27423a;
    }

    .page-number.active {
      background: var(--green);
      color: #fff;
      border-color: var(--green);
    }

    footer {
      background:
        radial-gradient(circle at 12% 0%, rgba(15,157,88,.19), transparent 30%),
        #063b2f;
      color: white;
      padding: 46px 0;
    }

    footer p, footer a { color: #bdd4cb; font-size: 14px; }

    @media (max-width: 1180px) {
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 980px) {
      .menu { display: none; }
      .blog-hero, .blog-layout { grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .blog-toolbar { grid-template-columns: 1fr; }
      .categories { justify-content: flex-start; }
    }

    @media (max-width: 640px) {
      .blog-page { padding: 18px 0 52px; }
      .blog-hero { padding: 24px; border-radius: 24px; }
      .posts-grid { grid-template-columns: 1fr; }
      .hero-card img, .post-card img { height: 220px; }
    }

/* Source: single_post_html.html */
:root {
      --green: #0f9d58;
      --green-soft: #eefaf4;
      --text: #14201b;
      --muted: #66746f;
      --border: #e8efeb;
      --shadow: 0 24px 70px rgba(17, 32, 25, 0.075);
      --shadow-soft: 0 12px 34px rgba(17, 32, 25, 0.045);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 5%, rgba(15,157,88,.07), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(66,133,244,.055), transparent 26%),
        #fff;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(1440px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(232,239,235,.7);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      font-size: 21px;
      letter-spacing: -0.04em;
    }

    .logo-mark {
      width: 31px;
      height: 31px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, transparent 28%, #fbbc04 28% 47%, transparent 47%),
        linear-gradient(35deg, #4285f4 0 48%, transparent 48%),
        linear-gradient(145deg, transparent 38%, #34a853 38% 100%);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #243b33;
      font-weight: 650;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 13px 20px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      box-shadow: 0 10px 24px rgba(15,157,88,.22);
    }

    .btn-light {
      background: #dff6e8;
      color: #075f3f;
    }

    .single-page { padding: 34px 0 76px; }

    .post-hero {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 56px;
      overflow: hidden;
    }

    .breadcrumbs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 28px;
    }

    .breadcrumbs a { color: var(--green); }

    .post-hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      color: var(--green);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 12px;
      margin-bottom: 14px;
    }

    h1, h2, h3 { margin: 0; line-height: 1.08; }

    h1 {
      font-size: clamp(42px, 5.6vw, 72px);
      letter-spacing: -.065em;
      max-width: 840px;
    }

    h2 {
      font-size: clamp(28px, 3.2vw, 42px);
      letter-spacing: -.045em;
      margin-top: 42px;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 23px;
      letter-spacing: -.03em;
      margin-top: 30px;
      margin-bottom: 12px;
    }

    .lead {
      color: var(--muted);
      font-size: 18px;
      max-width: 720px;
      margin: 22px 0 0;
    }

    .post-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      margin-top: 24px;
    }

    .tag {
      color: var(--green);
      background: var(--green-soft);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .hero-image {
      border-radius: 26px;
      overflow: hidden;
      background: #f8fbf9;
      border: 1px solid var(--border);
    }

    .hero-image img {
      width: 100%;
      height: 430px;
      object-fit: cover;
    }

    .single-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 26px;
      align-items: start;
      margin-top: 26px;
    }

    .article-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow-soft);
      padding: 48px;
    }

    .article-content {
      max-width: 820px;
      margin: 0 auto;
      font-size: 18px;
    }

    .article-content p { color: #41514b; margin: 0 0 20px; }
    .article-content ul { color: #41514b; padding-left: 22px; }
    .article-content li { margin-bottom: 10px; }

    .article-callout {
      margin: 34px 0;
      padding: 26px;
      border-radius: 22px;
      background:
        radial-gradient(circle at 100% 0%, rgba(15,157,88,.12), transparent 32%),
        #f8fbf9;
      border: 1px solid var(--border);
    }

    .article-callout strong {
      display: block;
      font-size: 21px;
      margin-bottom: 8px;
    }

    .quote-box {
      margin: 34px 0;
      border-left: 5px solid var(--green);
      background: var(--green-soft);
      border-radius: 0 20px 20px 0;
      padding: 24px 28px;
      color: #143c2b;
      font-weight: 800;
      font-size: 21px;
      line-height: 1.45;
    }

    .article-footer {
      margin-top: 42px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .share-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .share-buttons a {
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 850;
      background: #fff;
      color: #27423a;
    }

    .sidebar {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 96px;
    }

    .side-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .side-card.dark {
      background:
        radial-gradient(circle at 90% 0%, rgba(15,157,88,.22), transparent 32%),
        linear-gradient(135deg, #063b2f, #07533e);
      color: #fff;
    }

    .side-card.dark p { color: #cfe7dc; }
    .side-card p { color: var(--muted); margin: 10px 0 18px; }

    .toc {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .toc a {
      color: #41514b;
      font-size: 14px;
      font-weight: 750;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    .author-card {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 14px;
      align-items: center;
    }

    .author-card img {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-card strong { display: block; }
    .author-card span { color: var(--muted); font-size: 13px; }

    .related-section {
      margin-top: 26px;
    }

    .related-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 18px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .related-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .related-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
    }

    .related-card div { padding: 22px; }
    .related-card p { color: var(--muted); margin: 10px 0 0; }

    footer {
      background:
        radial-gradient(circle at 12% 0%, rgba(15,157,88,.19), transparent 30%),
        #063b2f;
      color: white;
      padding: 46px 0;
    }

    footer p, footer a { color: #bdd4cb; font-size: 14px; }

    @media (max-width: 980px) {
      .menu { display: none; }
      .post-hero-grid, .single-layout { grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .related-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .single-page { padding: 18px 0 52px; }
      .post-hero, .article-card { padding: 24px; border-radius: 24px; }
      .hero-image img { height: 260px; }
      .article-content { font-size: 16px; }
      .article-footer { align-items: flex-start; }
    }

/* Source: kontaktai.html */
:root {
      --green: #0f9d58;
      --green-dark: #063b2f;
      --green-soft: #eefaf4;
      --blue: #4285f4;
      --yellow: #fbbc04;
      --red: #ea4335;
      --text: #14201b;
      --muted: #66746f;
      --border: #e8efeb;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(17, 32, 25, 0.075);
      --shadow-soft: 0 12px 34px rgba(17, 32, 25, 0.045);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 5%, rgba(15,157,88,.07), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(66,133,244,.055), transparent 26%),
        #fff;
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(1440px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(232,239,235,.7);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      font-size: 21px;
      letter-spacing: -0.04em;
    }

    .logo-mark {
      width: 31px;
      height: 31px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, transparent 28%, #fbbc04 28% 47%, transparent 47%),
        linear-gradient(35deg, #4285f4 0 48%, transparent 48%),
        linear-gradient(145deg, transparent 38%, #34a853 38% 100%);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #243b33;
      font-weight: 650;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 13px 20px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      box-shadow: 0 10px 24px rgba(15,157,88,.22);
    }

    .btn-primary:hover { background: #0b884c; transform: translateY(-1px); }

    .contact-page { padding: 34px 0 76px; }

    .contact-shell {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 34px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: stretch;
      min-height: 650px;
    }

    .contact-info {
      background:
        radial-gradient(circle at 12% 8%, rgba(15,157,88,.22), transparent 34%),
        linear-gradient(135deg, #063b2f, #07533e);
      border-radius: 26px;
      padding: 42px;
      color: white;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      right: -130px;
      bottom: -150px;
      border-radius: 50%;
      background: rgba(255,255,255,.075);
    }

    .eyebrow {
      color: #8be6b1;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 12px;
      margin-bottom: 14px;
    }

    h1, h2, h3 { margin: 0; line-height: 1.06; }

    h1 {
      font-size: clamp(42px, 5.4vw, 72px);
      letter-spacing: -.065em;
      max-width: 620px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 52px);
      letter-spacing: -.05em;
    }

    .contact-info p {
      color: #cfe7dc;
      font-size: 17px;
      max-width: 540px;
      margin: 22px 0 0;
    }

    .contact-details {
      display: grid;
      gap: 14px;
      margin-top: 44px;
      position: relative;
      z-index: 1;
    }

    .detail-card {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 15px;
      align-items: center;
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.13);
    }

    .detail-icon {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.13);
      font-size: 20px;
    }

    .detail-card span {
      display: block;
      color: #9eddb9;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 4px;
    }

    .detail-card strong,
    .detail-card a {
      color: white;
      font-size: 17px;
      font-weight: 850;
    }

    .contact-form-card {
      background:
        radial-gradient(circle at 100% 0%, rgba(15,157,88,.07), transparent 30%),
        #f8fbf9;
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-lead {
      color: var(--muted);
      font-size: 17px;
      max-width: 640px;
      margin: 18px 0 30px;
    }

    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    input, textarea {
      width: 100%;
      border: 1px solid #dfe9e4;
      border-radius: 14px;
      padding: 16px 17px;
      font: inherit;
      background: white;
      color: var(--text);
      outline: none;
      transition: .2s ease;
    }

    input:focus, textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(15,157,88,.09);
    }

    textarea {
      min-height: 170px;
      resize: vertical;
    }

    .submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 6px;
      flex-wrap: wrap;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      max-width: 340px;
      margin: 0;
    }

    .support-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .support-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .support-card strong {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
      letter-spacing: -.02em;
    }

    .support-card p {
      color: var(--muted);
      margin: 0;
    }

    footer {
      background:
        radial-gradient(circle at 12% 0%, rgba(15,157,88,.19), transparent 30%),
        #063b2f;
      color: white;
      padding: 46px 0;
    }

    footer p, footer a { color: #bdd4cb; font-size: 14px; }

    @media (max-width: 1100px) {
      .menu { display: none; }
      .contact-shell { grid-template-columns: 1fr; }
      .contact-info { min-height: 520px; }
    }

    @media (max-width: 700px) {
      .contact-page { padding: 18px 0 50px; }
      .contact-shell, .contact-info, .contact-form-card { padding: 24px; border-radius: 24px; }
      .form-grid, .support-strip { grid-template-columns: 1fr; }
      .detail-card { grid-template-columns: 1fr; }
      .submit-row .btn { width: 100%; }
    }

.admin-bar .nav-wrap { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav-wrap { top: 46px; } }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor, .alignright, .alignleft, .aligncenter { max-width: 100%; }
.article-content img, .post-content img { height: auto; border-radius: 18px; }
.article-content .wp-block-heading:first-child { margin-top: 0; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links > span { color: #bdd4cb; font-size: 14px; }
.footer-contact-links > a,
.footer-contact-links > span { line-height: 1.45; }
.footer-contact-links span span,
.footer-contact-links a span { color: #fff; font-weight: 800; }
.menu ul { list-style: none; margin: 0; padding: 0; display: contents; }
.pagination .page-numbers { border: 1px solid var(--border); background: #fff; border-radius: 12px; padding: 10px 14px; font-weight: 900; }
.pagination .page-numbers.current { background: var(--green); color: #fff; border-color: var(--green); }
.card-image {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  background: var(--green-soft);
  padding: 10px;
}
.strip-image {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  background: rgba(255,255,255,.12);
  padding: 8px;
}
.strip-item-image {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.logos span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
}
.client-logo {
  width: min(132px, 100%);
  height: 42px;
  object-fit: contain;
  display: block;
}
.resource-card-image {
  width: 100%;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 18px;
}
.cf7-wrap form {
  margin: 0;
}
.audit .cf7-wrap {
  margin-top: 20px;
}
.audit .cf7-wrap .audit-cf7-row {
  display: block;
}
.audit .cf7-wrap .hidden-fields-container,
.audit .cf7-wrap .screen-reader-response,
.audit .cf7-wrap .wpcf7-response-output {
  display: none;
}
.audit .cf7-wrap .audit-cf7-row > p,
.audit .cf7-wrap form > p {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(180px, .75fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 !important;
}
.audit .cf7-wrap br,
.audit .cf7-wrap .audit-cf7-row br {
  display: none !important;
}
.audit .cf7-wrap .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}
.cf7-wrap input,
.cf7-wrap select,
.cf7-wrap textarea {
  width: 100%;
}
.audit .cf7-wrap input,
.audit .cf7-wrap select {
  height: 48px;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 16px;
}
.audit .cf7-wrap input[type="submit"] {
  width: auto;
  min-width: 132px;
  border: 0;
  background: #9ee66f;
  color: #063b2f;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
}
.audit .cf7-wrap .wpcf7-spinner {
  display: none;
}
@media (max-width: 980px) {
  .audit .cf7-wrap .audit-cf7-row > p,
  .audit .cf7-wrap form > p {
    grid-template-columns: 1fr 1fr;
  }
  .audit .cf7-wrap input[type="submit"] {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .audit .cf7-wrap .audit-cf7-row > p,
  .audit .cf7-wrap form > p {
    grid-template-columns: 1fr;
  }
  .trust-row { gap: 8px; }
  .trust-badge { padding: 9px; }
  .trust-badge-image { width: 30px; height: 30px; border-radius: 9px; }
  .card-image, .strip-image { width: 48px; height: 48px; border-radius: 14px; }
  .strip-item-image { width: 24px; height: 24px; }
  .logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .client-logo { height: 34px; }
}

.trust-badge img.trust-badge-image {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  border-radius: 6px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .trust-badge img.trust-badge-image {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
  }
}

/* Builder layout refinements */
.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.services .card-image {
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  padding: 8px;
  object-fit: contain;
}

.case-media-results {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, .65fr);
  gap: 16px;
  align-items: stretch;
}

.case-media-results .case-image {
  height: 270px;
}

.case-result-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.case-result-stats .stat {
  padding: 20px;
  min-height: 0;
}

.ai-strip .strip-image {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain;
}

.ai-strip .strip-item-image {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
}

.logos span {
  width: 150px;
  min-height: 64px;
}

.client-logo {
  width: 130px;
  height: 42px;
  max-width: 130px;
  max-height: 42px;
}

.latest-posts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resources {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.resource-card {
  min-width: 0;
}

.growth-stats > div {
  min-width: 0;
}

.growth-stat-icon {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .case-media-results {
    grid-template-columns: 1fr;
  }

  .case-result-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stats,
  .latest-posts-grid,
  .resources,
  .case-result-stats {
    grid-template-columns: 1fr;
  }

  .services .card-image,
  .ai-strip .strip-image {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
  }

  .logos span {
    width: calc(50% - 8px);
    min-height: 54px;
  }

  .client-logo {
    width: 112px;
    height: 34px;
    max-width: 112px;
    max-height: 34px;
  }
}

/* Final mobile stability fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.container,
.nav,
.hero,
.split,
.stats,
.services,
.case-card,
.case-media-results,
.ai-strip,
.testimonials,
.latest-posts-grid,
.resources,
.contact-band,
.pricing-section,
.pricing-grid,
.contact-shell,
.contact-form-card,
.contact-info {
  min-width: 0;
}

.nav-wrap {
  overflow: visible;
}

.nav {
  position: relative;
}

.logo {
  min-width: 0;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(12, 45, 34, .08);
}

.mobile-menu-toggle span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  display: block;
}

@media (max-width: 1080px) {
  .nav {
    height: 68px;
    gap: 12px;
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 55px rgba(12, 45, 34, .16);
  }

  .nav-wrap.is-menu-open .nav .menu {
    display: flex !important;
  }

  .nav .menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav .menu a:hover {
    background: #f4faf7;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 64px;
  }

  .stats {
    justify-items: center;
    text-align: center;
  }

  .stats .stat {
    width: min(100%, 320px);
  }

  .trust-row {
    justify-content: center;
  }

  .trust-badge img.trust-badge-image {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
  }

  .services .card-image,
  .ai-strip .strip-image {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  .logos {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 12px;
    margin-inline: -2px;
  }

  .logos::-webkit-scrollbar {
    display: none;
  }

  .logos span {
    flex: 0 0 148px;
    width: 148px !important;
    min-height: 58px;
    scroll-snap-align: center;
  }

  .client-logo {
    width: 118px !important;
    height: 34px !important;
    max-width: 118px !important;
    max-height: 34px !important;
  }

  .contact-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-band > div:not(.cf7-wrap) {
    order: 1;
  }

  .contact-band > .cf7-wrap,
  .contact-band > .contact-form {
    order: 2;
  }

  .contact-band .growth-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .contact-band .growth-stats {
    grid-template-columns: 1fr;
  }
}

/* Google Ads calculator page */
.gadcalc-page {
  background: radial-gradient(circle at top left, #eef4ff 0, transparent 32%), #f5f7fb;
  color: #101828;
}

.gadcalc-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.gadcalc-header {
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.gadcalc-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.gadcalc-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #16a34a 55%, #f59e0b);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}

.gadcalc-brand small {
  display: block;
  color: #667085;
  font-weight: 600;
  margin-top: 2px;
}

.gadcalc-hero {
  text-align: center;
}

.gadcalc-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.gadcalc-hero p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  font-weight: 500;
}

.gadcalc-trust {
  justify-self: end;
  background: #eefaf3;
  border: 1px solid #d8f3df;
  color: #166534;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.gadcalc-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 20px;
}

.gadcalc-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid #e4e7ec;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, .08);
}

.gadcalc-panel {
  padding: 24px;
}

.gadcalc-panel h2 {
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: 0;
}

.gadcalc-subtext {
  color: #667085;
  margin: 0 0 24px;
  font-size: 14px;
}

.gadcalc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #cfd6e4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 26px;
  background: #f3f6fb;
}

.gadcalc-tab {
  border: 0;
  padding: 14px;
  font-weight: 800;
  color: #475467;
  background: transparent;
  cursor: pointer;
}

.gadcalc-tab.is-active {
  background: #2563eb;
  color: #fff;
}

.gadcalc-field {
  margin-bottom: 24px;
}

.gadcalc-field-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.gadcalc-field label {
  font-size: 14px;
  font-weight: 800;
}

.gadcalc-value-box {
  width: 100px;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 800;
  background: #fff;
  font-size: 15px;
}

.gadcalc-field input[type="range"] {
  width: 100%;
  accent-color: #2563eb;
}

.gadcalc-range-meta {
  display: flex;
  justify-content: space-between;
  color: #667085;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}

.gadcalc-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  color: #475467;
  line-height: 1.5;
}

.gadcalc-results-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.gadcalc-badge {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.gadcalc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.gadcalc-metric,
.gadcalc-detail,
.gadcalc-benefit {
  border: 1px solid #e4e7ec;
  background: #fff;
}

.gadcalc-metric {
  border-radius: 16px;
  padding: 18px;
  min-height: 126px;
}

.gadcalc-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 900;
}

.gadcalc-metric:nth-child(1) .gadcalc-metric-icon { background: #eff6ff; color: #2563eb; }
.gadcalc-metric:nth-child(2) .gadcalc-metric-icon { background: #ecfdf3; color: #16a34a; }
.gadcalc-metric:nth-child(3) .gadcalc-metric-icon { background: #fffbeb; color: #f59e0b; }
.gadcalc-metric:nth-child(4) .gadcalc-metric-icon { background: #f5f3ff; color: #7c3aed; }

.gadcalc-metric span,
.gadcalc-detail span {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.gadcalc-metric strong {
  display: block;
  font-size: 26px;
  margin-top: 4px;
  letter-spacing: 0;
}

.gadcalc-details-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 4px 0 18px;
}

.gadcalc-details-title::before,
.gadcalc-details-title::after {
  content: "";
  height: 1px;
  background: #e4e7ec;
  flex: 1;
}

.gadcalc-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.gadcalc-detail {
  border-radius: 14px;
  padding: 18px;
}

.gadcalc-detail strong {
  display: block;
  font-size: 24px;
  margin-top: 8px;
  letter-spacing: 0;
}

.gadcalc-profit-box {
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
}

.gadcalc-profit-box.is-bad {
  border-color: #fecaca;
  background: #fef2f2;
}

.gadcalc-profit-box h3,
.gadcalc-cta h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.gadcalc-profit-box p,
.gadcalc-cta p {
  margin: 0;
  color: #667085;
  font-weight: 600;
}

.gadcalc-score {
  background: rgba(255,255,255,.72);
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 900;
  min-width: 150px;
}

.gadcalc-cta {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid #c7d7fe;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.gadcalc-lock {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dbeafe;
  color: #2563eb;
  font-size: 24px;
  font-weight: 900;
}

.gadcalc-cf7 {
  margin-top: 16px;
}

.gadcalc-cf7 form {
  display: block;
  margin: 0;
}

.gadcalc-cf7 .hidden-fields-container,
.gadcalc-cf7 .screen-reader-response,
.gadcalc-cf7 .wpcf7-response-output,
.gadcalc-cf7 .wpcf7-spinner {
  display: none;
}

.gadcalc-cf7 .audit-cf7-row > p,
.gadcalc-cf7 form > p {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(150px, auto);
  gap: 10px;
  align-items: start;
  margin: 0 !important;
}

.gadcalc-cf7 br {
  display: none !important;
}

.gadcalc-cf7 .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.gadcalc-cf7 input,
.gadcalc-cf7 select,
.gadcalc-cf7 textarea {
  width: 100%;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 13px 12px;
  font: inherit;
  background: #fff;
  min-height: 50px;
}

.gadcalc-cf7 input[type="submit"],
.gadcalc-cf7 button {
  border: 0;
  border-radius: 10px;
  padding: 13px 16px;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(37, 99, 235, .22);
  min-height: 50px;
  width: 100%;
  white-space: nowrap;
}

.gadcalc-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.gadcalc-benefit {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}

.gadcalc-benefit strong {
  display: block;
  margin-bottom: 6px;
}

.gadcalc-benefit p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .gadcalc-header,
  .gadcalc-grid {
    grid-template-columns: 1fr;
  }

  .gadcalc-trust,
  .gadcalc-brand {
    justify-self: center;
  }

  .gadcalc-metrics,
  .gadcalc-details,
  .gadcalc-benefits,
  .gadcalc-cf7 .audit-cf7-row > p,
  .gadcalc-cf7 form > p {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .gadcalc-shell {
    width: min(100% - 28px, 1320px);
    padding: 22px 0;
  }

  .gadcalc-panel {
    padding: 18px;
  }

  .gadcalc-metrics,
  .gadcalc-details,
  .gadcalc-benefits,
  .gadcalc-cf7 .audit-cf7-row > p,
  .gadcalc-cf7 form > p,
  .gadcalc-cta {
    grid-template-columns: 1fr;
  }

  .gadcalc-profit-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Hero, split and pricing refinements */
.hero {
  align-items: stretch;
}

.hero-visual,
.photo-frame {
  min-height: 100%;
}

.photo-frame img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit;
  object-fit: cover !important;
  object-position: center center;
}

.trust-badge {
  width: 88px;
  height: 88px;
  justify-content: center;
  padding: 12px !important;
}

.trust-badge img.trust-badge-image {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  border-radius: 14px;
  object-fit: contain;
}

.split .btn {
  margin-top: 26px;
}

.pricing-section {
  padding-top: 54px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 560px;
  padding: 30px 30px 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(233, 241, 255, .95) 0 82px, transparent 84px),
    radial-gradient(circle at 0% 100%, rgba(233, 241, 255, .85) 0 92px, transparent 94px);
  pointer-events: none;
}

.pricing-card.is-highlighted {
  border-color: #ff4638;
  background: #ff4638;
  color: #fff;
  box-shadow: 0 28px 60px rgba(255, 70, 56, .26);
}

.pricing-card.is-highlighted::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.14) 0 92px, transparent 94px),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.08) 0 90px, transparent 92px);
}

.pricing-badge {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  padding: 11px 20px;
  border-radius: 0 999px 999px 0;
  background: #08bced;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(8, 188, 237, .25);
}

.pricing-card.is-highlighted .pricing-badge {
  background: #fff;
  color: #ff4638;
}

.pricing-image {
  position: relative;
  z-index: 1;
  width: 92px !important;
  height: 92px !important;
  max-width: 92px !important;
  max-height: 92px !important;
  object-fit: contain;
  margin: 28px auto 32px;
}

.pricing-card h3,
.pricing-price,
.pricing-period,
.pricing-features,
.pricing-button {
  position: relative;
  z-index: 1;
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  color: #050608;
}

.pricing-card.is-highlighted .pricing-price,
.pricing-card.is-highlighted .pricing-period,
.pricing-card.is-highlighted .pricing-features {
  color: #fff;
}

.pricing-period {
  margin: 22px 0 34px;
  color: #a8b8d2;
  font-weight: 800;
}

.pricing-features {
  width: 100%;
  list-style: none;
  margin: 0 0 28px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(25, 45, 75, .12);
  display: grid;
  gap: 18px;
  color: #6a6f78;
}

.pricing-card.is-highlighted .pricing-features {
  border-top-color: rgba(255, 255, 255, .26);
}

.pricing-button {
  margin-top: auto;
  min-width: 172px;
}

.pricing-card:not(.is-highlighted) .pricing-button {
  background: #08bced;
  color: #fff;
  box-shadow: 0 16px 28px rgba(8, 188, 237, .24);
}

.pricing-card:nth-child(3):not(.is-highlighted) .pricing-button,
.pricing-card:nth-child(3):not(.is-highlighted) .pricing-badge {
  background: #0b69e8;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-visual,
  .photo-frame {
    min-height: 360px;
  }

  .trust-badge {
    width: 72px;
    height: 72px;
  }

  .trust-badge img.trust-badge-image {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
  }

  .split .btn {
    margin-top: 22px;
  }

  .pricing-card {
    padding: 28px 22px 30px;
  }
}

/* Menu, breadcrumbs and FAQ */
.menu,
.menu li,
.nav .menu,
.nav .menu li {
  list-style: none !important;
  margin: 0;
  padding-left: 0;
}

.nav .menu li {
  display: contents;
}

.mobile-header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(15,157,88,.2);
}

.hero-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-breadcrumbs a {
  color: var(--green);
}

.faq-section {
  padding-top: 54px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #10251d;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item div {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item p {
  margin: 0;
}

@media (max-width: 1080px) {
  .mobile-header-cta {
    display: inline-flex;
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .mobile-header-cta {
    padding: 0 11px;
    font-size: 12px;
  }

  .faq-item summary {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-item div {
    padding: 0 18px 18px;
  }
}
