/* Xero-specific styles - Complete CSS with mobile responsiveness */
:root {
  --xero-primary: #13b5ea;      /* Xero brand blue */
  --xero-secondary: #005b9a;    /* Darker blue */
  --xero-accent: #00a86b;        /* Green for success */
  --xero-dark: #2c3e50;
  --xero-light: #f0f9ff;
  --xero-gradient: linear-gradient(135deg, #005b9a 0%, #13b5ea 100%);
}

/* ===== HERO SECTION ===== */
.xero-hero {
  background: var(--xero-gradient);
  color: white;
  padding: 80px 0;
  border-radius: 0 0 30px 30px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 181, 234, 0.3);
}

.xero-hero:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: url('/Images/cloud-pattern.png') no-repeat right center;
  background-size: contain;
  opacity: 0.1;
  transform: rotate(10deg);
  z-index: 1;
}

.xero-hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #ffd700, #13b5ea, #00a86b);
}

.xero-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.xero-logo-container {
  text-align: center;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.xero-logo-container img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.xero-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  line-height: 1.2;
}

.xero-hero .subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RATING SECTION ===== */
.xero-rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  background: rgba(255,255,255,0.15);
  padding: 15px 30px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.xero-rating-stars {
  color: #ffd700;
  font-size: 1.8rem;
  margin-right: 15px;
  letter-spacing: 5px;
}

.xero-rating-text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== FEATURES GRID ===== */
.xero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.xero-feature-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(19, 181, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.xero-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(19, 181, 234, 0.15);
  border-color: var(--xero-primary);
}

.xero-feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--xero-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xero-feature-card:hover:before {
  opacity: 1;
}

.xero-feature-icon {
  font-size: 3rem;
  color: var(--xero-primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.xero-feature-card:hover .xero-feature-icon {
  transform: scale(1.1);
}

.xero-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--xero-dark);
}

.xero-feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== TABLES ===== */
.xero-modules-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.xero-modules-table th {
  background: var(--xero-dark);
  color: white;
  text-align: left;
  padding: 18px 15px;
  font-weight: 600;
  font-size: 1.1rem;
}

.xero-modules-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.xero-modules-table tr:last-child td {
  border-bottom: none;
}

.xero-modules-table tr:nth-child(even) {
  background-color: var(--xero-light);
}

.xero-modules-table tr:hover td {
  background: rgba(19, 181, 234, 0.05);
}

/* ===== INDUSTRY TAGS ===== */
.xero-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
  justify-content: center;
}

.xero-industry-tag {
  background: linear-gradient(135deg, var(--xero-light), #ffffff);
  color: var(--xero-dark);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--xero-primary);
  box-shadow: 0 5px 15px rgba(19, 181, 234, 0.1);
  transition: all 0.3s ease;
}

.xero-industry-tag:hover {
  background: var(--xero-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(19, 181, 234, 0.3);
}

/* ===== PROS/CONS SECTIONS ===== */
.xero-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
}

.xero-pros-card, .xero-cons-card {
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.xero-pros-card:hover, .xero-cons-card:hover {
  transform: translateY(-5px);
}

.xero-pros-card {
  background: linear-gradient(135deg, #e8f8f5, #ffffff);
  border-left: 6px solid #00a86b;
}

.xero-cons-card {
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  border-left: 6px solid #e74c3c;
}

.xero-pros-card h3, .xero-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.xero-pros-card h3 i {
  color: #00a86b;
  margin-right: 15px;
  font-size: 2rem;
}

.xero-cons-card h3 i {
  color: #e74c3c;
  margin-right: 15px;
  font-size: 2rem;
}

.xero-pros-card ul, .xero-cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.xero-pros-card li, .xero-cons-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.xero-pros-card li:before {
  content: "✓";
  color: #00a86b;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3rem;
}

.xero-cons-card li:before {
  content: "⚠";
  color: #e74c3c;
  margin-right: 15px;
  font-size: 1.3rem;
}

/* ===== PRICING CARD ===== */
.xero-pricing-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  margin: 50px 0;
  border-top: 8px solid var(--xero-primary);
  position: relative;
  overflow: hidden;
}

.xero-pricing-card:before {
  content: "30-DAY FREE TRIAL";
  position: absolute;
  top: 30px;
  right: -35px;
  background: var(--xero-accent);
  color: white;
  padding: 10px 50px;
  transform: rotate(45deg);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.xero-pricing-card h3 {
  font-size: 2.2rem;
  color: var(--xero-dark);
  margin-bottom: 20px;
}

.xero-pricing-card table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
}

.xero-pricing-card th {
  background: var(--xero-dark);
  color: white;
  padding: 15px;
  font-weight: 600;
}

.xero-pricing-card td {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  text-align: center;
}

.xero-pricing-card tr:last-child td {
  border-bottom: none;
}

/* ===== TIMELINE (reused from TallyPrime) ===== */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--xero-primary), var(--xero-secondary));
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 100px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--xero-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 20px rgba(19, 181, 234, 0.3);
  z-index: 2;
  transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.1);
  background: var(--xero-secondary);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--xero-primary);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(19, 181, 234, 0.15);
}

.timeline-content h3 {
  font-size: 1.6rem;
  color: var(--xero-dark);
  margin-bottom: 10px;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 900px;
  margin: 40px auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background: white;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--xero-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--xero-light);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--xero-primary);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #f9f9f9;
}

.faq-answer-content {
  padding: 25px;
  border-top: 2px solid var(--xero-primary);
}

.faq-answer p, .faq-answer ul {
  margin: 0 0 15px;
  line-height: 1.8;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 10px;
}

/* ===== BUTTONS & CTA ===== */
.btn-primary {
  display: inline-block;
  background: var(--xero-primary);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--xero-primary);
  box-shadow: 0 10px 20px rgba(19, 181, 234, 0.3);
}

.btn-primary:hover {
  background: var(--xero-secondary);
  border-color: var(--xero-secondary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(19, 181, 234, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-secondary:hover {
  background: white;
  color: var(--xero-primary);
  transform: translateY(-3px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(19, 181, 234, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(19, 181, 234, 0); }
  100% { box-shadow: 0 0 0 0 rgba(19, 181, 234, 0); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--xero-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--xero-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== CONTENT BOX ===== */
.content-box {
  background: linear-gradient(135deg, #f8f9fa, white);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  border-left: 6px solid var(--xero-primary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.content-box p:last-child {
  margin-bottom: 0;
}

/* ===== STEPS GRID ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(19, 181, 234, 0.15);
}

.step-card.highlighted {
  background: linear-gradient(135deg, var(--xero-light), rgba(19, 181, 234, 0.15));
  border: 2px solid var(--xero-primary);
}

.highlight-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--xero-primary);
  color: white;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(19, 181, 234, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--xero-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: var(--xero-dark);
}

.step-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(44, 62, 80, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner-content a {
  color: var(--xero-primary);
  text-decoration: underline;
}

#accept-cookies {
  background: var(--xero-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

#accept-cookies:hover {
  background: var(--xero-secondary);
  transform: scale(1.05);
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--xero-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 20px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(19, 181, 234, 0.4);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: var(--xero-secondary);
  transform: translateY(-5px);
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 50px;
  border-top: 1px solid #dee2e6;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-content h2 {
  color: var(--xero-dark);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.disclaimer-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.disclaimer-content a {
  color: var(--xero-primary);
  text-decoration: none;
  font-weight: 600;
}

.disclaimer-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .xero-hero h1 {
    font-size: 2.8rem;
  }
  
  .xero-hero .subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .xero-hero {
    padding: 60px 0;
  }
  
  .xero-hero h1 {
    font-size: 2.4rem;
  }
  
  .xero-hero .subtitle {
    font-size: 1.2rem;
  }
  
  .xero-pros-cons {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .xero-modules-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .xero-modules-table th,
  .xero-modules-table td {
    white-space: normal;
    min-width: 200px;
  }
  
  .timeline-step {
    padding-left: 80px;
  }
  
  .timeline-line {
    left: 40px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .xero-hero {
    padding: 40px 0;
    border-radius: 0 0 20px 20px;
  }
  
  .xero-hero h1 {
    font-size: 2rem;
  }
  
  .xero-hero .subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .xero-logo-container {
    padding: 20px;
  }
  
  .xero-logo-container img {
    max-width: 220px;
  }
  
  .xero-rating-container {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .xero-rating-stars {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 12px 25px;
  }
  
  .xero-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .xero-feature-card {
    padding: 25px;
  }
  
  .xero-industries {
    padding: 0 15px;
  }
  
  .xero-industry-tag {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .timeline-container {
    padding: 0 15px;
  }
  
  .timeline-step {
    padding-left: 60px;
  }
  
  .timeline-line {
    left: 25px;
  }
  
  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .xero-pricing-card {
    padding: 25px;
    margin: 30px 15px;
  }
  
  .xero-pricing-card:before {
    font-size: 0.8rem;
    padding: 8px 40px;
    top: 20px;
    right: -40px;
  }
  
  .xero-pricing-card h3 {
    font-size: 1.6rem;
  }
  
  .content-box {
    padding: 25px;
    margin: 30px 15px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .faq-container {
    padding: 0 15px;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }  

  #backToTop {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    left: 20px;
  }
  
  .disclaimer-content {
    padding: 0 20px;
  }
  
  .disclaimer-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .xero-hero h1 {
    font-size: 1.8rem;
  }
  
  .xero-hero .subtitle {
    font-size: 1rem;
  }
  
  .xero-logo-container img {
    max-width: 180px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
    padding: 0 15px;
  }
  
  .section-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .xero-feature-card h3 {
    font-size: 1.3rem;
  }
  
  .xero-pros-card, .xero-cons-card {
    padding: 25px;
  }
  
  .xero-pros-card h3, .xero-cons-card h3 {
    font-size: 1.5rem;
  }
  
  .xero-pros-card li, .xero-cons-card li {
    font-size: 1rem;
  }
  
  .xero-pricing-card table {
    font-size: 0.9rem;
  }
  
  .xero-pricing-card th,
  .xero-pricing-card td {
    padding: 10px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: -15px;
    left: 15px;
  }
  
  .step-card h3 {
    font-size: 1.2rem;
  }
  
  .highlight-badge {
    font-size: 0.8rem;
    padding: 4px 15px;
  }
  
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  #accept-cookies {
    width: 100%;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .xero-hero {
    background: none;
    color: black;
  }
  
  .btn-primary, .btn-secondary, .whatsapp-float, #backToTop, #cookie-banner {
    display: none;
  }
  
  .xero-modules-table {
    box-shadow: none;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations on scroll (optional - can be triggered via JS) */
.xero-feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.step-card {
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-step {
  animation: slideInLeft 0.6s ease forwards;
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }

.p-0 { padding: 0; }
.p-2 { padding: 20px; }
.p-4 { padding: 40px; }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ===== FLEXBOX UTILITIES ===== */
.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

/* ===== GRID UTILITIES ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ===== LOADING ANIMATIONS ===== */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--xero-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== HOVER EFFECTS ===== */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 20px 40px rgba(19, 181, 234, 0.2);
}