    
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;700&display=swap');

/* Responsivitas Komprehensif */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 4%;
  }

  .hero {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-image {
    order: 2;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  md-filled-button, 
  md-outlined-button {
    width: 100%;
    max-width: 300px;
  }

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

@media screen and (max-width: 768px) {
  .container {
    padding: 0 3%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
  }

  .integration-logos {
    gap: 20px;
  }

  .integration-logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-buttons md-filled-button,
  .hero-buttons md-outlined-button {
    width: 100%;
  }
}

/* Tambahan untuk touchscreen dan perangkat kecil */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .pricing-card:hover {
    transform: none;
    box-shadow: none;
  }

  .navbar-menu {
    display: none;
  }

  /* Tambahkan hamburger menu untuk mobile */
  .navbar {
    position: relative;
  }

  .navbar-toggle {
    display: block;
    cursor: pointer;
  }
}

/* Optimasi Teks Responsif */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px; /* Kurangi ukuran font dasar untuk layar kecil */
  }
}

  /* Tambahkan hamburger menu */
.navbar-toggle {
  display: none;
  cursor: pointer;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 30px;
}

.sidebar-menu.open {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}


.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.sidebar-content a {
  text-decoration: none;
  color: var(--gray-color);
  font-weight: 500;
  transition: color 0.3s;
}

.sidebar-content a:hover {
  color: var(--primary-color);
}

.sidebar-content md-filled-button {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-toggle .material-symbols-outlined {
    font-size: 30px;
    color: var(--primary-color);
  }
}


@media screen and (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 992px) {
  .sidebar-menu {
    display: block;
  }
}

/* Overlay untuk sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.sidebar-overlay.open {
  display: block;
}

@media screen and (max-width: 480px) {
  md-filled-button, 
  md-outlined-button {
    --md-filled-button-container-height: 48px;
    width: 100%;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


:root {
  --primary-color: #1a73e8;
  --secondary-color: #34a853;
  --background-color: #ffffff;
  --text-color: #202124;
  --gray-color: #5f6368;
}


* {
  font-family: 'Google Sans', Arial, sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Google Sans", Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 5%;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #dadce0;
  position: relative;
}

.navbar-brand {
display: flex;
align-items: center;
font-weight: 500;
color: var(--primary-color);
font-size: 1.25rem;
}

.navbar-menu {
display: flex;
align-items: center;
gap: 20px;
}

.navbar-menu a {
text-decoration: none;
color: var(--gray-color);
font-weight: 500;
transition: color 0.3s;
}

.navbar-menu a:hover {
color: var(--primary-color);
}

/* Hero Section */
.hero {
display: flex;
align-items: center;
gap: 60px;
padding: 100px 0;
}

.hero-content {
flex: 1;
}

.hero-image {
flex: 1;
position: relative;
}

.hero-image img {
width: 100%;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-title {
position: relative;
font-size: 3rem;
display: inline-block;
overflow: hidden;

}

.hero-title-dynamic-container {
position: relative;
display: inline-block;
width: 250px;
height: 1.2em;
overflow: hidden;
}

.hero-title-highlight {
color: var(--primary-color);
font-weight: 700;
}

.hero-title-dynamic {
position: absolute;
left: 0;
width: 100%;
opacity: 1;
color: var(--primary-color);
transition: 
transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
opacity 0.5s ease;
}

.hero-title-dynamic.slide-up {
transform: translateY(-100%);
opacity: 0;
}


.hero-title-dynamic.slide-down {
transform: translateY(100%);
opacity: 0;
}

.hero-title-dynamic.active {
transform: translateY(0);
opacity: 1;
}


.hero-title-dynamic .word-swap {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
transform: translateY(100%);
transition: opacity 0.5s ease, transform 0.5s ease;
color: var(--primary-color);
}

.hero-title-dynamic .word-swap.active {
opacity: 1;
transform: translateY(0);
}

.hero-title-dynamic .word-swap.exit {
opacity: 0;
transform: translateY(-100%);
}

.hero-subtitle {
font-size: 1.125rem;
color: var(--gray-color);
margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
display: flex;
gap: 20px;
}

md-filled-button, 
md-outlined-button {
--md-sys-color-primary: #1A73E8;
--md-filled-button-container-height: 56px;
--md-outlined-button-container-height: 56px;
width: 250px;
letter-spacing: 0.5px;
border-radius: 1100px;

/* Tambahkan properti font secara eksplisit */
--md-filled-button-label-text-font: 'Google Sans', Arial, sans-serif;
--md-outlined-button-label-text-font: 'Google Sans', Arial, sans-serif;

font-family: 'Google Sans', Arial, sans-serif !important;
font-size: 1rem;
font-weight: 500;

}

md-filled-button::part(button),
md-outlined-button::part(button) {
font-family: 'Google Sans', Arial, sans-serif !important;
}


/* Features */
.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
padding: 80px 0;
}

.feature-card {
background-color: #f8f9fa;
border-radius: 16px;
padding: 30px;
text-align: center;
transition: transform 0.3s;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.feature-title {
font-size: 1.5rem;
font-weight: 500;
margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
background-color: #f8f9fa;
text-align: center;
padding: 100px 0;
border-radius: 16px;
}

.cta-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
}

.cta-description {
max-width: 800px;
margin: 0 auto 30px;
color: var(--gray-color);
}

.solution-section,
.integration-section,
.testimonial-section,
.pricing-section {
padding: 100px 0;
text-align: center;
}

.section-title {
font-weight: 700;
margin-bottom: 30px;
}

.section-description {
max-width: 800px;
margin: 0 auto 50px;
color: var(--gray-color);
}

/* Solutions Grid */
.solutions-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.solution-card {
background-color: #f8f9fa;
border-radius: 16px;
padding: 30px;
text-align: left;
transition: all 0.3s ease;
}

.solution-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--primary-color);
}

/* Integration Logos */
.integration-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
flex-wrap: wrap;
}

.integration-logo {
filter: grayscale(100%);
opacity: 0.6;
transition: all 0.3s ease;
}

.integration-logo:hover {
filter: grayscale(0%);
opacity: 1;
}

/* Testimonial Carousel */
.testimonial-carousel {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
}

.testimonial-card {
max-width: 500px;
background-color: #f8f9fa;
border-radius: 16px;
padding: 30px;
text-align: left;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  width: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.pricing-card-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  font-size: 1rem;
  color: var(--gray-color);
  margin-left: 5px;
}

.pricing-card-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--gray-color);
}

.pricing-feature md-icon {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.pricing-cta {
  width: 100%;
}

/* Material Icons */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined, 
.material-symbols {
  font-family: 'Material Symbols Outlined' !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.pricing-feature .material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Smooth Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.pricing-card,
.testimonial-card {
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: backwards;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Scroll Reveal Animation */
.feature-card,
.pricing-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.6s ease-out, 
    transform 0.6s ease-out;
}

.feature-card.visible,
.pricing-card.visible,
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}