    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --green: #22c55e;
      --green-dark: #15803d;
      --green-soft: rgba(34, 197, 94, 0.18);
    }

    @property --turbo-angle {
      syntax: "<angle>";
      initial-value: 0deg;
      inherits: false;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      font-family: "Inter", Arial, sans-serif;
      color: #fff;
      background: #050505;
    }

    .navbar {
      position: absolute;
      top: 0;
      left: 50%;
      z-index: 10;
      width: min(1240px, calc(100% - 32px));
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 18px;
      height: 118px;
      padding: 0 10px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      transform: translateX(-50%);
      overflow: visible;
    }

    .navbar.is-fixed {
      position: fixed;
      top: 18px;
      width: min(1080px, calc(100% - 32px));
      height: 96px;
      padding: 0 16px;
      border-color: rgba(255, 255, 255, 0.12);
      background: rgba(12, 12, 12, 0.8);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(16px);
      animation: navbar-drop 0.35s ease;
    }

    @keyframes navbar-drop {
      from {
        transform: translate(-50%, -130%);
      }

      to {
        transform: translate(-50%, 0);
      }
    }

    .logo {
      position: relative;
      display: block;
      width: 212px;
      height: 44px;
    }

    .logo img {
      position: absolute;
      top: 50%;
      left: 10px;
      display: block;
      width: 205px;
      height: auto;
      transform: translateY(-50%);
      transition: width 0.25s ease;
    }

    .navbar.is-fixed .logo img {
      width: 172px;
    }

    .navbar-menu {
      display: contents;
    }

    .site-nav {
      justify-self: center;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
    }

    .menu-toggle span {
      position: relative;
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: background 0.2s ease;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: transform 0.2s ease, top 0.2s ease;
    }

    .menu-toggle span::before {
      top: -7px;
    }

    .menu-toggle span::after {
      top: 7px;
    }

    .navbar.is-open .menu-toggle span {
      background: transparent;
    }

    .navbar.is-open .menu-toggle span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .navbar.is-open .menu-toggle span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .categories {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      list-style: none;
    }

    .categories a {
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

    .talk-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      justify-self: end;
      padding: 16px 28px;
      border-radius: 999px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      background: var(--green);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .talk-button:hover {
      background: var(--green);
      transform: translateY(-1px);
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 170px 24px 96px;
      background:
        radial-gradient(circle at 18% 24%, rgba(34, 197, 94, 0.24), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.1), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0d0d0d 58%, #050505 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at center, #000 0%, transparent 68%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: center;
    }

    .hero-title {
      max-width: 720px;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .hero-title strong {
      color: transparent;
      background: linear-gradient(135deg, #fff 8%, var(--green) 88%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-text {
      max-width: 560px;
      margin-top: 24px;
      color: rgba(255, 255, 255, 0.64);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .hero-button.primary {
      color: #fff;
      background: var(--green-dark);
    }

    .hero-button.secondary {
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: #fff;
      background: var(--green-soft);
    }

    .hero-button:hover {
      transform: translateY(-2px);
    }

    .hero-media {
      min-height: 430px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image {
      width: min(115%, 660px);
      height: auto;
      display: block;
    }

    .about {
      padding: 96px 24px;
      background: #050505;
    }

    .about-inner {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 64px;
      align-items: center;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--green);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--green);
      opacity: 0.7;
    }

    .about-title {
      max-width: 620px;
      font-size: clamp(38px, 5vw, 68px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .about-text {
      max-width: 560px;
      margin-top: 24px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 18px;
      line-height: 1.7;
    }

    .about-points {
      display: grid;
      gap: 12px;
      margin-top: 30px;
      list-style: none;
    }

    .about-points li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 16px;
      font-weight: 700;
    }

    .about-points li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
      flex: 0 0 auto;
    }

    .about-photo {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-photo img {
      width: min(100%, 620px);
      height: auto;
      display: block;
      filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.45));
    }

    .portfolio {
      padding: 96px 24px;
      background:
        radial-gradient(circle at 18% 12%, rgba(34, 197, 94, 0.12), transparent 28%),
        #050505;
    }

    .portfolio-inner {
      width: min(1120px, 100%);
      margin: 0 auto;
    }

    .portfolio-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px 48px;
      align-items: end;
      margin-bottom: 46px;
    }

    .portfolio-header .portfolio-cta {
      margin-top: 0;
      margin-bottom: 6px;
      white-space: nowrap;
    }

    .portfolio-title {
      max-width: 680px;
      font-size: clamp(38px, 5vw, 68px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .portfolio-text {
      max-width: 520px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 17px;
      line-height: 1.7;
    }

    .services {
      padding: 100px 24px;
      background:
        radial-gradient(circle at 82% 6%, rgba(34, 197, 94, 0.12), transparent 32%),
        #050505;
    }

    .services-inner {
      width: min(1160px, 100%);
      margin: 0 auto;
    }

    .services-header {
      max-width: 720px;
      margin-bottom: 48px;
    }

    .services-title {
      margin-top: 6px;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: -0.05em;
    }

    .services-text {
      max-width: 560px;
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 18px;
      line-height: 1.7;
    }

    .brand-compare {
      padding: 96px 24px;
      background: #050505;
    }

    .brand-compare-inner {
      width: min(1120px, 100%);
      margin: 0 auto;
    }

    .brand-compare-header {
      max-width: 780px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .brand-compare-title {
      font-size: clamp(38px, 5vw, 68px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .brand-compare-text {
      margin-top: 20px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 18px;
      line-height: 1.7;
    }

    .compare-path {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .compare-card {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.04);
    }

    .compare-card.strong {
      border-color: rgba(34, 197, 94, 0.34);
      background: rgba(34, 197, 94, 0.08);
    }

    .compare-card.weak {
      background: rgba(255, 255, 255, 0.03);
    }

    .compare-card h3 {
      margin-bottom: 10px;
      font-size: 28px;
      letter-spacing: -0.03em;
      text-align: center;
    }

    .compare-card p {
      margin-bottom: 22px;
      color: rgba(255, 255, 255, 0.56);
      font-size: 15px;
      line-height: 1.6;
      text-align: center;
    }

    .compare-list {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .compare-list li {
      display: flex;
      gap: 12px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 17px;
      line-height: 1.45;
    }

    .weak .compare-list li::before {
      content: "x";
      color: rgba(255, 255, 255, 0.35);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .strong .compare-list li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .contact-section {
      padding: 92px 24px 110px;
      background:
        radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.18), transparent 30%),
        radial-gradient(circle at 86% 70%, rgba(34, 197, 94, 0.08), transparent 28%),
        #050505;
    }

    .contact-header {
      width: min(900px, 100%);
      margin: 0 auto 36px;
      text-align: center;
    }

    .contact-header h2 {
      font-size: clamp(40px, 6vw, 78px);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .contact-header p {
      max-width: 680px;
      margin: 20px auto 0;
      color: rgba(255, 255, 255, 0.64);
      font-size: 18px;
      line-height: 1.7;
    }

    .contact-inner {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-card {
      position: relative;
      padding: 36px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.045);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    }

    .contact-card.fast {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      border: 0;
      background:
        radial-gradient(circle at 86% 12%, rgba(34, 197, 94, 0.28), transparent 34%),
        linear-gradient(145deg, rgba(34, 197, 94, 0.13), rgba(255, 255, 255, 0.04));
    }

    .contact-card.fast::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: inherit;
      padding: 2px;
      background: conic-gradient(from var(--turbo-angle), transparent 0deg 285deg, var(--green) 312deg, #fff 330deg, var(--green) 348deg, transparent 360deg);
      animation: turbo-border 5s linear infinite;
      pointer-events: none;
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .contact-card.fast > * {
      position: relative;
      z-index: 1;
    }

    @keyframes turbo-border {
      100% {
        --turbo-angle: 360deg;
      }
    }

    .contact-card.fast::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      z-index: 0;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.16);
      filter: blur(8px);
    }

    .contact-card-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 24px;
    }

    .turbo-icon {
      width: 150px;
      max-width: 42%;
      height: auto;
      display: block;
      filter: drop-shadow(0 18px 34px rgba(34, 197, 94, 0.24));
    }

    .contact-card h2 {
      max-width: 640px;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .contact-card h3 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .contact-card p {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 17px;
      line-height: 1.7;
    }

    .fast-points {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      margin: 28px 0 8px;
      list-style: none;
    }

    .fast-points li {
      display: flex;
      gap: 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 16px;
      font-weight: 700;
      line-height: 1.45;
    }

    .fast-points li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(34, 197, 94, 0.7);
      flex: 0 0 auto;
    }

    .whatsapp-button {
      position: relative;
      z-index: 1;
      display: inline-flex;
      width: 100%;
      min-height: 58px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 34px;
      padding: 0 24px;
      border-radius: 999px;
      color: #fff;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      background: var(--green);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .whatsapp-button:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    .whatsapp-button i {
      font-size: 22px;
    }

    .contact-note {
      position: relative;
      z-index: 1;
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.54);
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-form {
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field label {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      font-weight: 800;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      color: #fff;
      font: inherit;
      background: rgba(5, 5, 5, 0.48);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-field input,
    .form-field select {
      height: 56px;
      padding: 0 16px;
    }

    .form-field select {
      appearance: none;
      cursor: pointer;
    }

    .form-field select option {
      color: #050505;
    }

    .form-field textarea {
      min-height: 132px;
      resize: vertical;
      padding: 16px;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: rgba(34, 197, 94, 0.7);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    }

    .form-field input.is-invalid {
      border-color: rgba(248, 113, 113, 0.78);
      box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.1);
    }

    .form-hint {
      color: rgba(255, 255, 255, 0.46);
      font-size: 13px;
      line-height: 1.5;
    }

    .form-error {
      display: none;
      color: #f87171;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
    }

    .form-error.is-visible {
      display: block;
    }

    .form-submit {
      min-height: 58px;
      margin-top: 4px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      background: var(--green);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .form-submit:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    .footer {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 34px;
      background: rgba(13, 13, 13, 0.92);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
      overflow: hidden;
    }

    .footer-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
      padding: 42px 44px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 88% 16%, rgba(34, 197, 94, 0.18), transparent 42%),
        linear-gradient(120deg, rgba(34, 197, 94, 0.08), transparent 62%);
    }

    .footer-cta h2 {
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .footer-cta p {
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 16px;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      padding: 16px 28px;
      border-radius: 999px;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      background: var(--green);
      transition: gap 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .footer-cta-btn:hover {
      gap: 16px;
      color: #fff;
      background: var(--green-dark);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
      gap: 40px;
      align-items: start;
      padding: 46px 44px;
    }

    .footer-logo {
      display: block;
      width: 150px;
      margin-bottom: 18px;
    }

    .footer-description {
      max-width: 340px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      line-height: 1.7;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .footer-social a {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 17px;
      text-decoration: none;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .footer-social a:hover {
      color: #fff;
      border-color: var(--green);
      background: var(--green);
      transform: translateY(-2px);
    }

    .footer-title {
      margin-bottom: 16px;
      color: #fff;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 11px;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
      text-decoration: none;
      transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .footer-links a:hover {
      padding-left: 4px;
      color: var(--green);
    }

    .footer-contact {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 15px;
    }

    .footer-contact i {
      width: 18px;
      color: var(--green);
      font-size: 15px;
      text-align: center;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-contact a:hover {
      color: var(--green);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 20px 44px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.46);
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 22px;
    }

    .footer-legal a {
      color: rgba(255, 255, 255, 0.46);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-legal a:hover {
      color: var(--green);
    }

    

    @media (max-width: 760px) {
      .navbar {
        grid-template-columns: 1fr auto;
        height: 84px;
        padding: 0 14px;
        border-radius: 999px;
      }

      .navbar.is-fixed {
        top: 12px;
        height: 72px;
      }

      .logo {
        width: 172px;
        height: 38px;
      }

      .logo img {
        left: 2px;
        width: 166px;
      }

      .navbar.is-fixed .logo img {
        width: 144px;
      }

      .menu-toggle {
        display: inline-flex;
        justify-self: end;
      }

      .navbar-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        gap: 16px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        background: rgba(12, 12, 12, 0.96);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(16px);
      }

      .navbar.is-open .navbar-menu {
        display: grid;
      }

      .site-nav {
        justify-self: stretch;
      }

      .categories {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }

      .categories li,
      .categories a {
        width: 100%;
      }

      .categories a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
      }

      .categories a {
        white-space: nowrap;
      }

      .talk-button {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .footer-cta {
        padding: 30px 26px;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        padding: 32px 26px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        padding: 18px 26px;
      }

      .hero {
        padding: 132px 20px 72px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-media {
        min-height: auto;
      }

      .hero-image {
        width: min(100%, 420px);
      }

      .about {
        padding: 72px 24px;
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .services {
        padding: 64px 24px;
      }

      .portfolio {
        padding: 72px 24px;
      }

      .portfolio-header {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .brand-compare {
        padding: 72px 24px;
      }

      .compare-path {
        grid-template-columns: 1fr;
      }

      .compare-card {
        padding: 24px;
      }

      .contact-section {
        padding: 56px 24px 72px;
      }

      .contact-header {
        margin-bottom: 28px;
      }

      .contact-inner {
        grid-template-columns: 1fr;
      }

      .contact-card {
        padding: 28px;
      }

      .contact-card-head {
        align-items: center;
      }

      .turbo-icon {
        width: 112px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

    }

/* ===== Portföy CTA (ana sayfa) ===== */
.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 26px;
  border-radius: 999px;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  background: var(--green);
  transition: gap 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.portfolio-cta:hover {
  gap: 16px;
  color: #fff;
  background: var(--green-dark);
}

.portfolio-cta i {
  font-size: 13px;
}

/* ===== Galeri sayfası ===== */
.gallery-page {
  padding: 158px 24px 8px;
  background:
    radial-gradient(circle at 15% 6%, rgba(34, 197, 94, 0.18), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.gallery-hero {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.gallery-title {
  max-width: 900px;
  margin-top: 8px;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.gallery-title strong {
  color: transparent;
  background: linear-gradient(135deg, #fff 10%, var(--green) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.gallery-lead {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
  line-height: 1.7;
}

.gallery-section {
  padding: 58px 24px 112px;
  background: #050505;
}

.gallery-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  column-count: 2;
  column-gap: 36px;
}

.g-item {
  break-inside: avoid;
  margin: 0 0 44px;
}

.g-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  background: #0a0a0a;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.g-media.is-wide {
  aspect-ratio: 16 / 9;
}

.g-media.is-square {
  aspect-ratio: 1 / 1;
}

.g-media.is-tall {
  aspect-ratio: 9 / 16;
}

.g-item.is-portrait .g-media,
.g-item.is-portrait .g-info {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.g-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.g-item:hover .g-media {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 28px 70px rgba(34, 197, 94, 0.2);
}

.g-item:hover .g-media video {
  filter: brightness(1.06) saturate(1.04);
}

.g-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 0 4px;
}

.g-brand {
  display: flex;
  align-items: center;
  height: 36px;
  flex: 0 0 auto;
}

.g-logo {
  height: 30px;
  width: auto;
  max-width: 152px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.g-wordmark {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.005em;
}

.g-title {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.4;
}

.g-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .gallery-grid {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  .gallery-page {
    padding: 130px 20px 8px;
  }

  .gallery-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .gallery-section {
    padding: 40px 20px 84px;
  }

  .gallery-lead {
    font-size: 17px;
  }

  .g-info {
    gap: 14px;
  }

  .g-wordmark {
    font-size: 19px;
  }
}

/* ===== Galeri oynatıcı (badge + lightbox) ===== */
.g-media {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  display: flex;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox-inner {
  transform: none;
}

.lightbox-inner video {
  max-width: min(1040px, 94vw);
  max-height: 84vh;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}

/* ===== Portföy vitrini (ana sayfa) ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 36px;
}

.brand-strip {
  margin-top: 66px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-strip-label {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.brand-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 48px;
}

.brand-strip-logos img {
  height: 24px;
  width: auto;
  max-width: 104px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.brand-strip-logos img:hover {
  opacity: 1;
}

.categories a[aria-current="page"] {
  color: var(--green);
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .portfolio-header {
    align-items: start;
  }

  .portfolio-header .portfolio-cta {
    justify-self: start;
  }

  .brand-strip {
    margin-top: 52px;
  }

  .brand-strip-logos {
    gap: 22px 32px;
  }

  .brand-strip-logos img {
    height: 20px;
  }
}

/* ===== Hizmet Listesi — satır tasarımı ===== */
.services-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}



/* ===== Hizmetler — akan slider ===== */
.services-slider {
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.services-track {
  display: flex;
  width: max-content;
  animation: services-marquee 48s linear infinite;
}

.services-slider:hover .services-track {
  animation-play-state: paused;
}

@keyframes services-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-track {
    animation: none;
  }
}

.service-slide {
  flex: 0 0 auto;
  width: 316px;
  margin-right: 18px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  transition: border-color 0.25s ease, background 0.25s ease;
}

.service-slide:hover {
  border-color: rgba(34, 197, 94, 0.42);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.09), rgba(255, 255, 255, 0.02));
}

.service-slide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--green);
  font-size: 19px;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.26);
}

.service-slide h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.service-slide p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .service-slide {
    width: 264px;
    margin-right: 14px;
    padding: 22px;
  }

  .services-track {
    animation-duration: 38s;
  }
}
