@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  --primary: #3858e9; /* The exact AMZ blue */
  --gradient-primary: linear-gradient(90deg, #c400ff, #009dff);
  --bg-dark: #1E1E1E;
  --bg-darker: #15161A;
  --bg-blue: #3858e9;
  --text-white: #FFFFFF;
  --text-grey: #666666;
  --font-main: 'Inter', sans-serif;
}

.text-gradient-animate {
  background: linear-gradient(90deg, #c400ff, #009dff, #3858e9, #009dff, #c400ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #FFFFFF; /* Main background is white for most sections */
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background: url('assets/images/hero-bg.png') no-repeat center center/cover;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: grayscale(100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end; /* Align to bottom */
  padding-bottom: 50px;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
  margin: 0;
}
.hero h1 .text-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .btn {
  display: inline-block;
  border: 1px solid var(--text-white);
  color: var(--text-white);
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
  transition: all 0.3s;
}
.hero .btn:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

/* --- VS Section (Dark + Diagonal Blue) --- */
.vs-section {
  background-color: #212326;
  position: relative;
  padding: 100px 0;
  color: var(--text-white);
  overflow: hidden;
}
.vs-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -10%;
  width: 120%;
  height: 300px;
  background: var(--gradient-primary);
  transform: rotate(-6deg);
  transform-origin: bottom right;
  z-index: 1;
}
.vs-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vs-top {
  align-self: flex-start;
  max-width: 400px;
}
.vs-bottom {
  align-self: flex-end;
  max-width: 400px;
  text-align: right;
  margin-top: 50px;
}
.vs-center {
  font-size: 5rem;
  font-weight: 800;
  font-style: italic;
  margin: 20px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vs-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.vs-section p {
  font-size: 0.9rem;
  color: #ccc;
}

/* --- Blue Banner --- */
.blue-banner {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 2; /* Sit above the diagonal */
}
.blue-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.blue-banner p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* --- White Section Generic --- */
.section-white {
  background-color: #FFFFFF;
  padding: 100px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #212326;
}
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto 50px;
}

/* --- Image Left / Text Right --- */
.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.split-image {
  flex: 1;
}
.split-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.split-text {
  flex: 1;
}
.split-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #212326;
}
.split-text p {
  color: var(--text-grey);
  margin-bottom: 15px;
  font-size: 1rem;
}

/* --- Services (Text Left, Image Right) --- */
.services-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.services-list {
  flex: 1;
}
.service-list-item {
  margin-bottom: 30px;
}
.service-list-item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.service-list-item .icon i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-list-item .icon img {
  width: 100%;
}
.service-list-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #212326;
}
.service-list-item p {
  font-size: 0.9rem;
  color: var(--text-grey);
}
.link-primary {
  display: inline-block;
  margin-top: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.services-image {
  flex: 1;
}
.services-image img {
  width: 100%;
}

/* --- Struggles Grid (Testimonials Style) --- */
.struggles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.struggle-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.struggle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.struggle-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.struggle-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.struggle-card h4 {
  font-size: 1rem;
  color: #212326;
}
.struggle-card p {
  font-size: 0.9rem;
  color: var(--text-grey);
}

/* --- Experts Stats Section --- */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.expert-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #212326;
  margin-bottom: 5px;
}
.expert-stat p {
  font-size: 0.85rem;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.expert-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Schedule Call / Footer --- */
.schedule-section {
  background-color: #1E1E1E;
  color: var(--text-white);
  padding: 80px 0;
}
.schedule-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}
.schedule-left {
  flex: 1;
}
.schedule-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.schedule-left p {
  color: #A3A3A3;
  font-size: 0.95rem;
}
.schedule-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.schedule-item p.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #A3A3A3;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.schedule-item p.value {
  font-size: 1.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

@media (max-width: 900px) {
  .split-layout, .services-layout, .schedule-grid {
    flex-direction: column;
  }
  .struggles-grid, .experts-grid {
    grid-template-columns: 1fr;
  }
  .vs-center {
    position: static;
    transform: none;
    text-align: center;
    margin: 40px 0;
  }
  .vs-top, .vs-bottom {
    align-self: center;
    text-align: center;
  }
}
footer { background: #15161A; padding: 60px 0 20px; color: #fff; } .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; } .footer-col h4 { margin-bottom: 20px; color: #fff; font-size: 1rem; letter-spacing: 1px; } .footer-col ul { list-style: none; padding: 0; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: #999; transition: color 0.3s; } .footer-col a:hover { color: var(--primary); }
.partners-section { background: #111; padding: 20px 0; overflow: hidden; border-bottom: 1px solid #333; border-top: 1px solid #333; } .partners-marquee { width: 100%; overflow: hidden; white-space: nowrap; } .partners-track { display: flex; width: max-content; animation: scrollTrack 20s linear infinite; } .partners-track img { height: 40px; transition: 0.3s; object-fit: contain; margin-right: 50px; } 
@keyframes scrollTrack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Minimal Services Cards */
.service-minimal-card { background: #fff; border-radius: 12px; padding: 40px; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #eee; transition: transform 0.3s, box-shadow 0.3s; }
.service-minimal-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.service-minimal-header { display: flex; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #eaeaea; padding-bottom: 20px; }
.service-number { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-right: 20px; opacity: 0.5; }
.service-title { font-size: 2rem; font-weight: 800; color: #212326; margin: 0; }
.service-minimal-body { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.service-content p { color: #555; margin-bottom: 15px; line-height: 1.6; }
.service-content ul { list-style-type: none; padding: 0; }
.service-content ul li { position: relative; padding-left: 25px; margin-bottom: 12px; color: #444; }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.service-highlight { background: #f8f9fa; padding: 30px; border-radius: 8px; border-top: 4px solid var(--primary); height: fit-content; }
.service-highlight strong { display: block; font-size: 1.2rem; color: #212326; margin-bottom: 10px; }
.service-highlight p { font-size: 0.95rem; color: #666; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .service-minimal-body { grid-template-columns: 1fr; } }

/* --- Neon Gradient Border Hover Effects (Industry & Services only) --- */
.struggle-card, .service-minimal-card {
  transition: all 0.3s ease;
}
.struggle-card:hover, .service-minimal-card:hover {
  border-color: transparent;
  background-image: linear-gradient(#fff, #fff), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 0 20px rgba(0, 157, 255, 0.35);
  transform: translateY(-5px);
}

/* --- Expert Card Full Gradient Hover (Restored) --- */
.expert-card-detailed {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.expert-card-detailed::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.expert-card-detailed:hover::before {
  opacity: 1;
}
.expert-position {
  display: inline-block;
  background: rgba(56, 88, 233, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 5px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(56, 88, 233, 0.2);
  transition: all 0.3s ease;
}

.expert-card-detailed:hover h3,
.expert-card-detailed:hover ul,
.expert-card-detailed:hover li,
.expert-card-detailed:hover .exp {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}

.expert-card-detailed:hover .expert-position {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.expert-card-detailed:hover .expert-header {
  border-bottom-color: rgba(255,255,255,0.2) !important;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.75);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}
.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-zoom.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0px);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-darker);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.pricing-card {
  background: #1E1E1E;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px 30px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.pricing-card.premium {
  background: linear-gradient(145deg, #25262B, #1A1B20);
  border: 1px solid rgba(56, 88, 233, 0.5);
  box-shadow: 0 10px 40px rgba(56, 88, 233, 0.15);
}
.pricing-card.premium::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.pricing-card.premium .pricing-header h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-desc {
  font-size: 0.95rem;
  color: #aaa;
  min-height: 40px;
  margin-bottom: 20px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}
.pricing-price span {
  font-size: 1rem;
  color: #888;
  font-weight: normal;
  margin-left: 5px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pricing-category {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin: 25px 0 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
.pricing-features li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li svg {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}
.pricing-limit {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}
.pricing-additional {
  display: block;
  font-size: 0.75rem;
  color: #f39c12;
  margin-top: 2px;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 40px;
  transition: 0.3s;
}
.pricing-btn:hover {
  background: #fff;
  color: #000;
}
.pricing-card.premium .pricing-btn {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}
.pricing-card.premium .pricing-btn:hover {
  box-shadow: 0 5px 15px rgba(196, 0, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.pricing-package-container {
  background: #1E1E1E;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-package-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.pricing-package-container.premium {
  background: linear-gradient(145deg, #25262B, #1A1B20);
  border: 1px solid rgba(56, 88, 233, 0.5);
  box-shadow: 0 10px 40px rgba(56, 88, 233, 0.15);
}
.pricing-package-container.premium::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.pricing-package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-package-header-left h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.pricing-package-container.premium .pricing-package-header-left h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-package-header-left p {
  color: #aaa;
  max-width: 500px;
}
.pricing-package-header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pricing-price-large {
  font-size: 3.5rem;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}
.pricing-price-large span {
  font-size: 1.2rem;
  color: #888;
  font-weight: normal;
  margin-left: 5px;
}
.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.pricing-features-col {
  display: flex;
  flex-direction: column;
}
.pricing-btn-inline {
  padding: 12px 30px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.pricing-btn-inline:hover {
  background: #fff;
  color: #000;
}
.pricing-package-container.premium .pricing-btn-inline {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}
.pricing-package-container.premium .pricing-btn-inline:hover {
  box-shadow: 0 5px 15px rgba(196, 0, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 768px) {
  .pricing-package-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-package-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
  .pricing-btn-inline {
    width: 100%;
    text-align: center;
  }
}

.cfo-highlight-box {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.05);
}
.cfo-highlight-box .pricing-category {
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}
.cfo-features li svg {
  color: #FFD700 !important;
}
