:root {
  --electric-teal: #0E0BC7;
  --tech-purple: #8011B4;
  --midnight-navy: #09071A;
  --stark-white: #FFFFFF;
  --silicon-grey: #9F9FA9;
  --brand-gradient: linear-gradient(45deg, var(--electric-teal), var(--tech-purple));
  --accent-green: #9EDC2A;
  --bg-color: #f4f4f8;
  --card-bg: #fafafa;
  --border-color: #eaeaea;
}

body.standard-page .header {
  height: 80px;
  background-color: var(--stark-white);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(9, 7, 26, 0.05);
}

body.standard-page .hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  margin-left: -10px;
  z-index: 1001;
}

body.standard-page .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--midnight-navy);
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

body.standard-page .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.standard-page .hamburger.active span:nth-child(2) {
  opacity: 0;
}

body.standard-page .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.standard-page .logo-container {
  display: flex;
  align-items: center;
  margin-left: 16px;
  gap: 10px;
  text-decoration: none;
}

body.standard-page .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--midnight-navy);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

body.standard-page .logo-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--silicon-grey);
  text-transform: uppercase;
  font-weight: 600;
}

body.standard-page .container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--stark-white);
  min-height: 100vh;
  padding: 40px 24px 60px 24px;
  box-sizing: border-box;
  box-shadow: 0 0 40px rgba(9, 7, 26, 0.08);
  position: relative;
  overflow-x: hidden;
}

body.standard-page .header-actions {
  display: none;
}

body.standard-page .mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--stark-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(9, 7, 26, 0.1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

body.standard-page .mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

body.standard-page .mobile-menu a {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--midnight-navy);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.standard-page .mobile-menu a:active {
  background-color: var(--card-bg);
}

body.standard-page .mobile-menu a:last-child {
  border-bottom: none;
}

body.standard-page .mobile-menu a::after {
  content: '\2192';
  color: var(--tech-purple);
  font-family: 'Montserrat', sans-serif;
  opacity: 0.5;
}

body.standard-page .footer {
  background: var(--midnight-navy);
  color: var(--stark-white);
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

body.standard-page .sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

body.standard-page .sitemap h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--silicon-grey);
  margin-top: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.standard-page .sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.standard-page .sitemap li {
  margin-bottom: 12px;
}

body.standard-page .sitemap a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

body.standard-page .sitemap a:hover {
  color: var(--stark-white);
}

body.standard-page .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 12px;
  color: var(--silicon-grey);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.standard-page .footer-bottom a {
  color: var(--silicon-grey);
  text-decoration: none;
}

body.standard-page .footer-bottom a:hover {
  color: var(--stark-white);
}

body.standard-page .footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.standard-page .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.standard-page .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 24px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

body.standard-page .whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

body.standard-page .whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

body.standard-page :where(.btn-primary, .btn-secondary) {
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.1s, box-shadow 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

body.standard-page :where(.btn-primary, .btn-secondary):active {
  transform: scale(0.97);
}

body.standard-page :where(.btn-primary) {
  background: var(--accent-green);
  color: var(--midnight-navy);
  box-shadow: 0 4px 15px rgba(158, 220, 42, 0.3);
}

body.standard-page :where(.btn-secondary) {
  background: var(--stark-white);
  color: var(--midnight-navy);
  border: 1px solid var(--border-color);
}

body.standard-page .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

body.standard-page .carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

body.standard-page .nav-arrow {
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  color: var(--midnight-navy);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(9, 7, 26, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

body.standard-page .nav-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(9, 7, 26, 0.15);
}

body.standard-page .nav-arrow.left-arrow {
  left: -22px;
}

body.standard-page .nav-arrow.right-arrow {
  right: -22px;
}

body.standard-page .blog-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
}

body.standard-page .blog-carousel.active {
  cursor: grabbing;
}

body.standard-page .blog-carousel::-webkit-scrollbar {
  display: none;
}

body.standard-page .blog-card {
  background: var(--stark-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

body.standard-page .blog-carousel .blog-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
}

body.standard-page .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(9, 7, 26, 0.08);
}

body.standard-page .blog-image-link {
  display: block;
  line-height: 0;
}

body.standard-page .blog-image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

body.standard-page .blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.standard-page .blog-card-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--midnight-navy);
}

body.standard-page .blog-card-text {
  margin: 0 0 24px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

body.standard-page .blog-link {
  font-size: 14px;
  color: var(--electric-teal);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.standard-page .blog-link:hover {
  color: var(--tech-purple);
}

@media (max-width: 767px) {
  body.standard-page .nav-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  body.standard-page .container {
    max-width: 1000px;
    border-radius: 24px;
    margin-top: 24px;
    margin-bottom: 64px;
    padding: 60px 80px 100px 80px;
    min-height: auto;
  }

  body.standard-page .footer {
    max-width: 1000px;
    border-radius: 24px;
    margin-bottom: 64px;
    padding: 80px 64px;
  }

  body.standard-page .sitemap {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
  }

  body.standard-page .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  body.standard-page .whatsapp-float {
    bottom: 40px;
    right: 40px;
  }

  body.standard-page .blog-carousel {
    flex-wrap: nowrap;
    gap: 32px;
    padding-bottom: 24px;
  }

  body.standard-page .blog-carousel .blog-card {
    flex: 0 0 320px;
  }
}

@media (min-width: 1360px) {
  body.standard-page .header {
    padding: 0 12px;
  }

  body.standard-page .logo-container {
    margin-left: 0;
    gap: 8px;
  }

  body.standard-page .logo-container svg {
    width: 32px;
    height: 32px;
  }

  body.standard-page .logo-text {
    font-size: 15px;
  }

  body.standard-page .logo-subtext {
    font-size: 6.5px;
    letter-spacing: 0.6px;
  }

  body.standard-page .header-actions {
    display: flex;
    margin-left: auto;
    gap: 6px;
    align-items: center;
  }

  body.standard-page .header-actions > a {
    font-size: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    white-space: nowrap;
  }

  body.standard-page .btn-header {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
    box-shadow: none;
    width: auto;
    white-space: nowrap;
  }

  body.standard-page .btn-header svg {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  body.standard-page .header {
    padding: 0 24px;
  }

  body.standard-page .logo-container {
    margin-left: 16px;
    gap: 10px;
  }

  body.standard-page .logo-container svg {
    width: 36px;
    height: 36px;
  }

  body.standard-page .logo-text {
    font-size: 18px;
  }

  body.standard-page .logo-subtext {
    font-size: 8px;
    letter-spacing: 1px;
  }

  body.standard-page .header-actions {
    gap: 10px;
  }

  body.standard-page .header-actions > a {
    font-size: 13px !important;
  }

  body.standard-page .btn-header {
    padding: 10px 14px;
    font-size: 13px;
  }

  body.standard-page .btn-header svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1360px) {
  body.standard-page .header {
    padding: 0 48px;
  }

  body.standard-page .header-actions {
    gap: 16px;
  }

  body.standard-page .btn-header {
    padding: 10px 20px;
  }
}
