/* 9th Wonder Demo Website - Corporate Professional Theme */

:root {
  --primary: #1a365d;
  --primary-dark: #0f2644;
  --secondary: #2c5282;
  --accent: #d69e2e;
  --accent-light: #ecc94b;
  --success: #38a169;
  --danger: #e53e3e;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 1rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.03), rgba(44, 82, 130, 0.05));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.hero-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 120px;
}

.hero-stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Trust Badges */
.trust-badges {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.trust-badge img {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
}

.trust-badge-content h4 {
  color: var(--white);
  font-size: 1.5rem;
}

.trust-badge-content p {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin: 0;
}

/* What is Tally Section */
.what-is-tally {
  background: var(--white);
}

.tally-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tally-content h2 {
  margin-bottom: 1.5rem;
}

.tally-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

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

.tally-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  transition: var(--transition);
}

.tally-feature:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.tally-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  flex-shrink: 0;
}

.tally-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.tally-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.tally-feature-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

.tally-image {
  text-align: center;
}

.tally-image img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Why Choose Us Section */
.why-choose {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.why-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

/* Solutions Section */
.solutions {
  background: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.solution-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.solution-card-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.solution-card-header p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.solution-card-body {
  padding: 1.5rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.solution-item span {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.solution-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.solution-price {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.solution-price span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

/* AMC Section */
.amc-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.amc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.amc-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.amc-content p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.amc-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amc-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.amc-feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.amc-feature span {
  font-size: 1rem;
}

.amc-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.amc-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.amc-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.amc-card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* Team Section */
.team-section {
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-image-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image-placeholder svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.team-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary);
  word-break: break-all;
}

.team-email:hover {
  color: var(--primary);
}

.team-email svg {
  width: 14px;
  height: 14px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-image img[src*="team"] {
  object-fit: cover;
  object-position: center top;
}

.team-image-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image-placeholder svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.team-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--secondary);
  word-break: break-all;
}

.team-email:hover {
  color: var(--primary);
}

.team-email svg {
  width: 14px;
  height: 14px;
}

/* Testimonials Section */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-logo {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.testimonial-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* Resources Section */
.resources {
  background: var(--gray-50);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-image svg {
  width: 60px;
  height: 60px;
  color: var(--white);
  opacity: 0.9;
}

.resource-content {
  padding: 1.5rem;
}

.resource-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.resource-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.resource-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.resource-link:hover {
  color: var(--primary);
}

.resource-link svg {
  width: 16px;
  height: 16px;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

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

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

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

.form-group label {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2.5rem;
  border-radius: 12px;
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-channel:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-channel svg {
  width: 24px;
  height: 24px;
}

.contact-channel span {
  font-size: 0.95rem;
}

.office-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.office-info h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.office-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.office-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  border-radius: 6px;
  color: var(--primary-dark);
  font-weight: 500;
}

.office-hours svg {
  width: 18px;
  height: 18px;
}

/* Footer */
.footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 65px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.client-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo-img:hover {
  filter: none;
  opacity: 1;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gray-300);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--accent);
}

/* About Page */
.about-story {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--gray-600);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-close svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-container {
    gap: 2rem;
  }

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

  .trust-badge {
    flex: 1 1 calc(25% - 2rem);
    min-width: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
  }

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

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

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat {
    min-width: 100px;
    padding: 0.75rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 100%;
  }

  .trust-container {
    gap: 1.5rem;
  }

  .trust-badge {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
  }

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

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

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

  .why-card {
    padding: 1.5rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

  .header-phone {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stat {
    min-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .trust-container {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-badge {
    width: 100%;
    justify-content: center;
  }

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

  .contact-info {
    padding: 1.5rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .container {
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-logo {
    width: 60px;
    height: 60px;
  }

  .team-image {
    height: 180px;
  }

  .amc-card {
    padding: 1.5rem;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .header-container {
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 50px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-container {
    max-width: 1400px;
  }

  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-stat-number {
    font-size: 3.25rem;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

  .hero-container {
    max-width: 1600px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .why-card:hover,
  .solution-card:hover,
  .team-card:hover,
  .testimonial-card:hover,
  .resource-card:hover {
    transform: none;
  }
}
