* { box-sizing: border-box; }

body.t360-site {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background: #f8fafc;
  margin: 0;
}

.t360-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.t360-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.t360-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.t360-logo img {
  width: 42px;
  height: 42px;
}

.t360-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.t360-logo-text .brand {
  font-size: 20px;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: 0.2px;
}

.t360-logo-text .tag {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.t360-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.t360-nav a {
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s;
}

.t360-nav a:hover {
  color: #0f766e;
}

.t360-nav a:not(.t360-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: width 0.25s;
}

.t360-nav a:not(.t360-cta):hover::after {
  width: 100%;
}

.t360-cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.t360-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.45);
}

.t360-cta::after {
  display: none !important;
}

.t360-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  color: #0f766e;
  line-height: 1;
}

.t360-main {
  min-height: 40vh;
}

.t360-footer {
  background: linear-gradient(135deg, #0f3a4a, #0e6b6b);
  color: #cbd5e1;
  padding: 56px 24px 20px;
}

.t360-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.t360-footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t360-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

.t360-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t360-footer ul li {
  margin-bottom: 10px;
}

.t360-footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.t360-footer ul li a:hover {
  color: #5eead4;
}

.t360-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.t360-footer-brand img {
  width: 40px;
  height: 40px;
}

.t360-footer-brand span {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.t360-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.t360-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.t360-social a:hover {
  background: #14b8a6;
}

.t360-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.t360-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}

.t360-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.t360-footer-bottom a:hover {
  color: #5eead4;
}

@media (max-width: 900px) {
  .t360-burger {
    display: block;
  }

  .t360-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .t360-nav.open {
    display: flex;
  }

  .t360-nav a {
    width: 100%;
    padding: 12px 24px;
  }

  .t360-cta {
    margin: 10px 24px;
    text-align: center;
  }

  .t360-header {
    position: relative;
  }
}

@media (max-width: 800px) {
  .t360-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .t360-footer-inner {
    grid-template-columns: 1fr;
  }
}
