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

:root {
  --color-dark-blue: #1a3a5f;
  --color-orange: #ff6b35;
  --color-beige: #f5f1e8;
  --color-white: #ffffff;
  --color-light-gray: #f8f8f8;
  --color-text-dark: #2c3e50;
  --color-text-light: #6c757d;
  --color-dark-blue-heavy: #0f2538;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-beige);
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(26, 58, 95, 0.02) 35px,
      rgba(26, 58, 95, 0.02) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(255, 107, 53, 0.02) 35px,
      rgba(255, 107, 53, 0.02) 70px
    );
  overflow-x: hidden;
  font-weight: 400;
}

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

/* Navigation */
.navbar {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25),
    inset 0 -1px 0 rgba(255, 107, 53, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 4px solid var(--color-orange);
  position: relative;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(26, 58, 95, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 1.2;
}

.brand-accounting {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-dark-blue-heavy);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-services {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--color-orange);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--color-orange);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark-blue);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  min-height: auto;
  display: flex;
  align-items: center;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 107, 53, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(26, 58, 95, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--color-beige) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      var(--color-beige) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(26, 58, 95, 0.015) 100px,
      rgba(26, 58, 95, 0.015) 200px
    );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(26, 58, 95, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInLeft 1s ease;
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-accounting {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-orange);
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 107, 53, 0.3);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 90%;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5),
    0 0 30px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid var(--color-orange);
}

.cta-button:hover {
  background-color: #e55a2b;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6),
    0 0 40px rgba(255, 107, 53, 0.4);
  border-color: #e55a2b;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  animation: fadeInRight 1s ease;
}

.illustration-container {
  position: relative;
  width: 100%;
  height: 300px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(26, 58, 95, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(26, 58, 95, 0.08) 0%,
      rgba(255, 107, 53, 0.08) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(26, 58, 95, 0.03) 20px,
      rgba(26, 58, 95, 0.03) 40px
    );
  border-radius: 20px;
  padding: 2rem;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.illustration-figure {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.figure-head {
  width: 80px;
  height: 80px;
  background-color: var(--color-dark-blue);
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
}

.figure-head::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 15px;
  height: 15px;
  background-color: var(--color-beige);
  border-radius: 50%;
}

.figure-head::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--color-beige);
  border-radius: 2px;
}

.figure-body {
  width: 120px;
  height: 100px;
  background-color: var(--color-orange);
  border-radius: 10px;
  position: relative;
}

.figure-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: var(--color-dark-blue);
  border-radius: 10px 10px 0 0;
}

.illustration-laptop {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background-color: var(--color-dark-blue);
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.illustration-laptop::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 10px;
  width: 180px;
  height: 100px;
  background-color: var(--color-dark-blue);
  border-radius: 4px;
}

.illustration-documents {
  position: absolute;
  bottom: 80px;
  left: 30%;
  z-index: 1;
}

.doc {
  width: 60px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 4px;
  position: absolute;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.doc-1 {
  left: 0;
  transform: rotate(-5deg);
}

.doc-1::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #e0e0e0;
}

.doc-1::after {
  content: "S";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

.doc-2 {
  left: 40px;
  top: 10px;
  transform: rotate(5deg);
}

.doc-2::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #e0e0e0;
}

.illustration-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.icon {
  position: absolute;
  width: 50px;
  height: 50px;
  color: var(--color-dark-blue);
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-pie-chart {
  top: 20px;
  left: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-bar-chart {
  top: 20px;
  right: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-checkmark {
  bottom: 200px;
  left: 30px;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.icon-document {
  bottom: 150px;
  right: 40px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-dollar {
  bottom: 100px;
  right: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Trust Badges Section */
.trust-badges {
  padding: 2rem 0;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(248, 248, 248, 0.5) 100%
  );
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-light-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--color-orange);
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-dark-blue),
    var(--color-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 900;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Company Values Section */
.company-values {
  padding: 4rem 0;
  background: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-light-gray) 0%,
    var(--color-white) 100%
  );
  border-radius: 12px;
  border: 2px solid var(--color-light-gray);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-orange);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Clients Section */
.clients-section {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(248, 248, 248, 0.8) 100%
  );
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-orange);
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: radial-gradient(
      ellipse at top,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(26, 58, 95, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      var(--color-white) 0%,
      rgba(248, 248, 248, 0.8) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(26, 58, 95, 0.01) 50px,
      rgba(26, 58, 95, 0.01) 100px
    );
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(26, 58, 95, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 30px;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(
      135deg,
      var(--color-white) 0%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    );
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition);
  border: 3px solid var(--color-light-gray);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 107, 53, 0.2);
  border-color: var(--color-orange);
  border-width: 6px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-dark-blue-heavy),
    var(--color-orange)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-white);
  border: 3px solid var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon svg {
  width: 45px;
  height: 45px;
  stroke-width: 3;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--color-dark-blue-heavy) 0%,
      var(--color-dark-blue) 50%,
      var(--color-dark-blue-heavy) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255, 107, 53, 0.03) 20px,
      rgba(255, 107, 53, 0.03) 40px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 40px
    );
  color: var(--color-white);
  border-top: 8px solid var(--color-orange);
  border-bottom: 8px solid var(--color-orange);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-text {
  text-align: center;
}

.about .section-header {
  margin-bottom: 2rem;
}

.about .section-label {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.about .section-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: radial-gradient(
      ellipse at top,
      rgba(26, 58, 95, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      var(--color-white) 0%,
      rgba(248, 248, 248, 0.9) 50%,
      var(--color-white) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(26, 58, 95, 0.01) 60px,
      rgba(26, 58, 95, 0.01) 120px
    );
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(26, 58, 95, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(
      135deg,
      var(--color-white) 0%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 107, 53, 0.03) 0%,
      transparent 50%
    );
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid var(--color-light-gray);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-orange) 0%,
    var(--color-dark-blue) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 107, 53, 0.2);
  border-color: var(--color-orange);
  border-width: 6px;
}

.testimonial-rating {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.3rem;
}

.star {
  color: var(--color-orange);
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-dark-blue-heavy),
    var(--color-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-role {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 107, 53, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(26, 58, 95, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--color-beige) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      var(--color-beige) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(26, 58, 95, 0.015) 80px,
      rgba(26, 58, 95, 0.015) 160px
    );
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: linear-gradient(
      135deg,
      var(--color-white) 0%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(26, 58, 95, 0.05) 0%,
      transparent 50%
    );
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 3px solid var(--color-light-gray);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-orange) 0%,
    var(--color-dark-blue) 100%
  );
}

.contact-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-beige);
}

.contact-header h3 {
  font-size: 1.5rem;
  color: var(--color-dark-blue-heavy);
  margin-bottom: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-role {
  color: var(--color-text-light);
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: var(--transition);
  padding: 0.75rem;
  border-radius: 8px;
}

.contact-item:hover {
  background-color: var(--color-beige);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--color-dark-blue),
    var(--color-orange)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item span {
  font-size: 1rem;
  font-weight: 500;
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(
      135deg,
      var(--color-white) 0%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    );
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 3px solid var(--color-light-gray);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-dark-blue) 0%,
    var(--color-orange) 100%
  );
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.4rem;
  color: var(--color-dark-blue-heavy);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 3px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  border-width: 3px;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2),
    0 8px 25px rgba(255, 107, 53, 0.15);
}

.submit-button {
  padding: 1rem 2.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 3px solid var(--color-orange);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5),
    0 0 30px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.submit-button:hover {
  background-color: #e55a2b;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6),
    0 0 40px rgba(255, 107, 53, 0.4);
  border-color: #e55a2b;
}

/* Footer */
.footer {
  background: radial-gradient(
      ellipse at top,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--color-dark-blue-heavy) 0%, #0a1a28 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255, 107, 53, 0.02) 30px,
      rgba(255, 107, 53, 0.02) 60px
    );
  color: var(--color-white);
  text-align: center;
  padding: 2rem 0;
  border-top: 4px solid var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate {
  opacity: 1;
}

/* Fade In */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
  opacity: 1;
}

/* Slide In Left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Slide In Right */
.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Slide In Up */
.slide-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Slide In Down */
.slide-in-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-down.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Scale In */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Rotate In */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rotate-in.animate {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Zoom In */
.zoom-in {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s ease, transform 1s ease;
}

.zoom-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Flip In */
.flip-in {
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.flip-in.animate {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}

/* Bounce In */
.bounce-in {
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  transition: opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fade In with Delay */
.fade-in-delay {
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}

.fade-in-delay.animate {
  opacity: 1;
}

/* Stagger Animation for Grid Items */
.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Original Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-illustration {
    order: -1;
  }

  .title-accounting {
    font-size: 3rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

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

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

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

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

  .illustration-container {
    height: 400px;
  }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .title-accounting {
    font-size: 2rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

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