@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

    html { scroll-behavior: smooth; }
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Nunito Sans', -apple-system, sans-serif;
      background: #FFFBFA;
      color: #0F172A;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    button, input, textarea { font-family: inherit; }

    .header {
      position: fixed; top: 12px; left: 12px; right: 12px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 64px;
      max-width: 1280px;
      margin: 0 auto;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 20px;
      box-shadow: 0 4px 24px rgba(15,23,42,0.06);
    }

    .logo {
      font-family: 'Varela Round', sans-serif;
      font-size: 22px;
      color: #059669;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav { display: flex; align-items: center; gap: 28px; }

    .nav a {
      font-size: 14px;
      font-weight: 600;
      color: #64748B;
      transition: color 0.2s;
    }
    .nav a:hover { color: #0F172A; }
    .nav a.active { color: #059669; }

    .header-actions { display: flex; align-items: center; gap: 10px; }

    .btn-outline {
      padding: 10px 20px;
      border-radius: 999px;
      border: 1.5px solid #E2E8F0;
      background: transparent;
      color: #1E293B;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #94A3B8; background: #F8FAFC; }

    .btn-primary-nav {
      padding: 10px 22px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #059669, #10B981);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(5,150,105,0.25);
    }
    .btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(5,150,105,0.3); }

    .contact-page {
      min-height: 100dvh;
      padding: 120px clamp(18px, 5vw, 72px) 70px;
      position: relative;
      overflow: hidden;
    }

    .contact-page::before,
    .contact-page::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .45;
      animation: float 7s ease-in-out infinite;
    }

    .contact-page::before {
      width: 240px;
      height: 240px;
      background: #A7F3D0;
      right: 7%;
      top: 15%;
    }

    .contact-page::after {
      width: 180px;
      height: 180px;
      background: #DDD6FE;
      left: 5%;
      bottom: 8%;
      animation-delay: 1.4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .page-head {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 760px;
      margin: 0 auto 42px;
    }

    .badge {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(5,150,105,0.15);
      color: #059669;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .page-head h1 {
      font-family: 'Varela Round', sans-serif;
      font-size: clamp(34px, 6vw, 58px);
      line-height: 1.08;
      color: #0F172A;
      margin-bottom: 14px;
    }

    .page-head p {
      font-size: clamp(14px, 2vw, 18px);
      line-height: 1.7;
      color: #64748B;
    }

    .contact-card {
      position: relative;
      z-index: 2;
      width: min(100%, 1100px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.5);
      box-shadow: 0 24px 64px rgba(15,23,42,0.08);
    }

    .info-panel {
      background: linear-gradient(135deg, #059669, #047857, #065F46);
      color: white;
      padding: clamp(28px, 4vw, 46px);
      position: relative;
      overflow: hidden;
    }

    .info-panel::after {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      right: -80px;
      bottom: -80px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
    }

    .info-panel h2 {
      font-family: 'Varela Round', sans-serif;
      font-size: clamp(24px, 3vw, 32px);
      margin-bottom: 12px;
    }

    .info-panel p {
      color: rgba(255,255,255,.7);
      line-height: 1.7;
      margin-bottom: 38px;
    }

    .info-list {
      display: grid;
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      line-height: 1.6;
      color: rgba(255,255,255,.9);
    }

    .info-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(255,255,255,.13);
      display: grid;
      place-items: center;
      flex: 0 0 42px;
      font-size: 20px;
    }

    .form-panel {
      padding: clamp(28px, 5vw, 52px);
      background: rgba(255,255,255,.88);
    }

    .contact-form {
      display: grid;
      gap: 24px;
    }

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

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

    .field label {
      font-size: 13px;
      font-weight: 800;
      color: #475569;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      background: #F8FAFC;
      padding: 15px 16px;
      font-size: 14px;
      color: #0F172A;
      outline: none;
      transition: .2s ease;
    }

    .field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: #10B981;
      box-shadow: 0 0 0 4px rgba(16,185,129,.12);
      background: white;
    }

    .send-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .send-btn {
      min-height: 54px;
      padding: 0 30px;
      border: none;
      border-radius: 999px;
      background: linear-gradient(135deg, #059669, #10B981);
      color: white;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 18px 40px rgba(5,150,105,.22);
      transition: .25s ease;
    }

    .send-btn:hover {
      transform: translateY(-3px);
    }

    .hint {
      color: #94A3B8;
      font-size: 13px;
      line-height: 1.6;
    }

    .footer {
      background: #0F172A;
      color: white;
      padding: 50px clamp(18px, 5vw, 72px);
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 42px;
    }

    .footer h3 {
      font-family: 'Varela Round', sans-serif;
      font-size: 28px;
      margin-bottom: 14px;
    }

    .footer p,
    .footer a {
      color: rgba(255,255,255,.68);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .newsletter input {
      height: 44px;
      width: 260px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: white;
      padding: 0 16px;
      outline: none;
    }

    .toast {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 999;
      background: #059669;
      color: white;
      padding: 14px 20px;
      border-radius: 12px;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: .3s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .hamburger {
      display: none;
      width: 40px; height: 40px;
      border: none; background: transparent;
      flex-direction: column; gap: 5px;
      justify-content: center; cursor: pointer;
    }
    .hamburger span { width: 22px; height: 2px; background: #1E293B; border-radius: 2px; }

    @media (max-width: 980px) {
      .contact-card {
        grid-template-columns: 1fr;
      }

      .footer {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .header { top: 8px; left: 8px; right: 8px; padding: 0 16px; height: 56px; border-radius: 14px; }

      .nav {
        position: fixed; inset: 64px 8px auto 8px;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(16px);
        border: 1px solid #F1F5F9;
        border-radius: 16px;
        flex-direction: column; padding: 24px;
        transform: translateY(-120%);
        transition: 0.3s ease;
        gap: 16px;
        box-shadow: 0 16px 48px rgba(15,23,42,0.1);
      }
      .nav.open { transform: translateY(0); }

      .header-actions { display: none; }
      .hamburger { display: flex; }

      .contact-page {
        padding-top: 100px;
      }

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

      .send-row {
        flex-direction: column;
        align-items: stretch;
      }

      .send-btn {
        width: 100%;
      }

      .footer {
        text-align: center;
      }

      .newsletter input {
        width: 100%;
      }
    }
