/* WORTH Contabilidade - Professional Accounting Website */

/* CSS Variables - Design System */
:root {
  /* Core brand colors - Navy blue theme */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 25%, 15%);

  /* Navy blue primary */
  --primary: hsl(220, 40%, 20%);
  --primary-foreground: hsl(0, 0%, 98%);
  --primary-light: hsl(220, 30%, 30%);
  --primary-dark: hsl(220, 50%, 12%);

  /* Gold accents */
  --accent: hsl(45, 95%, 60%);
  --accent-foreground: hsl(220, 40%, 20%);
  --accent-light: hsl(45, 85%, 70%);
  --accent-dark: hsl(45, 100%, 45%);

  /* Supporting colors */
  --secondary: hsl(220, 15%, 95%);
  --secondary-foreground: hsl(220, 25%, 15%);
  
  --muted: hsl(220, 10%, 96%);
  --muted-foreground: hsl(220, 15%, 45%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 25%, 15%);

  --border: hsl(220, 13%, 91%);
  --ring: hsl(220, 40%, 20%);

  /* Premium gradients */
  --gradient-primary: linear-gradient(135deg, hsl(220, 40%, 20%), hsl(220, 50%, 12%));
  --gradient-accent: linear-gradient(135deg, hsl(45, 95%, 60%), hsl(45, 100%, 45%));
  --gradient-hero: linear-gradient(135deg, hsl(220, 40%, 20%) 0%, hsl(220, 50%, 12%) 50%, hsl(220, 30%, 30%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(220, 15%, 98%) 100%);

  /* Professional shadows */
  --shadow-card: 0 4px 20px -2px hsla(220, 40%, 20%, 0.1);
  --shadow-hover: 0 8px 30px -4px hsla(220, 40%, 20%, 0.15);
  --shadow-accent: 0 4px 20px -2px hsla(45, 95%, 60%, 0.2);

  --radius: 0.75rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  scroll-behavior: smooth;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon.arrow {
  transition: transform 0.3s ease;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: -0.25rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

.mobile-menu-toggle {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}

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

.mobile-menu-content {
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.mobile-cta {
  padding: 0.75rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.btn-whatsapp:hover .arrow {
  transform: translateX(0.25rem);
}

.btn-outline {
  background: hsla(255, 255%, 255%, 0.1);
  border: 1px solid hsla(255, 255%, 255%, 0.3);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: hsla(255, 255%, 255%, 0.2);
}

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

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

.btn-accent-gradient {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  transform: translateY(0);
}

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

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-accent {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsla(255, 255%, 255%, 0.9);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(255, 255%, 255%, 0.2);
}

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

.trust-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.trust-label {
  font-size: 0.875rem;
  color: hsla(255, 255%, 255%, 0.8);
}

.hero-image {
  position: relative;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 40%, 20%, 0.2), transparent);
}

.floating-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.floating-card-left {
  top: -1rem;
  left: -1rem;
}

.floating-card-right {
  bottom: -1rem;
  right: -1rem;
}

.floating-card-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.floating-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.floating-card-right .floating-card-value {
  font-size: 1.125rem;
  color: var(--primary);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-title-accent {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 768px) {
  .section-title-accent {
    font-size: 1.875rem;
  }
}

.title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Services Section */
.services-section {
  background: hsla(220, 15%, 95%, 0.3);
}

.services {
  background: hsla(220, 15%, 95%, 0.3);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--background);
}

.why-choose-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
}

@media (min-width: 1024px) {
  .why-choose-content {
    grid-template-columns: 1fr 1fr;
  }
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reason-item {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.reason-item:hover {
  transform: translateX(0.25rem);
}

.reason-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-accent);
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.reason-item:hover .reason-icon {
  transform: scale(1.1);
}

.reason-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.reason-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.reason-item:hover .reason-title {
  color: var(--primary);
}

.reason-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.why-choose-image {
  position: relative;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 40%, 20%, 0.1), transparent);
}

.stats-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.stats-content {
  background: hsla(255, 255%, 255%, 0.95);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, hsla(220, 15%, 95%, 0.2), hsla(45, 95%, 60%, 0.05));
}

.benefits {
  background: linear-gradient(135deg, hsla(220, 15%, 95%, 0.2), hsla(45, 95%, 60%, 0.05));
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-blue .benefit-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.benefit-green .benefit-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-purple .benefit-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-orange .benefit-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: var(--primary);
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 5rem;
  height: 5rem;
  background: var(--gradient-accent);
  opacity: 0.05;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 0.1;
}

/* Final CTA Section */
.final-cta-section {
  background: var(--gradient-primary);
  text-align: center;
  padding: 5rem 0;
}

.final-cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.5rem;
  }
}

.final-cta-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: hsla(255, 255%, 255%, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 3rem;
  }
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 1.875rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 4rem 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-main {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-description {
  color: hsla(255, 255%, 255%, 0.9);
  line-height: 1.6;
}

.footer-contact,
.footer-services,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: hsla(255, 255%, 255%, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.social-icon {
  font-size: 1.25rem;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid hsla(255, 255%, 255%, 0.2);
  padding: 2rem 0;
}

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

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  color: hsla(255, 255%, 255%, 0.7);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.footer-bottom-link {
  color: hsla(255, 255%, 255%, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.company-info {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .company-info {
    grid-column: span 1;
  }
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo-subtitle {
  color: hsla(255, 255%, 255%, 0.8);
}

.company-description {
  color: hsla(255, 255%, 255%, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(255, 255%, 255%, 0.1);
  border-radius: 0.5rem;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background: hsla(255, 255%, 255%, 0.2);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-text {
  color: hsla(255, 255%, 255%, 0.9);
}

.contact-subtext {
  color: hsla(255, 255%, 255%, 0.7);
  font-size: 0.875rem;
}

.services-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-link {
  color: hsla(255, 255%, 255%, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--accent);
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.hours-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hours-text {
  color: hsla(255, 255%, 255%, 0.9);
  font-weight: 500;
}

.hours-subtext {
  color: hsla(255, 255%, 255%, 0.7);
  font-size: 0.875rem;
}

.hours-additional {
  color: hsla(255, 255%, 255%, 0.8);
  font-size: 0.875rem;
}

.hours-highlight {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.5rem;
}

.footer-cta {
  border-top: 1px solid hsla(255, 255%, 255%, 0.2);
  padding: 2rem 0;
}

.footer-cta-content {
  text-align: center;
}

.footer-cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-copyright {
  border-top: 1px solid hsla(255, 255%, 255%, 0.2);
  padding: 2rem 0;
  text-align: center;
}

.footer-copyright p {
  color: hsla(255, 255%, 255%, 0.7);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title-accent {
    font-size: 1.25rem;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .floating-card-left,
  .floating-card-right {
    position: static;
    margin: 1rem 0;
  }
  
  .stats-overlay {
    position: static;
    margin-top: 1rem;
  }
}

/* Smooth Scroll Enhancement */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer {
    display: none;
  }
  
  .hero {
    background: white;
    color: black;
  }
  
  .hero-title-accent {
    color: black;
  }
}