:root {
      --pink: #FF59E0;
      --pink-warm: #FF58B6;
      --pink-dark: #CC2DB0;
      --pink-light: #FFD6F8;
      --black: #0A0A0A;
      --ink: #1A1A1A;
      --gray-900: #1A1A1A;
      --gray-700: #444;
      --gray-500: #777;
      --gray-300: #BBB;
      --gray-100: #EFEFEF;
      --gray-50: #F8F8F8;
      --white: #FFFFFF;
      --font-display: 'Outfit', system-ui, sans-serif;
      --font-body: 'Inter', system-ui, sans-serif;
      --max: 1200px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; transition: color 150ms ease; }
    a:hover { color: var(--pink); }
    button { font-family: inherit; cursor: pointer; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    .eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 15px 30px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 6px 24px rgba(255, 89, 224, 0.32);
      transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
    }
    .btn-primary:hover {
      background: var(--pink-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(255, 89, 224, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--ink);
      border: 1.5px solid #DDD;
      border-radius: 999px;
      padding: 14px 28px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 15px;
    }
    .btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

    /* ----------------- HEADER ----------------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #F0F0F0;
    }
    .header-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo img { height: 52px; width: auto; }
    .nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav a {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-700);
    }
    .nav-icon {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-700);
    }
    .nav-icon:hover { color: var(--pink); }
    .header-cta {
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 11px 22px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 4px 18px rgba(255, 89, 224, 0.28);
      transition: background 150ms ease;
    }
    .header-cta:hover { background: var(--pink-dark); color: #fff; }

    /* ----------------- HERO ----------------- */
    .hero {
      padding: 80px 0 96px;
      background: #fff;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 72px;
      align-items: center;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(48px, 6vw, 78px);
      line-height: 0.98;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 28px;
    }
    .hero h1 .accent { color: var(--pink); }
    .hero-lead {
      font-family: var(--font-body);
      font-size: 19px;
      line-height: 1.55;
      color: var(--gray-700);
      margin-bottom: 22px;
      font-weight: 500;
    }
    .hero-body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.75;
      color: var(--gray-500);
      margin-bottom: 36px;
      max-width: 540px;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .hero-social {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .hero-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gray-50);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-700);
      transition: all 150ms ease;
    }
    .hero-social a:hover {
      background: var(--pink);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ----------------- HERO VISUAL (animated collage) ----------------- */
    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .hero-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1.05;
      max-width: 560px;
      margin-left: auto;
    }
    .hero-visual .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.55;
      z-index: 0;
      animation: blobFloat 9s ease-in-out infinite;
    }
    .hero-visual .blob.b1 {
      width: 280px; height: 280px;
      top: -40px; right: -30px;
      background: radial-gradient(circle, rgba(255,89,224,0.55), rgba(255,89,224,0) 70%);
    }
    .hero-visual .blob.b2 {
      width: 220px; height: 220px;
      bottom: 20px; left: -40px;
      background: radial-gradient(circle, rgba(178,255,90,0.45), rgba(178,255,90,0) 70%);
      animation-delay: -3s;
    }
    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(20px, -20px) scale(1.08); }
    }

    .hero-visual .frame {
      position: absolute;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
      z-index: 2;
      background: #fff;
    }
    .hero-visual .frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-visual .frame.f-portrait {
      top: 0;
      right: 4%;
      width: 70%;
      aspect-ratio: 4/5;
      transform: rotate(-2deg);
      animation: tiltB 7s ease-in-out infinite;
      border: 4px solid #fff;
      z-index: 2;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    }
    .hero-visual .frame.f-news {
      bottom: 4%;
      left: 0;
      width: 64%;
      aspect-ratio: 16/10;
      transform: rotate(3deg);
      animation: tiltA 7s ease-in-out infinite;
      box-shadow: 0 28px 60px rgba(255, 89, 224, 0.28);
      border: 1px solid rgba(255, 89, 224, 0.12);
      z-index: 4;
    }
    @keyframes tiltA {
      0%, 100% { transform: translateY(0) rotate(3deg); }
      50%      { transform: translateY(-8px) rotate(2deg); }
    }
    @keyframes tiltB {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50%      { transform: translateY(-10px) rotate(-3deg); }
    }

    .hero-visual .badge {
      position: absolute;
      z-index: 3;
      background: #fff;
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: bobble 4.5s ease-in-out infinite;
    }
    .hero-visual .badge.b-followers {
      top: 18%;
      left: -12px;
    }
    .hero-visual .badge.b-ai {
      bottom: 18%;
      right: -16px;
      animation-delay: -2.2s;
    }
    @keyframes bobble {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .badge .b-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--pink-light);
      color: var(--pink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .badge.b-ai .b-icon {
      background: #E9FBD4;
      color: #6CA82A;
    }
    .badge .b-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .badge .b-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 18px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .badge .b-label {
      font-family: var(--font-body);
      font-size: 11.5px;
      color: var(--gray-500);
      margin-top: 2px;
    }

    .hero-visual .dots {
      position: absolute;
      width: 80px; height: 80px;
      top: -10px; left: 36%;
      z-index: 1;
      opacity: 0.5;
      background-image: radial-gradient(circle, var(--pink) 1.5px, transparent 2px);
      background-size: 14px 14px;
      animation: dotsDrift 8s ease-in-out infinite;
    }
    @keyframes dotsDrift {
      0%, 100% { transform: translate(0,0); }
      50% { transform: translate(8px, 6px); }
    }

    .hero-name-card {
      position: absolute;
      bottom: 3%;
      right: -16px;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      border: 1px solid var(--gray-100);
      border-radius: 999px;
      padding: 10px 22px 10px 12px;
      box-shadow: 0 14px 36px rgba(255, 89, 224, 0.16);
      opacity: 0;
      animation: nameCardIn 700ms ease 400ms forwards, nameCardFloat 5s ease-in-out 1100ms infinite;
    }
    .hero-name-card .nc-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid var(--pink-light);
    }
    .hero-name-card .nc-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-name-card .nc-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .hero-name-card .nc-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .hero-name-card .nc-role {
      font-family: var(--font-body);
      font-size: 12.5px;
      color: var(--pink);
      font-weight: 600;
      margin-top: 2px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero-name-card .nc-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #2ECC71;
      box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
      animation: ncPulse 2.4s infinite;
    }
    @keyframes ncPulse {
      0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
      70% { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
      100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
    }
    @keyframes nameCardIn {
      0% { opacity: 0; transform: translateY(16px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes nameCardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* ----------------- TRUST STRIP ----------------- */
    .trust {
      padding: 80px 0;
      background: var(--gray-50);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .trust-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px;
      border: 1px solid var(--gray-100);
      transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .trust-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    }
    .trust-card.featured {
      background: linear-gradient(180deg, #fff 0%, #fff 100%);
      border: 1px solid var(--pink-light);
    }
    .trust-tag {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 18px;
    }
    .trust-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 64px;
      line-height: 1;
      color: var(--ink);
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .trust-card.featured .trust-num { color: var(--pink); }
    .trust-text {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.65;
      color: var(--gray-700);
    }
    .trust-text strong { color: var(--ink); font-weight: 600; }
    .trust-quote {
      font-style: italic;
      color: var(--gray-500);
      border-left: 3px solid var(--pink);
      padding-left: 14px;
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.6;
    }
    .trust-attr {
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 10px;
      font-weight: 500;
    }

    /* ----------------- SERVICES (Angebot) ----------------- */
    .services {
      padding: 120px 0;
      background: #fff;
    }
    .section-head {
      max-width: 720px;
      margin: 0 auto 64px;
      text-align: center;
    }
    .section-head h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(38px, 4.4vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .section-head .accent { color: var(--pink); }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .svc-card {
      background: #fff;
      border: 1px solid var(--gray-100);
      border-radius: 24px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
      position: relative;
      overflow: hidden;
    }
    .svc-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 250ms ease;
    }
    .svc-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.07);
      border-color: var(--pink-light);
    }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.04em;
      color: var(--pink);
    }
    .svc-kicker {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--gray-500);
      font-style: italic;
    }
    .svc-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 28px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .svc-card p {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      color: var(--gray-700);
    }
    .svc-card p + p { color: var(--gray-500); font-size: 14.5px; }
    .svc-card .svc-target {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-500);
      padding-top: 4px;
    }
    .svc-card .svc-target strong { color: var(--ink); font-weight: 600; }
    .svc-card .price-tag {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      background: linear-gradient(135deg, var(--pink) 0%, #FF7DC6 100%);
      color: #fff;
      padding: 8px 14px;
      border-radius: 999px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -0.01em;
      width: fit-content;
      box-shadow: 0 6px 18px rgba(255,89,224,0.28);
    }
    .svc-card .price-tag small {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11.5px;
      opacity: 0.92;
    }
    .svc-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      padding: 12px 20px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      width: fit-content;
      border: 1.5px solid var(--ink);
      transition: all 180ms ease;
    }
    .svc-cta:hover {
      background: var(--pink);
      border-color: var(--pink);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255,89,224,0.32);
    }
    .svc-social {
      display: flex;
      gap: 12px;
      margin-top: auto;
      padding-top: 12px;
    }
    .svc-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--gray-50);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-700);
    }
    .svc-social a:hover { background: var(--pink); color: #fff; }

    /* ----------------- TESTIMONIALS ----------------- */
    .testimonials {
      padding: 120px 0;
      background: var(--gray-50);
    }
    .tm-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 64px;
    }
    .tm-head h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(36px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 18px;
    }
    .tm-head p {
      font-family: var(--font-body);
      font-size: 17px;
      color: var(--gray-500);
      line-height: 1.6;
    }
    .tm-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .tm-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 32px;
      border: 1px solid var(--gray-100);
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .tm-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
    }
    .tm-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 3px solid var(--pink-light);
    }
    .tm-quote {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      line-height: 1.45;
      color: var(--ink);
      letter-spacing: -0.005em;
    }
    .tm-author {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-top: 8px;
      border-top: 1px solid var(--gray-100);
    }
    .tm-author .name {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      color: var(--ink);
    }
    .tm-author .company {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-500);
    }

    /* ----------------- ABOUT ----------------- */
    .about {
      padding: 120px 0;
      background: #fff;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 80px;
      align-items: center;
    }
    .about h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(42px, 4.8vw, 60px);
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 28px;
    }
    .about h2 .accent { color: var(--pink); }
    .about p {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      color: var(--gray-700);
      margin-bottom: 18px;
    }
    .about p + p { color: var(--gray-500); font-size: 16px; }
    .about-list {
      list-style: none;
      margin: 32px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 24px;
    }
    .about-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
    }
    .about-list .check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--pink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .about-visual {
      position: relative;
    }
    .about-visual .portrait {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(255, 89, 224, 0.18);
    }
    .about-visual .name-tag {
      position: absolute;
      bottom: 28px;
      left: 28px;
      right: 28px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 18px 22px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }
    .name-tag .tag-label {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 4px;
    }
    .name-tag .tag-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 20px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .name-tag .tag-sub {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 2px;
    }

    /* ----------------- CTA SECTION ----------------- */
    .cta-section {
      padding: 120px 0;
      background: var(--ink);
      color: #fff;
    }
    .cta-inner {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 72px;
      align-items: center;
    }
    .cta-section h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(38px, 4.4vw, 54px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: #fff;
      margin-bottom: 28px;
    }
    .cta-section h2 .accent { color: var(--pink); }
    .cta-section .lead {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      color: #BBB;
      margin-bottom: 32px;
      max-width: 540px;
    }
    .cta-list {
      list-style: none;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .cta-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-body);
      font-size: 15.5px;
      color: #DDD;
    }
    .cta-list .check {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 89, 224, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
      flex-shrink: 0;
    }
    .cta-visual {
      position: relative;
    }
    .cta-visual img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(255, 89, 224, 0.25);
    }
    .cta-tagline {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: var(--pink);
      color: #fff;
      padding: 22px 28px;
      border-radius: 18px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: -0.01em;
      box-shadow: 0 14px 32px rgba(255, 89, 224, 0.4);
      max-width: 220px;
    }

    /* ----------------- FOOTER ----------------- */
    .footer {
      background: #0A0A0A;
      color: #888;
      padding: 80px 0 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid #1f1f1f;
    }
    .footer-brand img {
      height: 60px;
      width: auto;
      margin-bottom: 20px;
    }
    .footer-brand h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 22px;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .footer-brand h3 .pink { color: var(--pink); }
    .footer-brand p {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.7;
      color: #888;
      max-width: 320px;
      margin-bottom: 20px;
    }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #1a1a1a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #888;
      transition: all 150ms ease;
    }
    .footer-social a:hover {
      background: var(--pink);
      color: #fff;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #666;
      margin-bottom: 18px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col a, .footer-col .plain {
      font-family: var(--font-body);
      font-size: 14.5px;
      color: #BBB;
      transition: color 150ms ease;
    }
    .footer-col a:hover { color: var(--pink); }
    .contact-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .contact-row .label {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      color: #555;
    }
    .footer-bottom {
      padding: 28px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom .copy {
      font-family: var(--font-body);
      font-size: 13px;
      color: #555;
    }
    .footer-bottom .legal {
      display: flex;
      gap: 24px;
    }
    .footer-bottom .legal a {
      font-family: var(--font-body);
      font-size: 13px;
      color: #888;
    }
    .footer-disclaimer {
      padding: 16px 0 28px;
      font-family: var(--font-body);
      font-size: 11.5px;
      line-height: 1.6;
      color: #444;
      border-top: 1px solid #1f1f1f;
      max-width: 100%;
    }

    /* ----------------- FLOATING CONTACT BUTTON ----------------- */
    .floating-contact {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      background: var(--pink);
      color: #fff;
      border-radius: 999px;
      padding: 14px 24px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14.5px;
      box-shadow: 0 12px 36px rgba(255,89,224,0.45);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .floating-contact:hover {
      background: var(--pink-dark);
      color: #fff;
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 18px 44px rgba(255,89,224,0.55);
    }
    .floating-contact .pulse {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
      animation: pulseDot 2s infinite;
    }
    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
      70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    @media (max-width: 600px) {
      .floating-contact { padding: 12px 18px; font-size: 13px; bottom: 16px; right: 16px; }
    }

    @media (max-width: 980px) {
      .container { padding: 0 24px; }
      .header-inner { height: 68px; }
      .logo img { height: 42px; }
      .nav { display: none; }
      .header-cta { padding: 9px 16px; font-size: 13px; }
      .hero-inner,
      .about-inner,
      .cta-inner { grid-template-columns: 1fr; gap: 48px; }
      .trust-grid,
      .svc-grid,
      .tm-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .about-list { grid-template-columns: 1fr 1fr; }
      .hero { padding: 48px 0 56px; }
      .trust, .services, .testimonials, .about, .cta-section { padding: 72px 0; }
      .section-head { margin-bottom: 44px; }
      .cta-tagline { right: 0; bottom: -20px; font-size: 18px; padding: 16px 20px; max-width: 180px; }
      .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 1 / 1.05; }
      .about-visual .portrait { aspect-ratio: 4 / 4.5; }
      .name-tag { left: 16px; right: 16px; bottom: 16px; padding: 14px 18px; }
      .about-list li { font-size: 14px; }
      .footer-disclaimer { font-size: 11px; }
    }

    @media (max-width: 640px) {
      :root { --max: 100%; }
      body { line-height: 1.55; }
      .container { padding: 0 18px; }
      .header-inner { height: 64px; gap: 12px; }
      .logo img { height: 36px; }
      .header-cta { padding: 8px 14px; font-size: 12.5px; }

      .hero { padding: 32px 0 48px; }
      .hero h1 { font-size: 38px; line-height: 1.02; margin-bottom: 18px; }
      .hero-lead { font-size: 16px; margin-bottom: 16px; }
      .hero-body { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; }
      .hero-actions { gap: 12px; }
      .btn-primary { padding: 13px 22px; font-size: 14px; width: 100%; justify-content: center; }
      .btn-secondary { padding: 12px 20px; font-size: 14px; width: 100%; justify-content: center; }
      .hero-actions .btn-primary { width: auto; }

      .hero-visual { max-width: 340px; }
      .hero-visual .frame.f-portrait { width: 74%; border-width: 3px; }
      .hero-visual .frame.f-news { width: 68%; }
      .badge { padding: 10px 12px; gap: 8px; border-radius: 14px; }
      .badge .b-icon { width: 30px; height: 30px; }
      .badge .b-num { font-size: 14px; }
      .badge .b-label { font-size: 10.5px; }
      .hero-visual .badge.b-followers { left: -6px; top: 14%; }
      .hero-visual .badge.b-ai { right: -6px; bottom: 14%; }
      .blob.b1 { width: 200px; height: 200px; }
      .blob.b2 { width: 160px; height: 160px; }

      .trust, .services, .testimonials, .about, .cta-section { padding: 56px 0; }
      .trust-card { padding: 28px 24px; }
      .trust-num { font-size: 48px; }
      .trust-text { font-size: 14.5px; }

      .section-head { margin-bottom: 36px; text-align: left; }
      .section-head h2 { font-size: 30px; line-height: 1.1; }
      .svc-card { padding: 28px 24px; border-radius: 20px; }
      .svc-card h3 { font-size: 23px; }
      .svc-card p { font-size: 14.5px; }

      .tm-head h2 { font-size: 28px; }
      .tm-head p { font-size: 15px; }
      .tm-card { padding: 28px 24px; border-radius: 20px; }
      .tm-quote { font-size: 16px; }

      .about h2 { font-size: 34px; }
      .about p { font-size: 15.5px; }
      .about-list { grid-template-columns: 1fr; margin: 24px 0; }
      .name-tag { padding: 12px 16px; }
      .name-tag .tag-name { font-size: 17px; }
      .name-tag .tag-sub { font-size: 12px; }

      .cta-section h2 { font-size: 30px; }
      .cta-section .lead { font-size: 15px; }
      .cta-list li { font-size: 14.5px; }
      .cta-tagline { position: static; margin: 16px auto 0; max-width: 100%; text-align: center; font-size: 17px; padding: 16px 20px; }
      .cta-visual img { aspect-ratio: 4 / 4.2; }

      .footer { padding: 56px 0 0; }
      .footer-brand img { height: 50px; }
      .footer-brand h3 { font-size: 18px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 0; }
      .footer-disclaimer { padding-bottom: 96px; }

      .floating-contact {
        bottom: 12px;
        right: 12px;
        left: 12px;
        padding: 13px 18px;
        font-size: 14px;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 380px) {
      .hero h1 { font-size: 32px; }
      .section-head h2 { font-size: 26px; }
      .about h2 { font-size: 28px; }
      .cta-section h2 { font-size: 26px; }
    }