:root {
  --dark: #052e2c;
  --dark-2: #063938;
  --muted: #98bfb6;
  --accent: #38d074;
  --white: #ffffff;
  --card: #f7f7f8;
  --glass: rgba(255, 255, 255, 0.06);
  --max-width: 1400px;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(2, 10, 10, 0.5);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--dark) 0%, #062f2e 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  scroll-behavior: smooth;
}

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

.site-header {
  position: relative;
  top: 0;
  z-index: 60;
  background: transparent;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-text {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(56, 208, 116, 0.1);
  color: var(--accent);
}

.btn {
  padding: 11px 22px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s ease;
  font-weight: 700;
  font-size: 14px;
}

.btn.primary {
  background: linear-gradient(180deg, var(--accent), #2ec36a);
  color: #052e2c;
  box-shadow: 0 12px 30px rgba(56, 208, 116, 0.12);
}

.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(56, 208, 116, 0.22);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.large {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
}

.mobile-cta {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  font-size: 18px;
  flex-shrink: 0;
}

.hero {
  padding: 30px 0 40px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding: 20px 0;
}

.hero-title {
  font-size: 64px;
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero-sub {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.portrait-card {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  border-radius: 28px;
  overflow: visible;
}

.portrait {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.portrait-card:hover .portrait {
  transform: scale(1.02) translateY(-8px);
}

.hero-right {
  display: block;
}

.hero-right-mobile {
  display: none;
  width: 100%;
}

.portrait-card-mobile {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
}

.portrait-mobile {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.portrait-card-mobile:hover .portrait-mobile {
  transform: scale(1.02) translateY(-8px);
}

.info-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-badge .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(56, 208, 116, 0.2), rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-title {
  font-weight: 700;
  font-size: 14px;
}

.info-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.white-section {
  background: var(--white);
  color: #0b1414;
  padding: 70px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 40px;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.section-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.white-section .section-title {
  color: #0b1414;
}

.white-section .section-lead {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.service-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(12, 18, 20, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(6, 20, 18, 0.1);
  filter: brightness(1.02);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(180deg, #e9f6f0, #f9fffb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 10px 0;
  font-size: 17px;
  color: #0b1414;
}

.service-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.dark-section {
  background: var(--dark-2);
  padding: 70px 0;
  color: var(--white);
  margin-top: 20px;
  border-radius: 12px;
}

.dark-section .section-title {
  color: var(--white);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}

.compare-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.compare-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.compare-card h4 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: var(--white);
}

.compare-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.compare-card li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-card li:last-child {
  border-bottom: none;
}

.compare-card.highlight {
  background: linear-gradient(180deg, rgba(56, 208, 116, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(56, 208, 116, 0.25);
  box-shadow: 0 0 20px rgba(56, 208, 116, 0.1);
}

.compare-card.highlight:hover {
  box-shadow: 0 22px 50px rgba(56, 208, 116, 0.2);
}

.why-right-section {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.03));
  margin-top: 20px;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(18px);
}

.why-right-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2, 8, 8, 0.4);
}

.why-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover .why-main {
  transform: scale(1.04) translateY(-8px);
}

.badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.badge-left {
  left: 18px;
  bottom: 18px;
}

.badge-right {
  right: 18px;
  top: 18px;
  width: 200px;
  flex-direction: column;
  text-align: left;
}

.badge-icon {
  font-size: 20px;
}

.badge-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.why-copy h2 {
  margin: 0 0 16px 0;
  font-size: 32px;
  color: var(--white);
  font-weight: 800;
}

.why-copy p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 16px;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.9);
}

.why-points li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.why-points strong {
  color: var(--accent);
}

.why-ctas {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(2, 8, 10, 0.08);
  color: #000;
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(2, 8, 10, 0.15);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  text-align: center;
}

.team-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #0b1414;
}

.team-info span {
  display: block;
  color: #888;
  font-size: 13px;
  font-weight: 500;
}

.accordion {
  max-width: 100%;
  margin: 30px auto 0;
}

.acc-item {
  background: #f5f5f6;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.acc-item:hover {
  box-shadow: 0 12px 30px rgba(2, 8, 10, 0.07);
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #0b1414;
  transition: all 0.22s ease;
}

.acc-btn:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--accent);
}

.acc-btn span {
  font-size: 20px;
  font-weight: 700;
}

.acc-panel {
  padding: 0 22px 16px 22px;
  display: none;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  margin: 50px 0;
  padding: 50px 0;
  border-radius: 20px;
}

.cta-inner {
  text-align: center;
  color: var(--white);
}

.cta-inner h2 {
  font-size: 32px;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.cta-inner p.small {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: linear-gradient(180deg, #021717, #001212);
  padding: 50px 0 20px 0;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer h4 {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.site-footer a:hover {
  color: #00ffcc;
  text-shadow: 0 0 8px rgba(56, 208, 116, 0.4);
}

.footer-social {
  text-align: center;
  margin-bottom: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin: 0 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hoverable {
  cursor: pointer;
  will-change: transform;
}

.no-scroll {
  overflow: hidden;
}

/* ========== TABLET & BELOW ========== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right {
    display: none !important;
  }

  .hero-right-mobile {
    display: block !important;
  }

  .hero-title {
    font-size: 52px;
  }

  .why-right-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    order: 2;
  }

  .why-image-wrap {
    order: 1;
    margin-bottom: 20px;
  }

  .why-main {
    height: 400px;
  }

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

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

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .why-ctas {
    flex-direction: column;
  }

  .why-ctas .btn {
    width: 100%;
  }

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

/* ========== MOBILE 768px ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    padding: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-text {
    font-size: 11px;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .top-nav {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .hero {
    padding: 20px 0 30px 0;
  }

  .hero-left {
    padding: 15px 0;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-ctas {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-features {
    margin-top: 20px;
    gap: 8px;
    font-size: 13px;
  }

  .hero-right {
    display: none !important;
  }

  .hero-right-mobile {
    display: block !important;
    width: 100%;
  }

  .portrait-mobile {
    height: 300px;
  }

  .white-section {
    padding: 50px 0;
    margin-top: 30px;
    border-radius: 24px 24px 0 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-lead {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    padding: 20px;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .dark-section {
    padding: 50px 0;
    margin-top: 10px;
  }

  .compare-grid {
    gap: 14px;
    margin-top: 20px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-card h4 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .compare-card li {
    padding: 6px 0;
    font-size: 13px;
  }

  .why-right-section {
    padding: 50px 0;
    margin-top: 10px;
  }

  .why-copy h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .why-copy p {
    font-size: 14px;
  }

  .why-points {
    margin: 18px 0;
  }

  .why-points li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .why-ctas {
    margin-top: 18px;
    gap: 10px;
  }

  .why-main {
    height: 300px;
  }

  .badge {
    padding: 10px 12px;
    font-size: 12px;
  }

  .badge-right {
    width: auto;
    gap: 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-card img {
    height: 220px;
  }

  .accordion {
    margin-top: 20px;
  }

  .acc-btn {
    padding: 16px 16px;
    font-size: 14px;
  }

  .acc-panel {
    padding: 0 16px 12px 16px;
    font-size: 13px;
  }

  .cta-section {
    margin: 40px 0;
    padding: 40px 0;
  }

  .cta-inner h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .cta-inner p.small {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .site-footer {
    padding: 40px 0 16px 0;
  }

  .footer-grid {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  .logo-footer {
    margin: 0 auto 12px auto;
    display: block;
  }

  .site-footer h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .site-footer p {
    font-size: 13px;
    margin: 6px 0;
  }

  .site-footer ul li {
    font-size: 13px;
    padding: 4px 0;
  }

  .footer-social {
    margin-bottom: 16px;
  }

  .footer-social a {
    font-size: 18px;
    margin: 0 12px;
  }

  .copyright {
    padding: 12px 0;
    font-size: 12px;
  }
}

/* ========== SMALL MOBILE 480px ========== */
@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

  .hero {
    padding: 20px 0 20px 0;
  }

  .hero-left {
    padding: 10px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 14px;
    margin-top: 12px;
  }

  .hero-ctas {
    margin-top: 16px;
    gap: 8px;
  }

  .btn.large {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-cta {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-features {
    margin-top: 16px;
    font-size: 12px;
    gap: 6px;
  }

  .portrait-mobile {
    height: 240px;
  }

  .white-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-lead {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .service-card {
    padding: 16px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
  }

  .compare-card {
    padding: 16px;
  }

  .compare-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .why-copy h2 {
    font-size: 22px;
  }

  .why-copy p {
    font-size: 13px;
  }

  .why-points li {
    font-size: 12px;
  }

  .why-main {
    height: 240px;
  }

  .team-card img {
    height: 180px;
  }

  .team-info strong {
    font-size: 14px;
  }

  .team-info span {
    font-size: 12px;
  }

  .cta-inner h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .cta-inner p.small {
    font-size: 13px;
  }

  .footer-grid {
    gap: 16px;
    text-align: center;
  }

  .logo-footer {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    display: block;
  }
}
:root {
  --dark: #052e2c;
  --dark-2: #063938;
  --muted: #98bfb6;
  --accent: #38d074;
  --white: #ffffff;
  --card: #f7f7f8;
  --glass: rgba(255, 255, 255, 0.06);
  --max-width: 1400px;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(2, 10, 10, 0.5);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--dark) 0%, #062f2e 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  scroll-behavior: smooth;
}

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

.site-header {
  position: relative;
  top: 0;
  z-index: 60;
  background: transparent;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-text {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(56, 208, 116, 0.1);
  color: var(--accent);
}

.btn {
  padding: 11px 22px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s ease;
  font-weight: 700;
  font-size: 14px;
}

.btn.primary {
  background: linear-gradient(180deg, var(--accent), #2ec36a);
  color: #052e2c;
  box-shadow: 0 12px 30px rgba(56, 208, 116, 0.12);
}

.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(56, 208, 116, 0.22);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.large {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
}

.mobile-cta {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  font-size: 18px;
  flex-shrink: 0;
}

.hero {
  padding: 30px 0 40px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding: 20px 0;
}

.hero-title {
  font-size: 64px;
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero-sub {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.portrait-card {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  border-radius: 28px;
  overflow: visible;
}

.portrait {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.portrait-card:hover .portrait {
  transform: scale(1.02) translateY(-8px);
}

.hero-right {
  display: block;
}

.hero-right-mobile {
  display: none;
  width: 100%;
}

.portrait-card-mobile {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
}

.portrait-mobile {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.portrait-card-mobile:hover .portrait-mobile {
  transform: scale(1.02) translateY(-8px);
}

.info-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-badge .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(56, 208, 116, 0.2), rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-title {
  font-weight: 700;
  font-size: 14px;
}

.info-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.white-section {
  background: var(--white);
  color: #0b1414;
  padding: 70px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 40px;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.section-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.white-section .section-title {
  color: #0b1414;
}

.white-section .section-lead {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.service-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(12, 18, 20, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(6, 20, 18, 0.1);
  filter: brightness(1.02);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(180deg, #e9f6f0, #f9fffb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 10px 0;
  font-size: 17px;
  color: #0b1414;
}

.service-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.dark-section {
  background: var(--dark-2);
  padding: 70px 0;
  color: var(--white);
  margin-top: 20px;
  border-radius: 12px;
}

.dark-section .section-title {
  color: var(--white);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}

.compare-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.compare-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.compare-card h4 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: var(--white);
}

.compare-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.compare-card li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-card li:last-child {
  border-bottom: none;
}

.compare-card.highlight {
  background: linear-gradient(180deg, rgba(56, 208, 116, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(56, 208, 116, 0.25);
  box-shadow: 0 0 20px rgba(56, 208, 116, 0.1);
}

.compare-card.highlight:hover {
  box-shadow: 0 22px 50px rgba(56, 208, 116, 0.2);
}

.why-right-section {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.03));
  margin-top: 20px;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(18px);
}

.why-right-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2, 8, 8, 0.4);
}

.why-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover .why-main {
  transform: scale(1.04) translateY(-8px);
}

.badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.badge-left {
  left: 18px;
  bottom: 18px;
}

.badge-right {
  right: 18px;
  top: 18px;
  width: 200px;
  flex-direction: column;
  text-align: left;
}

.badge-icon {
  font-size: 20px;
}

.badge-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.why-copy h2 {
  margin: 0 0 16px 0;
  font-size: 32px;
  color: var(--white);
  font-weight: 800;
}

.why-copy p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 16px;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.9);
}

.why-points li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.why-points strong {
  color: var(--accent);
}

.why-ctas {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(2, 8, 10, 0.08);
  color: #000;
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(2, 8, 10, 0.15);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  text-align: center;
}

.team-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #0b1414;
}

.team-info span {
  display: block;
  color: #888;
  font-size: 13px;
  font-weight: 500;
}

.accordion {
  max-width: 100%;
  margin: 30px auto 0;
}

.acc-item {
  background: #f5f5f6;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.22s ease;
  opacity: 0;
  transform: translateY(18px);
}

.acc-item:hover {
  box-shadow: 0 12px 30px rgba(2, 8, 10, 0.07);
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #0b1414;
  transition: all 0.22s ease;
}

.acc-btn:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--accent);
}

.acc-btn span {
  font-size: 20px;
  font-weight: 700;
}

.acc-panel {
  padding: 0 22px 16px 22px;
  display: none;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  margin: 50px 0;
  padding: 50px 0;
  border-radius: 20px;
}

.cta-inner {
  text-align: center;
  color: var(--white);
}

.cta-inner h2 {
  font-size: 32px;
  margin: 0 0 12px 0;
  font-weight: 800;
}

.cta-inner p.small {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: linear-gradient(180deg, #021717, #001212);
  padding: 50px 0 20px 0;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer h4 {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.site-footer a:hover {
  color: #00ffcc;
  text-shadow: 0 0 8px rgba(56, 208, 116, 0.4);
}

.footer-social {
  text-align: center;
  margin-bottom: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin: 0 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hoverable {
  cursor: pointer;
  will-change: transform;
}

.no-scroll {
  overflow: hidden;
}

/* ========== TABLET & BELOW ========== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right {
    display: none !important;
  }

  .hero-right-mobile {
    display: block !important;
  }

  .hero-title {
    font-size: 52px;
  }

  .why-right-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    order: 2;
  }

  .why-image-wrap {
    order: 1;
    margin-bottom: 20px;
  }

  .why-main {
    height: 400px;
  }

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

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

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .why-ctas {
    flex-direction: column;
  }

  .why-ctas .btn {
    width: 100%;
  }

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

/* ========== MOBILE 768px ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    padding: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-text {
    font-size: 11px;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .top-nav {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .hero {
    padding: 20px 0 30px 0;
  }

  .hero-left {
    padding: 15px 0;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-ctas {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-features {
    margin-top: 20px;
    gap: 8px;
    font-size: 13px;
  }

  .hero-right {
    display: none !important;
  }

  .hero-right-mobile {
    display: block !important;
    width: 100%;
  }

  .portrait-mobile {
    height: 300px;
  }

  .white-section {
    padding: 50px 0;
    margin-top: 30px;
    border-radius: 24px 24px 0 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-lead {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    padding: 20px;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .dark-section {
    padding: 50px 0;
    margin-top: 10px;
  }

  .compare-grid {
    gap: 14px;
    margin-top: 20px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-card h4 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .compare-card li {
    padding: 6px 0;
    font-size: 13px;
  }

  .why-right-section {
    padding: 50px 0;
    margin-top: 10px;
  }

  .why-copy h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .why-copy p {
    font-size: 14px;
  }

  .why-points {
    margin: 18px 0;
  }

  .why-points li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .why-ctas {
    margin-top: 18px;
    gap: 10px;
  }

  .why-main {
    height: 300px;
  }

  .badge {
    padding: 10px 12px;
    font-size: 12px;
  }

  .badge-right {
    width: auto;
    gap: 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-card img {
    height: 220px;
  }

  .accordion {
    margin-top: 20px;
  }

  .acc-btn {
    padding: 16px 16px;
    font-size: 14px;
  }

  .acc-panel {
    padding: 0 16px 12px 16px;
    font-size: 13px;
  }

  .cta-section {
    margin: 40px 0;
    padding: 40px 0;
  }

  .cta-inner h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .cta-inner p.small {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .site-footer {
    padding: 40px 0 16px 0;
  }

  .footer-grid {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  .logo-footer {
    margin: 0 auto 12px auto;
    display: block;
  }

  .site-footer h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .site-footer p {
    font-size: 13px;
    margin: 6px 0;
  }

  .site-footer ul li {
    font-size: 13px;
    padding: 4px 0;
  }

  .footer-social {
    margin-bottom: 16px;
  }

  .footer-social a {
    font-size: 18px;
    margin: 0 12px;
  }

  .copyright {
    padding: 12px 0;
    font-size: 12px;
  }
}

/* ========== SMALL MOBILE 480px ========== */
@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

  .hero {
    padding: 20px 0 20px 0;
  }

  .hero-left {
    padding: 10px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 14px;
    margin-top: 12px;
  }

  .hero-ctas {
    margin-top: 16px;
    gap: 8px;
  }

  .btn.large {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-cta {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-features {
    margin-top: 16px;
    font-size: 12px;
    gap: 6px;
  }

  .portrait-mobile {
    height: 240px;
  }

  .white-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-lead {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .service-card {
    padding: 16px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
  }

  .compare-card {
    padding: 16px;
  }

  .compare-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .why-copy h2 {
    font-size: 22px;
  }

  .why-copy p {
    font-size: 13px;
  }

  .why-points li {
    font-size: 12px;
  }

  .why-main {
    height: 240px;
  }

  .team-card img {
    height: 180px;
  }

  .team-info strong {
    font-size: 14px;
  }

  .team-info span {
    font-size: 12px;
  }

  .cta-inner h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .cta-inner p.small {
    font-size: 13px;
  }

  .footer-grid {
    gap: 16px;
    text-align: center;
  }

  .logo-footer {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    display: block;
  }
}
