    :root {
      --primary: #005fa1;
      --primary-dark: #074c7e;
      --accent: #dc0050;
      --green: #12dc00;
      --gold: #e6cd6b;
      --dark: #111827;
      --dark-soft: #1f2937;
      --text: #4b5563;
      --muted: #6b7280;
      --light: #f5f8fb;
      --white: #ffffff;
      --border: rgba(17, 24, 39, 0.08);
      --shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
      --radius: 24px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1{
      margin:8px 0px;
      line-height: 3rem;
    }

    h2{
      margin:8px 0px;
      line-height: 3rem;
    }

    h3{
      margin:8px 0px;
      line-height: 3rem;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--max-width));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(0, 95, 161, 0.08);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(0, 220, 48, 0.1);
    }

    .eyebrow2 {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(0, 95, 161, 0.08);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow2::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(220, 0, 0, 0.1);
    }

    .section {
      padding: 110px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 54px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.08;
      letter-spacing: -0.045em;
      margin: 18px 0 18px;
    }

    .section-head p {
      font-size: 1.08rem;
      color: var(--text);
      max-width: 680px;
    }

    .section-head.center p {
      margin-inline: auto;
    }

    .button {
      min-height: 52px;
      padding: 0 22px;
      border-radius: 14px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .button.primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--primary), #0077c8);
      box-shadow: 0 14px 30px rgba(0, 95, 161, 0.22);
    }

    .button.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(0, 95, 161, 0.28);
    }

    .button.secondary {
      background: var(--white);
      border-color: rgba(17, 24, 39, 0.10);
      color: var(--dark);
    }

    .button.secondary:hover {
      border-color: rgba(0, 95, 161, 0.35);
      color: var(--primary);
    }

    .button .arrow {
      font-size: 1.15rem;
      line-height: 1;
    }

    /* Header */
    .site-header {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.84);
      border-bottom: 1px solid rgba(17, 24, 39, 0.06);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.08rem;
      white-space: nowrap;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      box-shadow: 0 10px 22px rgba(0, 95, 161, 0.20);
      position: relative;
      overflow: hidden;
    }



    .brand span {
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 0.94rem;
      font-weight: 700;
      color: var(--dark-soft);
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav .button {
      min-height: 44px;
      padding-inline: 18px;
      font-size: 0.92rem;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 150px 0 90px;
      background:
        radial-gradient(circle at 82% 18%, rgba(0, 95, 161, 0.13), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(220, 0, 80, 0.07), transparent 27%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.33;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(0,95,161,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,95,161,0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 70px;
    }

    .hero h1 {
      font-size: clamp(3rem, 6.2vw, 5.8rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      margin: 22px 0 26px;
      max-width: 850px;
    }

    .hero h1 .accent {
      color: var(--primary);
    }

    .hero-lead {
      font-size: clamp(1.08rem, 1.8vw, 1.3rem);
      max-width: 720px;
      color: var(--text);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-facts {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      margin-top: 38px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 650;
    }

    .hero-facts span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-facts span::before {
      content: "✓";
      color: var(--primary);
      font-weight: 900;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
    }

    .browser {
      position: absolute;
      width: min(100%, 555px);
      right: 0;
      top: 20px;
      border-radius: 28px;
      background: var(--white);
      border: 1px solid rgba(17,24,39,0.08);
      box-shadow: 0 36px 90px rgba(17,24,39,0.16);
      overflow: hidden;
      transform: rotate(2deg);
    }

    .browser-bar {
      height: 54px;
      padding: 0 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border);
      background: #fbfcfd;
    }

    .browser-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d8dee6;
    }

    .browser-address {
      margin-left: 10px;
      height: 28px;
      flex: 1;
      border-radius: 8px;
      background: #f0f3f6;
    }

    .mock-hero {
      padding: 42px 38px 28px;
      min-height: 290px;
      color: white;
      background:
        radial-gradient(circle at 80% 15%, rgba(230,205,107,0.28), transparent 25%),
        linear-gradient(135deg, #081f32, #005f9e 65%, #0083c6);
    }

    .mock-hero small {
      display: inline-block;
      font-weight: 800;
      margin-bottom: 14px;
      color: rgba(255,255,255,0.74);
    }

    .mock-hero h3 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      max-width: 400px;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .mock-line {
      margin-top: 24px;
      width: 70%;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.24);
    }

    .mock-button {
      margin-top: 25px;
      width: 126px;
      height: 38px;
      background: white;
      border-radius: 10px;
    }

    .mock-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      padding: 20px;
      background: #ffffff;
    }

    .mock-card {
      height: 110px;
      border-radius: 16px;
      background: linear-gradient(145deg, #f1f5f8, #fafcfd);
      border: 1px solid var(--border);
      position: relative;
    }

    .mock-card::before {
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: rgba(0,95,161,0.12);
      position: absolute;
      top: 16px;
      left: 16px;
    }

    .mock-card::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 18px;
      bottom: 22px;
      height: 7px;
      border-radius: 999px;
      background: #d9e0e6;
      box-shadow: 0 -15px 0 #e9edf1;
    }

    .floating-card {
      position: absolute;
      left: -18px;
      bottom: 26px;
      width: 245px;
      padding: 20px;
      border-radius: 20px;
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(17,24,39,0.08);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .floating-card .icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(0,95,161,0.10);
      color: var(--primary);
      font-size: 1.3rem;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .floating-card strong {
      display: block;
      font-size: 1.06rem;
      margin-bottom: 5px;
    }

    .floating-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* Trust */
    .trust {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--white);
      padding: 26px 0;
    }

    .trust-row {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      align-items: center;
      gap: 18px;
    }

    .trust-intro {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 700;
    }

    .trust-item {
      text-align: center;
      font-weight: 850;
      color: #8a96a4;
      letter-spacing: -0.02em;
    }

    /* Services */
    .services {
      background: var(--light);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      min-height: 315px;
      padding: 30px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(17,24,39,0.06);
      transition: 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
      border-color: rgba(0,95,161,0.15);
    }

    .service-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      right: -62px;
      top: -58px;
      background: rgba(0,95,161,0.05);
    }

    .service-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(0,95,161,0.10);
      color: var(--primary);
      font-size: 1.4rem;
      font-weight: 900;
      margin-bottom: 24px;
    }

    .service-card h3 {
      font-size: 1.34rem;
      letter-spacing: -0.025em;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--text);
      font-size: 0.98rem;
    }

    .service-card a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 800;
      margin-top: 20px;
      font-size: 0.94rem;
    }

    /* Why */
    .why-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .why-visual {
      position: relative;
      min-height: 540px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 28% 20%, rgba(230,205,107,0.20), transparent 24%),
        linear-gradient(145deg, #0a2235, #0d456a 58%, #005fa1);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .why-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    .nf-map {
      position: absolute;
      inset: 52px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 28px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(4px);
    }

    .nf-map::before {
      content: "";
      position: absolute;
      top: 28px;
      left: 28px;
      color: white;
      font-size: clamp(1.7rem, 4vw, 3.6rem);
      font-weight: 950;
      letter-spacing: -0.06em;
      opacity: 0.96;
    }

    .nf-map::after {
      content: "Webdesign • Hosting • Betreuung";
      position: absolute;
      bottom: 28px;
      left: 28px;
      color: rgba(255,255,255,0.68);
      font-weight: 750;
      font-size: 0.92rem;
    }

    .map-pin {
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 10px rgba(220,0,80,0.13);
    }

    .map-pin.one { left: 22%; top: 52%; }
    .map-pin.two { right: 25%; top: 36%; }
    .map-pin.three { right: 38%; bottom: 25%; }

    .why-list {
      display: grid;
      gap: 18px;
      margin-top: 34px;
    }

    .why-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .why-item:last-child {
      border-bottom: 0;
    }

    .why-num {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: rgba(0,95,161,0.08);
      color: var(--primary);
      font-weight: 900;
    }

    .why-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.04rem;
    }

    .why-item p {
      color: var(--text);
      font-size: 0.95rem;
    }

    /* Process */
    .process {
      background: #0d1722;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: "";
      width: 520px;
      height: 520px;
      border-radius: 50%;
      position: absolute;
      top: -220px;
      right: -140px;
      background: radial-gradient(circle, rgba(0,95,161,0.35), transparent 68%);
    }

    .process .eyebrow {
      color: #8bd4ff;
      background: rgba(255,255,255,0.07);
    }

    .process .section-head p {
      color: rgba(255,255,255,0.68);
    }

    .steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step {
      padding: 28px;
      min-height: 260px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.045);
    }

    .step-number {
      color: var(--gold);
      font-size: 0.86rem;
      font-weight: 900;
      letter-spacing: 0.1em;
    }

    .step h3 {
      margin: 48px 0 13px;
      font-size: 1.25rem;
    }

    .step p {
      color: rgba(255,255,255,0.64);
      font-size: 0.94rem;
    }

    /* Projects */
    .project-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 22px;
    }

    .project {
      position: relative;
      min-height: 440px;
      border-radius: 28px;
      overflow: hidden;
      background: #eef3f7;
      border: 1px solid var(--border);
    }

    .project.big {
      min-height: 585px;
    }

    .project-screen {
      position: absolute;
      inset: 28px 28px 0;
      border-radius: 20px 20px 0 0;
      background: white;
      box-shadow: 0 22px 45px rgba(17,24,39,0.15);
      overflow: hidden;
    }

    .project-screen.dark {
      background: #15202b;
    }

    .project-screen .screen-top {
      height: 44px;
      border-bottom: 1px solid rgba(17,24,39,0.06);
      background: rgba(255,255,255,0.85);
    }

    .project-screen.dark .screen-top {
      border-color: rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.05);
    }

    .screen-content {
      padding: 30px;
    }

    .screen-kicker {
      width: 96px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      margin-bottom: 17px;
    }

    .screen-title {
      width: 70%;
      height: 18px;
      border-radius: 999px;
      background: #183c58;
      box-shadow: 0 29px 0 #dce5eb;
    }

    .dark .screen-title {
      background: #ffffff;
      box-shadow: 0 29px 0 rgba(255,255,255,0.18);
    }

    .screen-blocks {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 70px;
    }

    .screen-block {
      min-height: 150px;
      border-radius: 16px;
      background: linear-gradient(145deg, #eef4f7, #f9fbfc);
    }

    .dark .screen-block {
      background: rgba(255,255,255,0.07);
    }

    .project-label {
      position: absolute;
      left: 32px;
      bottom: 30px;
      color: var(--dark);
      z-index: 4;
    }

    .project::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 36%;
      background: linear-gradient(to top, rgba(10,18,26,0.72), transparent);
      pointer-events: none;
    }

    .project-label strong {
      display: block;
      font-size: 1.22rem;
      margin-bottom: 3px;
    }

    .project-label span {
      color: rgba(255,255,255,0.72);
      font-size: 0.9rem;
    }

    .project-stack {
      display: grid;
      gap: 22px;
    }

    .project-stack .project {
      min-height: 281px;
    }

    /* SEO / Local */
    .local {
      background: var(--light);
    }

    .local-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .local-copy p {
      color: var(--text);
      margin-top: 18px;
    }

    .location-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .location-cloud span {
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--border);
      font-weight: 750;
      color: var(--dark-soft);
      font-size: 0.9rem;
    }

    .seo-card {
      padding: 32px;
      border-radius: 28px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 18px 48px rgba(17,24,39,0.07);
    }

    .searchbar {
      height: 54px;
      border-radius: 13px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 18px;
      gap: 12px;
      color: var(--text);
      font-size: 0.94rem;
    }

    .searchbar::before {
      content: "⌕";
      color: var(--primary);
      font-size: 1.5rem;
      line-height: 1;
    }

    .search-result {
      margin-top: 26px;
      padding-top: 26px;
      border-top: 1px solid var(--border);
    }

    .result-domain {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .search-result h3 {
      color: #174ea6;
      font-weight: 650;
      font-size: 1.22rem;
      margin: 7px 0 5px;
    }

    .search-result p {
      color: var(--text);
      font-size: 0.92rem;
    }

    /* CTA */
    .cta-wrap {
      padding: 0 0 110px;
    }

    .cta {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: 72px;
      background:
        radial-gradient(circle at 85% 15%, rgba(230,205,107,0.24), transparent 25%),
        linear-gradient(135deg, #005fa1, #003a64);
      color: white;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 390px;
      height: 390px;
      right: -130px;
      bottom: -190px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.13);
      box-shadow:
        0 0 0 60px rgba(255,255,255,0.025),
        0 0 0 120px rgba(255,255,255,0.018);
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .cta h2 {
      font-size: clamp(2.3rem, 5vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
      margin-bottom: 18px;
    }

    .cta p {
      color: rgba(255,255,255,0.76);
      font-size: 1.08rem;
      max-width: 660px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .cta .button.primary {
      background: white;
      color: var(--primary);
      box-shadow: none;
    }

    .cta .button.secondary {
      background: transparent;
      border-color: rgba(255,255,255,0.25);
      color: white;
    }

    /* Footer */
    footer {
      background: #0c131b;
      color: white;
      padding: 58px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 50px;
      padding-bottom: 42px;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.55);
      max-width: 430px;
      margin-top: 18px;
      font-size: 0.92rem;
    }

    .footer-col strong {
      display: block;
      margin-bottom: 14px;
    }

    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.58);
      margin: 8px 0;
      font-size: 0.92rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.42);
      font-size: 0.84rem;
    }

#content{
	padding:125px 20px;
	line-height: 1.3rem;
}

.bg_dark{
	background-color:#0d1722;
}

.col_white{
	color:#ffffff;
}

.center{
	text-align: center;
}

.spacearroundme{
  margin:20px;
}

.referboxen{
  width:1600px;
  max-width: 90%;
  margin:0 auto;
  background-color: var(--light);
  text-align: center;
  border-radius: 7px;
}

.referlogo{
  width:250px;
  max-width: 100%;
  margin:15px;
}

#flexstyle{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flexarea{
	width:1500px;
	max-width:100%;
	margin:0 auto;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex: 600px;
}

.experience{font-size: 45px;}

#testimonial_area{
	width:800px;
	margin:5px;
	max-width: 90%;
	height: auto;
	background-color: #f1f1f1;
	color:#2b2a2a;
	text-align: center;
	border-radius: 5px;
}

#testimonial_text{
	color:#2b2a2a;
	font-size: 20px;
	padding:15px;
	line-height: 1.3rem;
  font-size:0.94rem;
}

#testimonial_img{
	padding:15px;
}


    /* Responsive */
    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .why-grid,
      .local-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 130px;
      }

      .hero-visual {
        min-height: 500px;
        margin-top: 15px;
      }

      .browser {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(1deg);
      }

      .floating-card {
        left: 4%;
      }

      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .project-grid {
        grid-template-columns: 1fr;
      }

      .project-stack {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .trust-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-intro {
        grid-column: 1 / -1;
        text-align: center;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--max-width));
      }

      .section {
        padding: 78px 0;
      }

      .site-header .button {
        display: none;
      }

      .nav {
        min-height: 68px;
      }

      .hero {
        min-height: auto;
        padding: 120px 0 70px;
      }

      .hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
      }

      .hero-actions .button {
        width: 100%;
      }

      .hero-facts {
        gap: 10px 20px;
      }

      .hero-visual {
        min-height: 390px;
      }

      .browser {
        width: 94%;
        border-radius: 20px;
      }

      .mock-hero {
        padding: 30px 24px 24px;
        min-height: 235px;
      }

      .mock-cards {
        gap: 8px;
        padding: 12px;
      }

      .mock-card {
        height: 80px;
        border-radius: 12px;
      }

      .floating-card {
        width: 210px;
        left: 0;
        bottom: 4px;
        padding: 16px;
      }

      .service-grid,
      .steps,
      .project-stack {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: 0;
      }

      .why-visual {
        min-height: 420px;
      }

      .nf-map {
        inset: 28px;
      }

      .project.big {
        min-height: 440px;
      }

      .project-stack .project {
        min-height: 360px;
      }

      .screen-blocks {
        grid-template-columns: 1fr 1fr;
      }

      .screen-block:nth-child(3) {
        display: none;
      }

      .cta {
        padding: 46px 26px;
        border-radius: 26px;
      }

      .cta-actions .button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-brand {
        grid-column: auto;
      }

      .trust-row {
        grid-template-columns: 1fr 1fr;
      }
    }