* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: #FFFFFF;
      color: #333333;
      line-height: 1.6;
      min-height: 100vh;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 1000;
      background: #00CED1;
      color: #fff;
      padding: 0.75rem 1rem;
      font-weight: 600;
    }

    .skip-link:focus {
      left: 1rem;
      top: 1rem;
    }
    
    /* Header */
    header {
      background: #FFFFFF;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .logo img {
      max-width: 180px;
      height: auto;
    }
    
    nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    
    nav a {
      font-weight: 500;
      color: #666666;
      transition: color 0.3s ease;
      font-size: 0.95rem;
    }
    
    nav a:hover {
      color: #00CED1;
    }
    
    .btn-header {
      background: #00CED1;
      color: #FFFFFF;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .btn-header:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
      background: #1DB9C3;
    }
    
    /* Hamburger Menu */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #333333;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 101;
    }
    
    .menu-toggle:hover {
      color: #00CED1;
    }
    
    nav.mobile-open {
      display: flex;
    }
    
    /* Hero Section */
    .hero {
      width: 100%;
      min-height: 65vh;
      padding: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #FFFFFF;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(0, 206, 209, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }
    
    .hero-content {
      max-width: 1200px;
      width: 100%;
      position: relative;
      z-index: 1;
      margin: 0 auto;
      padding: 4rem 2rem 6rem;
    }
    
    .hero-logo {
      max-width: 400px;
      width: 100%;
      height: auto;
      margin: 0 auto 2rem;
      display: block;
    }
    
    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: #333333;
    }
    
    .hero .subtitle {
      font-size: 1.3rem;
      color: #666666;
      margin-bottom: 2.5rem;
      font-weight: 400;
      line-height: 1.7;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    
    .btn-primary {
      display: inline-block;
      background: #00CED1;
      color: #FFFFFF;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
      background: #1DB9C3;
    }
    
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: #00CED1;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      border: 2px solid #00CED1;
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background: #00CED1;
      color: #FFFFFF;
    }
    
    /* Section Styles */
    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
      color: #333333;
    }
    
    section .subtitle {
      text-align: center;
      color: #666666;
      font-size: 1.1rem;
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Services Section */
    .services {
      background: #FFFFFF;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .service-card {
      background: #FFFFFF;
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #00CED1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 206, 209, 0.15);
      border-color: #00CED1;
    }
    
    .service-card:hover::before {
      transform: scaleX(1);
    }
    
    .service-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #333333;
    }
    
    .service-card p {
      color: #555555;
      line-height: 1.7;
      font-size: 0.95rem;
    }
    
    .service-card {
      text-align: center;
    }
    
    .service-card .icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      display: block;
      color: #00CED1;
      transition: transform 0.3s ease, color 0.3s ease;
      text-align: center;
    }
    
    .service-card:hover .icon {
      transform: scale(1.1);
      color: #1DB9C3;
    }
    
    /* Benefits Section */
    .benefits {
      background: #F8F8F8;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .benefit-item {
      background: #FFFFFF;
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }
    
    .benefit-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #00CED1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 206, 209, 0.15);
      border-color: #00CED1;
    }
    
    .benefit-item:hover::before {
      transform: scaleX(1);
    }
    
    .benefit-item .icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
      color: #00CED1;
      transition: transform 0.3s ease, color 0.3s ease;
      text-align: center;
    }
    
    .benefit-item:hover .icon {
      transform: scale(1.1);
      color: #1DB9C3;
    }
    
    .benefit-item h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #333333;
    }
    
    .benefit-item p {
      color: #555555;
      font-size: 1rem;
      line-height: 1.7;
    }
    
    /* About Section */
    .about {
      background: #FFFFFF;
    }
    
    .about-content {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .about-content p {
      font-size: 1.1rem;
      color: #555555;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    .about-content .highlight {
      color: #00CED1;
      font-weight: 600;
    }
    
    /* Portfolio */
    .portfolio {
      background: #FFFFFF;
    }

    .portfolio-list {
      display: grid;
      gap: 1.75rem;
    }

    .portfolio-featured {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2.5rem;
      align-items: center;
      background: #F8F8F8;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      padding: 2.25rem;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    }

    .portfolio-link {
      display: inline-block;
      margin-top: 1.15rem;
      background: #00CED1;
      color: #FFFFFF;
      padding: 0.75rem 1.35rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 4px 15px rgba(0, 206, 209, 0.25);
    }

    .portfolio-link:hover {
      background: #1DB9C3;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .portfolio-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #00CED1;
      margin-bottom: 0.85rem;
    }

    .portfolio-featured h3 {
      font-size: 1.85rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 0.85rem;
      line-height: 1.25;
    }

    .portfolio-featured .lead {
      color: #555555;
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .portfolio-points {
      list-style: none;
      margin: 0 0 1.4rem;
      display: grid;
      gap: 0.7rem;
    }

    .portfolio-points li {
      display: flex;
      gap: 0.7rem;
      color: #444444;
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .portfolio-points i {
      color: #00CED1;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    .keep-preview {
      position: relative;
      min-height: 340px;
    }

    .keep-preview .note {
      position: absolute;
      width: 210px;
      border-radius: 14px;
      padding: 1rem 1rem 0.85rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      transform: rotate(-3deg);
    }

    .keep-preview .note.n1 {
      background: #fff7c8;
      top: 18px;
      left: 8px;
      z-index: 1;
    }

    .keep-preview .note.n2 {
      background: #d9fbe8;
      top: 78px;
      right: 12px;
      transform: rotate(4deg);
      z-index: 2;
    }

    .keep-preview .note.n3 {
      background: #dff2ff;
      bottom: 8px;
      left: 72px;
      transform: rotate(-1.5deg);
      z-index: 3;
      width: 240px;
    }

    .keep-preview .note strong {
      display: block;
      font-size: 0.92rem;
      margin-bottom: 0.55rem;
      color: #333;
    }

    .keep-preview .note ul {
      list-style: none;
      font-size: 0.82rem;
      color: #444;
    }

    .keep-preview .note li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.35rem;
    }

    .keep-preview .dot {
      width: 12px;
      height: 12px;
      border: 2px solid #5b6472;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .keep-preview .dot.done {
      background: #1f9d69;
      border-color: #1f9d69;
    }

    .keep-preview .done-text {
      text-decoration: line-through;
      opacity: 0.6;
    }

    .keep-preview .widget-badge {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .kidbyte-preview {
      position: relative;
      min-height: 340px;
    }

    .kidbyte-preview .mission {
      position: absolute;
      width: 168px;
      border-radius: 16px;
      padding: 0.95rem 0.9rem;
      color: #fff;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
      font-weight: 700;
    }

    .kidbyte-preview .mission span {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      opacity: 0.9;
      margin-top: 0.3rem;
    }

    .kidbyte-preview .m1 {
      background: linear-gradient(145deg, #ff7a59, #ee4d2d);
      top: 28px;
      left: 10px;
      transform: rotate(-6deg);
    }

    .kidbyte-preview .m2 {
      background: linear-gradient(145deg, #4f8cff, #2b63e6);
      top: 18px;
      right: 18px;
      transform: rotate(5deg);
    }

    .kidbyte-preview .m3 {
      background: linear-gradient(145deg, #22c55e, #15803d);
      bottom: 22px;
      left: 42px;
      transform: rotate(2deg);
    }

    .kidbyte-preview .m4 {
      background: linear-gradient(145deg, #a855f7, #7c3aed);
      bottom: 8px;
      right: 8px;
      transform: rotate(-3deg);
    }

    .kidbyte-preview .diploma-badge {
      position: absolute;
      left: 50%;
      top: 46%;
      transform: translate(-50%, -50%);
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      z-index: 5;
      white-space: nowrap;
    }

    .teamsync-preview {
      position: relative;
      min-height: 340px;
    }

    .teamsync-preview .cal-card {
      position: absolute;
      width: 200px;
      background: #fff;
      border-radius: 14px;
      padding: 0.9rem 1rem;
      box-shadow: 0 10px 24px rgba(10, 88, 202, 0.16);
      border: 1px solid rgba(10, 88, 202, 0.12);
    }

    .teamsync-preview .cal-card strong {
      display: block;
      font-size: 0.82rem;
      color: #0a58ca;
      margin-bottom: 0.45rem;
    }

    .teamsync-preview .bar {
      height: 8px;
      border-radius: 99px;
      margin-bottom: 0.4rem;
    }

    .teamsync-preview .c1 {
      top: 22px;
      left: 8px;
      transform: rotate(-4deg);
    }

    .teamsync-preview .c2 {
      top: 92px;
      right: 10px;
      transform: rotate(3.5deg);
      z-index: 2;
    }

    .teamsync-preview .c3 {
      bottom: 12px;
      left: 56px;
      transform: rotate(-1deg);
      z-index: 3;
      width: 230px;
    }

    .teamsync-preview .badge-ts {
      position: absolute;
      right: 0;
      top: 0;
      background: #0a58ca;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .impact-preview {
      position: relative;
      min-height: 340px;
    }

    .impact-preview .okr {
      position: absolute;
      width: 230px;
      background: #fff;
      border-radius: 14px;
      padding: 0.95rem 1rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .impact-preview .okr strong {
      display: block;
      font-size: 0.84rem;
      color: #222;
      margin-bottom: 0.55rem;
      line-height: 1.35;
    }

    .impact-preview .pct {
      font-size: 0.78rem;
      font-weight: 700;
      color: #00a8ab;
      margin-bottom: 0.35rem;
    }

    .impact-preview .track {
      height: 8px;
      background: #e8eef0;
      border-radius: 99px;
      overflow: hidden;
    }

    .impact-preview .fill {
      height: 100%;
      border-radius: 99px;
      background: #00CED1;
    }

    .impact-preview .o1 {
      top: 28px;
      left: 6px;
      transform: rotate(-3deg);
    }

    .impact-preview .o2 {
      top: 118px;
      right: 8px;
      transform: rotate(4deg);
      z-index: 2;
    }

    .impact-preview .o3 {
      bottom: 10px;
      left: 48px;
      transform: rotate(-1deg);
      z-index: 3;
    }

    .impact-preview .badge-im {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .orders-preview {
      position: relative;
      min-height: 340px;
    }

    .orders-preview .row {
      position: absolute;
      width: 240px;
      background: #fff;
      border-radius: 14px;
      padding: 0.85rem 1rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .orders-preview .light {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .orders-preview .row strong {
      display: block;
      font-size: 0.84rem;
      color: #222;
    }

    .orders-preview .row span {
      font-size: 0.75rem;
      color: #666;
    }

    .orders-preview .r1 {
      top: 36px;
      left: 10px;
      transform: rotate(-3deg);
    }

    .orders-preview .r2 {
      top: 128px;
      right: 8px;
      transform: rotate(3deg);
      z-index: 2;
    }

    .orders-preview .r3 {
      bottom: 18px;
      left: 40px;
      transform: rotate(-1deg);
      z-index: 3;
    }

    .orders-preview .badge-ord {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .lopta-preview {
      position: relative;
      min-height: 340px;
    }

    .lopta-preview .prod {
      position: absolute;
      width: 168px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .lopta-preview .swatch {
      height: 86px;
    }

    .lopta-preview .prod p {
      padding: 0.7rem 0.8rem 0.85rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: #222;
    }

    .lopta-preview .prod span {
      display: block;
      font-weight: 500;
      color: #888;
      margin-top: 0.2rem;
      font-size: 0.74rem;
    }

    .lopta-preview .p1 {
      top: 36px;
      left: 8px;
      transform: rotate(-5deg);
    }

    .lopta-preview .p2 {
      top: 18px;
      right: 14px;
      transform: rotate(4deg);
      z-index: 2;
    }

    .lopta-preview .p3 {
      bottom: 12px;
      left: 72px;
      transform: rotate(-1deg);
      z-index: 3;
      width: 190px;
    }

    .lopta-preview .badge-lp {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .event-preview,
    .bar-preview {
      position: relative;
      min-height: 340px;
    }

    .event-preview .ev,
    .bar-preview .ev {
      position: absolute;
      width: 220px;
      background: #fff;
      border-radius: 14px;
      padding: 0.85rem 0.95rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .event-preview .ev strong,
    .bar-preview .ev strong {
      display: block;
      font-size: 0.84rem;
      margin-bottom: 0.25rem;
    }

    .event-preview .ev span,
    .bar-preview .ev span {
      font-size: 0.75rem;
      color: #666;
    }

    .event-preview .e1 { top: 34px; left: 8px; transform: rotate(-4deg); }
    .event-preview .e2 { top: 108px; right: 6px; transform: rotate(3deg); z-index: 2; }
    .event-preview .e3 { bottom: 14px; left: 48px; transform: rotate(-1deg); z-index: 3; width: 230px; }

    .bar-preview .e1 { top: 32px; left: 12px; transform: rotate(-3deg); }
    .bar-preview .e2 { top: 118px; right: 8px; transform: rotate(4deg); z-index: 2; }
    .bar-preview .e3 { bottom: 12px; left: 52px; transform: rotate(-1.5deg); z-index: 3; }

    .event-preview .badge-ev,
    .bar-preview .badge-ev {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    .futsal-preview {
      position: relative;
      min-height: 340px;
    }

    .futsal-preview .match {
      position: absolute;
      width: 220px;
      background: #fff;
      border-radius: 14px;
      padding: 0.85rem 0.95rem;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .futsal-preview .match strong {
      display: block;
      font-size: 0.84rem;
      margin-bottom: 0.2rem;
    }

    .futsal-preview .match span {
      font-size: 0.74rem;
      color: #666;
    }

    .futsal-preview .score {
      font-size: 0.78rem;
      font-weight: 800;
      color: #00a8ab;
      margin-bottom: 0.25rem;
    }

    .futsal-preview .m1 { top: 36px; left: 8px; transform: rotate(-4deg); }
    .futsal-preview .m2 { top: 112px; right: 6px; transform: rotate(3deg); z-index: 2; }
    .futsal-preview .m3 { bottom: 14px; left: 44px; transform: rotate(-1deg); z-index: 3; width: 230px; }

    .futsal-preview .badge-fm {
      position: absolute;
      right: 0;
      top: 0;
      background: #111827;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      z-index: 4;
    }

    /* Products Section (nascosta al momento) */
    .products {
      background: #FFFFFF;
      display: none;
    }
    
    .products-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    
    .product-card {
      background: #FFFFFF;
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      margin-top: 2rem;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 206, 209, 0.15);
      border-color: #00CED1;
    }
    
    .product-card h3 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #333333;
    }
    
    .product-card p {
      font-size: 1.1rem;
      color: #555555;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    /* Partner di sviluppo */
    .partners {
      background: #FFFFFF;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }

    .partner-card {
      display: flex;
      flex-direction: column;
      background: #F8F8F8;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(0, 206, 209, 0.12);
      border-color: rgba(0, 206, 209, 0.45);
    }

    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 92px;
      margin-bottom: 1.15rem;
      padding: 0.85rem 1rem;
      background: #FFFFFF;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .partner-logo.dark {
      background: #111111;
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 64px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .partner-kicker {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #00CED1;
      margin-bottom: 0.45rem;
    }

    .partner-card h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .partner-card p {
      color: #555555;
      font-size: 0.98rem;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.1rem;
    }

    .partner-meta {
      list-style: none;
      margin: 0 0 1.15rem;
      padding: 0;
      color: #666666;
      font-size: 0.88rem;
    }

    .partner-meta li {
      margin-bottom: 0.35rem;
    }

    .partner-meta i {
      color: #00CED1;
      width: 1.1rem;
    }

    .partner-link {
      display: inline-block;
      align-self: flex-start;
      background: #00CED1;
      color: #FFFFFF;
      padding: 0.7rem 1.2rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.92rem;
      box-shadow: 0 4px 15px rgba(0, 206, 209, 0.25);
    }

    .partner-link:hover {
      background: #1DB9C3;
      color: #FFFFFF;
    }

    .product-link {
      display: inline-block;
      background: #00CED1;
      color: #FFFFFF;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
      text-decoration: none;
    }
    
    .product-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
      background: #1DB9C3;
      color: #FFFFFF;
    }
    
    /* FAQ Section */
    .faq {
      background: #F8F8F8;
    }
    
    .faq-item {
      background: #FFFFFF;
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }
    
    .faq-question {
      padding: 1.5rem;
      font-weight: 600;
      color: #333333;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-question:hover {
      background: #F0F0F0;
    }
    
    .faq-answer {
      padding: 0 1.5rem 1.5rem;
      color: #555555;
      line-height: 1.7;
    }
    
    /* Contact Section */
    .contact {
      background: #F8F8F8;
      padding-bottom: 6rem;
      margin-bottom: 2.5rem;
    }
    
    .contact-content {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .contact-info {
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .contact-info p {
      color: #666666;
      margin-bottom: 0.5rem;
    }
    
    .contact-info strong {
      color: #333333;
    }
    
    .contact-info a {
      color: #00CED1;
      font-weight: 500;
    }
    .contact-info a:hover {
      color: #1DB9C3;
      text-decoration: underline;
    }
    
    .contact-form {
      background: #F8F8F8;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #333333;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #00CED1;
    }
    
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    /* Captcha custom */
    .captcha-group {
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: rgba(0, 206, 209, 0.08);
      border: 1px solid rgba(0, 206, 209, 0.3);
      border-radius: 8px;
    }
    .captcha-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #333333;
    }
    .captcha-prompt {
      font-size: 1rem;
      color: #555555;
      margin-bottom: 0.5rem;
    }
    .captcha-group input {
      width: 120px;
      padding: 0.75rem;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
    }
    .captcha-group input:focus {
      outline: none;
      border-color: #00CED1;
    }
    .captcha-error {
      color: #c0392b;
      font-size: 0.9rem;
      margin-top: 0.25rem;
      display: none;
    }
    .captcha-error.show {
      display: block;
    }
    
    .form-error-fallback {
      display: none;
      margin-top: 1rem;
      padding: 1rem;
      background: rgba(192, 57, 43, 0.08);
      border: 1px solid rgba(192, 57, 43, 0.3);
      border-radius: 8px;
      color: #555;
      font-size: 0.95rem;
    }
    .form-error-fallback.show {
      display: block;
    }
    .form-error-fallback a {
      color: #00CED1;
      font-weight: 600;
    }
    .form-error-fallback a:hover {
      text-decoration: underline;
    }
    
    /* Footer */
    footer {
      padding: 3rem 2rem;
      background: #333333;
      color: #FFFFFF;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
    
    .footer-section h4 {
      margin-bottom: 1rem;
      color: #00CED1;
    }
    
    .footer-section ul {
      list-style: none;
    }
    
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    
    .footer-section a {
      color: #CCCCCC;
      transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
      color: #00CED1;
    }
    
    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: #CCCCCC;
      font-size: 0.9rem;
    }
    
    .footer-bottom p {
      margin-bottom: 0.5rem;
    }
    
    /* Responsive */
    @media (max-width: 1100px) {
      .partners-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
        position: relative;
      }
      
      .menu-toggle {
        display: block;
      }
      
      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }
      
      nav a {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        text-align: left;
      }
      
      nav a:last-child {
        border-bottom: none;
      }
      
      nav a.btn-header {
        text-align: center;
        margin-top: 0.5rem;
      }
      
      .hero {
        min-height: 65vh;
      }
      
      .hero-content {
        padding: 3rem 1.5rem 4rem;
      }
      
      .hero-logo {
        max-width: 280px;
        margin-bottom: 1.5rem;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero .subtitle {
        font-size: 1.1rem;
      }
      
      .hero-cta {
        flex-direction: column;
      }
      
      .hero-cta .btn-primary,
      .hero-cta .btn-secondary {
        width: 100%;
      }
      
      section h2 {
        font-size: 2rem;
      }
      
      .services-grid,
      .benefits-grid,
      .partners-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-featured {
        grid-template-columns: 1fr;
        padding: 1.5rem;
      }

      .keep-preview,
      .kidbyte-preview,
      .teamsync-preview,
      .impact-preview,
      .orders-preview,
      .lopta-preview,
      .event-preview,
      .bar-preview,
      .futsal-preview {
        min-height: 300px;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid #00CED1;
      outline-offset: 3px;
    }

    .footer-cols-3 {
      grid-template-columns: repeat(3, minmax(160px, 1fr));
    }

    .footer-heading,
    .footer-section .footer-heading {
      margin-bottom: 1rem;
      color: #00CED1;
      font-size: 1.05rem;
      font-weight: 700;
    }

    .footer-section p {
      color: #CCCCCC;
      line-height: 1.6;
    }

    .portfolio-featured.is-flagship {
      border: 2px solid #00CED1;
      box-shadow: 0 14px 40px rgba(0, 206, 209, 0.18);
      background: linear-gradient(180deg, #ffffff 0%, #f4fdfe 100%);
    }

    .portfolio-featured h3 a {
      color: inherit;
    }

    .portfolio-featured h3 a:hover {
      color: #1DB9C3;
    }

    .card-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.15rem;
    }

    .card-cta-row .portfolio-link {
      margin-top: 0;
    }

    .portfolio-link-secondary {
      background: transparent;
      color: #00CED1;
      border: 2px solid #00CED1;
      box-shadow: none;
    }

    .portfolio-link-secondary:hover {
      background: #00CED1;
      color: #fff;
    }

    .services-bridge {
      margin: 2.5rem auto 0;
      max-width: 800px;
      text-align: center;
      font-size: 1.15rem;
      color: #444;
      line-height: 1.7;
    }

    .activity-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .activity-split article {
      background: #F8F8F8;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 1.5rem;
    }

    .activity-split h3 {
      color: #00CED1;
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
    }

    .seo-visible {
      max-width: 800px;
      margin: 0 auto 2.5rem;
      text-align: center;
      color: #444;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .page-main {
      padding-top: 2rem;
    }

    .breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      list-style: none;
      margin: 0 auto 1.5rem;
      max-width: 1200px;
      padding: 0 2rem;
      color: #666;
      font-size: 0.92rem;
    }

    .breadcrumb li:not(:last-child)::after {
      content: "/";
      margin-left: 0.4rem;
      color: #999;
    }

    .breadcrumb a {
      color: #00CED1;
    }

    .prose {
      max-width: 800px;
      margin: 0 auto 3rem;
      padding: 0 2rem;
    }

    .prose h2 {
      text-align: left;
      font-size: 1.6rem;
      margin: 2rem 0 0.75rem;
    }

    .prose p,
    .prose li {
      color: #444;
      line-height: 1.75;
    }

    .prose ul {
      margin: 0.75rem 0 1rem 1.2rem;
    }

    .updated-on {
      color: #777;
      font-size: 0.9rem;
      margin-top: 2rem;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .related-card {
      display: block;
      background: #F8F8F8;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 1.25rem;
    }

    .related-card:hover {
      border-color: #00CED1;
    }

    .product-index {
      display: grid;
      gap: 1.25rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .product-index a {
      display: block;
      background: #F8F8F8;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
    }

    .product-index a:hover {
      border-color: #00CED1;
      transform: translateY(-2px);
    }

    .product-index .kicker {
      color: #00CED1;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .tools-page {
      padding-bottom: 2rem;
    }

    .tools-hero {
      max-width: 820px;
      margin: 0 auto 2.75rem;
      padding: 0 2rem;
      text-align: center;
    }

    .tools-kicker {
      color: #00CED1;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .tools-hero h1 {
      font-size: clamp(2.2rem, 6vw, 3.4rem);
      font-weight: 800;
      color: #111111;
      line-height: 1.1;
      margin-bottom: 0.85rem;
    }

    .tools-hero p {
      color: #555555;
      font-size: 1.12rem;
      line-height: 1.7;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      max-width: 920px;
      margin: 0 auto 4rem;
      padding: 0 2rem;
    }

    @media (min-width: 760px) {
      .tools-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1080px) {
      .tools-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .tool-btn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-height: 240px;
      padding: 2rem 2.15rem;
      border-radius: 22px;
      background: #00CED1;
      color: #FFFFFF;
      box-shadow: 0 14px 32px rgba(0, 206, 209, 0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .tool-btn:hover,
    .tool-btn:focus-visible {
      transform: translateY(-6px);
      background: #1DB9C3;
      color: #FFFFFF;
      box-shadow: 0 20px 42px rgba(0, 206, 209, 0.4);
    }

    .tool-btn.alt {
      background: #111111;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    }

    .tool-btn.alt:hover,
    .tool-btn.alt:focus-visible {
      background: #1c1c1c;
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    }

    .tool-btn-kicker {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .tool-btn i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .tool-btn h2 {
      font-size: 1.85rem;
      font-weight: 800;
      margin-bottom: 0.65rem;
      color: #FFFFFF;
      text-align: left;
    }

    .tool-btn p {
      color: rgba(255, 255, 255, 0.92);
      font-size: 1.02rem;
      line-height: 1.55;
      flex: 1;
    }

    .tool-btn-cta {
      margin-top: 1.4rem;
      font-weight: 800;
      font-size: 1.05rem;
    }

    .tools-copy {
      max-width: 820px;
      margin: 0 auto 4rem;
    }

    .figure-block {
      margin: 2rem auto;
      max-width: 900px;
    }

    .figure-block figcaption {
      text-align: center;
      color: #666;
      font-size: 0.92rem;
      margin-top: 0.75rem;
    }

    @media (max-width: 1100px) {
      .footer-cols-3,
      .activity-split {
        grid-template-columns: 1fr;
      }
    }

