/* =========================================================
       VARIABLES
    ========================================================= */
    :root {
      --pro-bg:        #F5F2EC;
      --pro-bg2:       #FFFFFF;
      --pro-bg3:       #EDEAE3;
      --pro-text:      #0D0D0D;
      --pro-muted:     #6A6A6A;
      --pro-navy:      #0B1828;
      --pro-gold:      #B01020;
      --pro-gold-lt:   #D94040;
      --pro-border:    rgba(13,13,13,0.1);

      --font-pro-disp: 'Anton', Impact, sans-serif;
      --font-pro-body: 'DM Sans', sans-serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
    }

    /* =========================================================
       RESET
    ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--pro-bg);
      color: var(--pro-text);
      font-family: var(--font-pro-body);
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
      transition: background 0.5s ease, color 0.5s ease;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    /* =========================================================
       MODE SWITCH BUTTON
    ========================================================= */
    
    .eye-icon {
      width: 22px; height: 12px; position: relative;
      display: flex; align-items: center;
    }
    .eye-icon::before {
      content: '';
      position: absolute;
      width: 22px; height: 12px;
      border-radius: 50%;
      border: 1.5px solid currentColor;
    }

    /* =========================================================
       HEADER
    ========================================================= */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px;
      height: 80px;
      background: rgba(245,242,236,0.92);
      border-bottom: 1px solid var(--pro-border);
      backdrop-filter: blur(18px);
      transition: background 0.5s ease, border-color 0.5s ease;
    }
    .logo img { height: 32px; width: auto; display: block; }

    .main-nav { display: flex; align-items: center; gap: 36px; }
    .main-nav a {
      font-size: 0.75rem; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-pro-body);
      color: var(--pro-muted);
      position: relative; padding-bottom: 3px;
      transition: color 0.2s;
    }
    .main-nav a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--pro-gold);
      transition: width 0.25s ease;
    }
    .main-nav a:hover { color: var(--pro-text); }
    .main-nav a:hover::after { width: 100%; }

    .nav-cta {
      padding: 10px 24px;
      background: var(--pro-navy); color: #fff !important;
      font-size: 0.75rem !important; font-weight: 600 !important;
      letter-spacing: 0.1em;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--pro-gold) !important; color: var(--pro-navy) !important; }

    /* =========================================================
       HERO — PROFESSIONAL
    ========================================================= */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 140px 60px 120px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(135deg, var(--pro-bg) 0%, var(--pro-bg3) 60%, #E8E2D5 100%);
    }
    /* Subtle grain texture */
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
    }
    /* Decorative line */
    .hero-bg::after {
      content: '';
      position: absolute; top: 0; right: 30%;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--pro-gold) 40%, transparent);
      opacity: 0.3;
    }

    .hero-inner { position: relative; z-index: 1; max-width: 700px; display: flex; flex-direction: column; gap: 0; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--pro-gold);
      margin-bottom: 28px;
    }
    .hero-tag::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--pro-gold);
    }
    .hero h1 {
      font-family: var(--font-pro-disp);
      font-size: clamp(3.5rem, 7vw, 7.5rem);
      font-weight: 400; line-height: 0.95;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--pro-navy);
      margin-bottom: 36px;
    }
    .hero h1 em {
      font-style: normal; color: var(--pro-gold);
    }
    .hero-sub {
      font-size: 1.1rem; font-weight: 300; line-height: 1.8;
      color: var(--pro-muted); max-width: 560px;
      margin-bottom: 48px;
    }
    .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 36px;
      background: var(--pro-navy); color: #fff;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .btn-primary:hover { background: var(--pro-gold); color: var(--pro-navy); }
    .btn-primary svg { transition: transform 0.3s ease; }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 28px;
      border: 1px solid var(--pro-border);
      color: var(--pro-muted);
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .btn-ghost:hover { border-color: var(--pro-navy); color: var(--pro-navy); }

    /* Stats row — left side below subtext, above buttons */
    .hero-stats {
      display: flex; gap: 48px;
      margin-bottom: 40px;
      z-index: 1;
    }
    .stat-item { text-align: left; }
    .stat-num {
      font-family: var(--font-pro-disp);
      font-size: 2.6rem; font-weight: 400;
      color: var(--pro-navy); line-height: 1;
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .stat-label {
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--pro-muted); margin-top: 4px;
    }

    /* 3D HERO CANVAS */
    #hero-canvas {
      position: absolute;
      top: 0; right: 0;
      width: 55%; height: 100%;
      z-index: 0;
      opacity: 0.9;
      pointer-events: none;
    }
    @media (max-width: 1024px) { #hero-canvas { width: 100%; opacity: 0.25; } }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--pro-muted);
    }
    .scroll-hint::after {
      content: ''; display: block;
      width: 1px; height: 40px;
      background: var(--pro-muted);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    .scroll-hint::before { display: none; }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50%       { transform: scaleY(0.3); opacity: 0.3; }
    }

    /* =========================================================
       HERO — CREATIVE MODE
    ========================================================= */

    /* Glitch animation for creative hero */
    @keyframes glitch1 {
      0%, 90%, 100% { transform: none; opacity: 0; }
      91%           { transform: translateX(-4px); opacity: 0.6; }
      93%           { transform: translateX(4px);  opacity: 0.6; }
      95%           { transform: translateX(-2px); opacity: 0.6; }
      97%           { transform: none; opacity: 0; }
    }
    @keyframes glitch2 {
      0%, 92%, 100% { transform: none; opacity: 0; }
      93%           { transform: translateX(6px);  opacity: 0.5; }
      95%           { transform: translateX(-3px); opacity: 0.5; }
      98%           { transform: none; opacity: 0; }
    }

    /* =========================================================
       SECTION BASE
    ========================================================= */
    section { padding: 130px 80px; }
    .section-label {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--pro-gold);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; width: 28px; height: 1px; background: var(--pro-gold);
    }

    .section-title {
      font-family: var(--font-pro-disp);
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 400; line-height: 1.0;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--pro-navy); margin-bottom: 20px;
    }
    .section-sub {
      font-size: 1rem; color: var(--pro-muted);
      max-width: 560px; line-height: 1.8;
    }

    /* =========================================================
       LEISTUNGEN / SERVICES
    ========================================================= */
    #leistungen { background: var(--pro-bg2); }

    .services-header { max-width: 640px; margin-bottom: 90px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .service-card {
      padding: 52px 42px;
      background: var(--pro-bg2);
      border: 1px solid var(--pro-border);
      position: relative; overflow: hidden;
      transition: all 0.35s ease;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--pro-gold);
      transition: height 0.35s ease;
    }
    .service-card:hover::before { height: 100%; }

    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--pro-gold);
      transition: gap 0.2s;
    }
    .service-card:hover .service-link { gap: 10px; }

    .service-card:hover {
      background: var(--pro-bg3);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
    .service-num {
      font-family: var(--font-pro-disp);
      font-size: 3.5rem; font-weight: 700;
      color: var(--pro-border);
      line-height: 1; margin-bottom: 20px;
      transition: color 0.35s ease;
    }
    .service-card:hover .service-num { color: var(--pro-gold); opacity: 0.4; }
    .service-title {
      font-family: var(--font-pro-disp);
      font-size: 1.3rem; font-weight: 400;
      color: var(--pro-navy); margin-bottom: 14px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .service-desc { font-size: 0.9rem; color: var(--pro-muted); line-height: 1.8; }
    .service-tags {
      display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px;
    }
    .service-tag {
      font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 4px 10px; border: 1px solid var(--pro-border);
      color: var(--pro-muted);
    }

    /* Creative services */

    /* =========================================================
       WARUM AUVIM / USP
    ========================================================= */
    #warum {
      background: var(--pro-navy);
      color: #fff;
      position: relative; overflow: hidden;
    }

    #warum::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    }

    .warum-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }
    .warum-left .section-label { color: var(--pro-gold-lt); }
    .warum-left .section-label::before { background: var(--pro-gold-lt); }
    .warum-left .section-title { color: #fff; }
    .warum-left .section-sub { color: rgba(255,255,255,0.6); }

    .warum-points { display: flex; flex-direction: column; gap: 36px; margin-top: 52px; }
    .warum-point {
      display: flex; gap: 20px; align-items: flex-start;
    }
    .warum-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--pro-gold);
      font-family: var(--font-pro-disp); font-size: 1.1rem; font-weight: 600;
    }
    .warum-point-text h4 {
      font-family: var(--font-pro-disp); font-size: 1.1rem; font-weight: 400;
      color: #fff; margin-bottom: 6px; letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .warum-point-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

    .kudret-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 44px;
    }
    .kudret-avatar {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 20px;
      background: var(--pro-bg2);
    }
    .kudret-avatar img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .kudret-name {
      font-family: var(--font-pro-disp); font-size: 1.6rem; font-weight: 400;
      color: #fff; margin-bottom: 4px; letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .kudret-role { font-size: 0.78rem; color: var(--pro-gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
    .kudret-bio { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
    .kudret-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .kudret-tag {
      padding: 5px 12px;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--pro-gold); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    }

    /* =========================================================
       PORTFOLIO
    ========================================================= */
    #portfolio { background: var(--pro-bg3); }

    .portfolio-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 60px;
    }
    .portfolio-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .portfolio-item {
      position: relative; overflow: hidden;
      aspect-ratio: 16/10;
      background: var(--pro-navy);
      border: 1px solid var(--pro-border);
      cursor: pointer;
    }
    .portfolio-item--featured {
      grid-column: 1 / -1;
      aspect-ratio: 21/9;
    }
    .portfolio-item-inner {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 28px;
      position: relative;
    }
    .portfolio-screen {
      position: absolute; inset: 0;
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .portfolio-screen img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .portfolio-item:hover .portfolio-screen img { transform: scale(1.04); }
    .portfolio-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(11,24,40,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
    }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-domain { font-size: 0.8rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
    .portfolio-tags-list { display: flex; flex-wrap: wrap; gap: 5px; }
    .portfolio-ptag {
      font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 3px 8px; background: rgba(255,255,255,0.2); color: #fff;
    }

    /* Mock website in portfolio frame */
    .mock-nav {
      width: 100%; height: 24px;
      background: rgba(0,0,0,0.08);
      display: flex; align-items: center; padding: 0 10px; gap: 5px;
      margin-bottom: 8px;
    }
    .mock-dot { width: 6px; height: 6px; border-radius: 50%; }
    .mock-content { padding: 0 10px; }
    .mock-h { height: 8px; border-radius: 2px; margin-bottom: 5px; }
    .mock-p { height: 4px; border-radius: 2px; margin-bottom: 3px; opacity: 0.5; }
    .mock-btn { width: 60px; height: 16px; border-radius: 2px; margin-top: 8px; }

    /* =========================================================
       TESTIMONIALS
    ========================================================= */
    #testimonials { background: var(--pro-bg2); }

    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
    .testi-card { background: var(--pro-bg2); border: 1px solid var(--pro-border); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
    .testi-quote {
      font-family: Georgia, serif;
      font-size: 4rem; line-height: 0.8;
      color: var(--pro-gold); margin-bottom: 16px;
    }
    .testi-text {
      font-size: 0.95rem; line-height: 1.8;
      color: var(--pro-muted); margin-bottom: 24px;
      font-style: italic;
    }
    .testi-author { display: flex; flex-direction: column; gap: 3px; }
    .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--pro-navy); }
    .testi-company { font-size: 0.75rem; color: var(--pro-muted); letter-spacing: 0.08em; }

    /* Stars */
    .testi-stars { color: var(--pro-gold); font-size: 0.9rem; margin-bottom: 16px; }

    /* =========================================================
       KONTAKT
    ========================================================= */
    #kontakt { background: var(--pro-bg3); }

    .kontakt-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
    .kontakt-info h2 {
      font-family: var(--font-pro-disp);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600; line-height: 1.2;
      color: var(--pro-navy); margin-bottom: 20px;
    }
    .kontakt-info p {
      font-size: 0.95rem; color: var(--pro-muted); line-height: 1.8; margin-bottom: 36px;
    }
    .kontakt-detail {
      display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
    }
    .kontakt-detail-icon {
      width: 40px; height: 40px;
      border: 1px solid var(--pro-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .kontakt-detail span { font-size: 0.9rem; color: var(--pro-muted); }

    /* Form */
    
    
    
    .form-group label {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--pro-muted);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 14px 18px;
      background: var(--pro-bg2);
      border: 1px solid var(--pro-border);
      color: var(--pro-text);
      font-family: var(--font-pro-body); font-size: 0.9rem;
      outline: none;
      transition: border-color 0.25s ease;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--pro-gold); }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-group select option { background: var(--pro-bg2); }

    
    .form-submit:hover { background: var(--pro-gold); color: var(--pro-navy); }

    /* Success message */
    #form-success {
      display: none; padding: 16px 24px;
      background: rgba(39,201,63,0.1); border: 1px solid rgba(39,201,63,0.3);
      color: #27C93F; font-size: 0.88rem;
    }
    #form-success.visible { display: block; }

    /* =========================================================
       FOOTER
    ========================================================= */
    .site-footer {
      background: var(--pro-navy); color: rgba(255,255,255,0.55);
      padding: 60px 60px 36px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand .logo img { height: 32px; width: auto; display: block; }
    .footer-brand p { font-size: 0.82rem; line-height: 1.8; }
    .footer-col h5 {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a,
    .footer-col ul li {
      font-size: 0.82rem; color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: #fff; }

    .footer-bottom {
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: 0.75rem; }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-bottom-links a:hover { color: #fff; }

    /* =========================================================
       STICKY CTA BAR
    ========================================================= */
    #sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 7000;
      transform: translateY(100%); transition: transform 0.4s var(--ease-out);
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 60px;
      background: var(--pro-navy);
      border-top: 1px solid rgba(201,168,76,0.3);
    }
    #sticky-cta.visible { transform: translateY(0); }
    #sticky-cta p {
      color: rgba(255,255,255,0.8); font-size: 0.85rem;
    }
    #sticky-cta a {
      padding: 10px 28px;
      background: var(--pro-gold); color: var(--pro-navy);
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.3s;
    }
    #sticky-cta a:hover { opacity: 0.85; }
    #sticky-cta-close {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      color: rgba(255,255,255,0.5); font-size: 1.2rem; padding: 8px;
      cursor: pointer; background: none; border: none; font: inherit;
    }

    /* =========================================================
       ANIMATIONS — ENTRY
    ========================================================= */
    .fade-up {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-d1 { transition-delay: 0.1s; }
    .fade-up-d2 { transition-delay: 0.2s; }
    .fade-up-d3 { transition-delay: 0.3s; }
    .fade-up-d4 { transition-delay: 0.4s; }

    /* =========================================================
       RESPONSIVE
    ========================================================= */
    
    /* === Warum Points Layout === */
    .warum-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
    .warum-point { display: flex; align-items: flex-start; gap: 20px; }
    .warum-point-text h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
    .warum-point-text p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

    /* === Testi Cards === */
    .testi-stars { color: var(--pro-gold); font-size: 1rem; letter-spacing: 2px; }
    .testi-quote { font-size: 2.8rem; line-height: 1; color: var(--pro-gold); opacity: 0.35; font-family: Georgia,serif; height: 36px; }
    .testi-text { font-size: 0.92rem; line-height: 1.75; color: var(--pro-muted); flex: 1; }
    .testi-author { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--pro-border); margin-top: auto; }
    .testi-name { font-size: 0.82rem; font-weight: 600; color: var(--pro-text); }
    .testi-company { font-size: 0.72rem; color: var(--pro-muted); letter-spacing: 0.04em; }

    /* === Kontakt Form === */
    
    
    .form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pro-muted); }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 14px 18px; box-sizing: border-box;
      background: var(--pro-bg2); border: 1px solid var(--pro-border);
      color: var(--pro-text); font-size: 0.9rem; font-family: inherit;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--pro-gold); }
    .form-group textarea { min-height: 130px; resize: vertical; }
    .form-group select { appearance: none; cursor: pointer; }
    
    .form-submit:hover { background: var(--pro-gold); color: #fff; }

    
    /* Contact form – clean grid layout */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pro-muted); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 13px 16px; box-sizing: border-box;
      background: var(--pro-bg2); border: 1px solid var(--pro-border);
      color: var(--pro-text); font-size: 0.9rem; font-family: inherit;
      transition: border-color .25s; appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { outline: none; border-color: var(--pro-gold); }
    .form-group textarea { min-height: 130px; resize: vertical; }
    .form-submit {
      align-self: flex-start; padding: 15px 40px;
      background: var(--pro-navy); color: #fff;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      border: none; cursor: pointer; transition: background .3s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .form-submit:hover { background: var(--pro-gold); }
    #form-success { font-size: 0.9rem; color: #2ecc71; margin-top: 8px; }
    @media(max-width:768px) { .form-row { grid-template-columns: 1fr; } }

    @media (max-width: 1024px) {
      section { padding: 80px 32px; }
      .site-header { padding: 0 32px; }
      .hero { padding: 100px 32px 80px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .warum-inner { grid-template-columns: 1fr; gap: 48px; }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
      .kontakt-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .hero-stats { position: static; margin-top: 60px; justify-content: flex-start; }
      .scroll-hint { display: none; }
    }
    @media (max-width: 768px) {
      /* Global overflow fix */
      body { overflow-x: hidden; }
      * { max-width: 100%; }

      /* Section padding – keep text away from edges */
      section { padding: 60px 20px !important; }
      .site-header { padding: 0 20px; }
      .hero { padding: 100px 20px 60px !important; }

      /* Service subpage padding fix */
      .s-hero, .eb-section, .s-sec, .other-sec, .s-cta { padding-left: 20px !important; padding-right: 20px !important; }
      .sub-header { padding: 0 20px !important; }
      .sub-foot { padding: 32px 20px !important; }

      /* Typography scaling */
      h1 { font-size: clamp(2.4rem, 10vw, 4rem) !important; }
      h2 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }

      /* Warum section */
      .warum-inner { grid-template-columns: 1fr; }
      .kudret-card { padding: 28px 20px; }

      /* Kontakt */
      .kontakt-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
      .contact-form input, .contact-form select, .contact-form textarea { 
        width: 100%; box-sizing: border-box; 
      }

      /* Footer */
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }

      .main-nav { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
      .footer-inner { grid-template-columns: 1fr; }
      
      .hero-stats { flex-direction: column; gap: 24px; }
      .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      #sticky-cta { padding: 14px 20px; }
      #sticky-cta p { display: none; }
    }}

     }

    
