:root {
  --bg: 0 0% 100%;
  --fg: 228 40% 10%;
  --card: 0 0% 100%;
  --card-fg: 228 40% 10%;
  --primary: 237 92% 23%;
  --primary-fg: 0 0% 100%;
  --primary-glow: 237 100% 70%;
  --secondary: 228 10% 95%;
  --secondary-fg: 228 40% 10%;
  --muted: 228 10% 96%;
  --muted-fg: 228 10% 45%;
  --accent: 14 90% 60%;
  --accent-fg: 0 0% 100%;
  --accent-light: 14 95% 95%;
  --border: 228 15% 90%;
  --radius: 0.75rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(var(--bg) / 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(var(--border) / 0.5);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-fg));
  box-shadow: 0 4px 16px hsla(var(--fg) / 0.08);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25 95% 65%));
  color: hsl(var(--accent-fg));
  box-shadow: 0 4px 16px hsla(var(--fg) / 0.08);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-accent {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25 95% 65%));
  color: hsl(var(--accent-fg));
  box-shadow: 0 8px 32px hsla(var(--fg) / 0.12);
}

.btn-accent:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 12px 40px hsla(var(--fg) / 0.16);
}

.btn-secondary {
  background: hsl(var(--card));
  color: hsl(var(--fg));
  box-shadow: 0 8px 32px hsla(var(--fg) / 0.12);
}

.btn-secondary:hover {
  background: hsla(var(--card) / 0.9);
  transform: scale(1.1);
  box-shadow: 0 0 40px hsla(var(--primary-glow) / 0.3);
}

.btn-large {
  padding: 2.5rem 5rem;
  font-size: 2rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 8rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, hsla(var(--border)) 1px, transparent 1px),
              linear-gradient(to bottom, hsla(var(--border)) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 25%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: hsl(var(--primary-glow));
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: hsl(var(--accent));
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  animation-delay: 2s;
}

.hero-content {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(var(--accent-light) / 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid hsla(var(--accent) / 0.2);
  color: hsl(var(--accent));
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-primary {
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid hsla(var(--border) / 0.5);
}

.badge-primary p {
  font-size: 1.5rem;
  font-weight: 700;
}

.badge-accent {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25 95% 65%));
  color: hsl(var(--accent-fg));
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px hsla(var(--fg) / 0.08);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 2.5rem 0;
}

.hero h1 span {
  display: block;
  margin-bottom: 1rem;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: hsl(var(--muted-fg));
  margin-bottom: 2rem;
  font-weight: 300;
}

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

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

.hero-text {
  max-width: 48rem;
  margin: 2rem auto;
  font-size: 1.125rem;
  color: hsla(var(--fg) / 0.7);
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-text {
    font-size: 1.25rem;
  }
}

.hero-text p {
  margin-bottom: 1rem;
}

.accent-text {
  color: hsl(var(--accent));
  font-weight: 500;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-title {
    font-size: 2.25rem;
  }
}

.hero-cta-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 1rem;
}

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

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

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3.75rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
}

@media (min-width: 640px) {
  .section-header p {
    font-size: 1.5rem;
  }
}

.solution-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .solution-title {
    font-size: 2.25rem;
  }
}

.pain-points {
  background: hsla(var(--muted) / 0.2);
  position: relative;
}

.pain-points::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsla(var(--primary) / 0.05), transparent);
}

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

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

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

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

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

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

.card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsla(var(--border) / 0.5);
  background: hsla(var(--card) / 0.5);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 8px 32px hsla(var(--fg) / 0.12);
  background: hsl(var(--card));
  transform: scale(1.02);
  border-color: hsla(var(--accent) / 0.3);
}

.card-primary {
  padding: 3rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  color: hsl(var(--primary-fg));
  border: none;
  box-shadow: 0 8px 32px hsla(var(--fg) / 0.12);
  text-align: center;
}

@media (min-width: 640px) {
  .card-primary {
    padding: 4rem;
  }
}

.card-primary-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .card-primary-text {
    font-size: 1.875rem;
  }
}

.card-primary-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.card-primary-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .card-primary-title {
    font-size: 3rem;
  }
}

.card-large {
  padding: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .card-large {
    padding: 4rem;
  }
}

.card-large h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .card-large h3 {
    font-size: 2.25rem;
  }
}

.card-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.card-center-text {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .card-center-text {
    font-size: 2rem;
  }
}

.card-center-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--accent));
  margin-top: 0.5rem;
}

.card-info {
  margin-top: 2rem;
  text-align: center;
  color: hsl(var(--muted-fg));
  font-size: 1.125rem;
  line-height: 1.6;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon.accent {
  background: hsla(var(--accent-light) / 0.5);
  color: hsl(var(--accent));
}

.card-icon.primary {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  color: hsl(var(--primary-fg));
  box-shadow: 0 4px 16px hsla(var(--fg) / 0.08);
}

.card-icon.accent-bg {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25 95% 65%));
  color: hsl(var(--accent-fg));
}

.card p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.skills-section {
  margin-top: 1.5rem;
}

.skills-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(var(--accent-light) / 0.3);
  transition: all 0.3s;
}

.skill-item:hover {
  background: hsla(var(--accent-light) / 0.5);
  transform: scale(1.02);
}

.skill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--accent));
  margin-top: 0.625rem;
  flex-shrink: 0;
}

.skill-item span {
  font-size: 1.125rem;
}

.projects {
  max-width: 48rem;
  margin: 0 auto;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.for-whom {
  background: hsla(var(--muted) / 0.3);
}

.about {
  background: hsla(var(--muted) / 0.3);
}

.about-intro {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.expertise-item .card-icon {
  margin-bottom: 0;
}

.expertise-item p {
  padding-top: 0.5rem;
}

.about-text {
  margin-top: 2rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2rem;
  }
}

.about-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: hsl(var(--muted-fg));
}

.pricing {
  position: relative;
  background: hsla(var(--muted) / 0.2);
}

.pricing::before {
  content: '';
  position: absolute;
  left: 25%;
  top: 33%;
  width: 500px;
  height: 500px;
  background: hsla(var(--primary) / 0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.pricing-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(180deg, hsl(var(--bg)), hsla(var(--muted) / 0.3));
  border: 2px solid hsla(var(--primary) / 0.2);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px hsla(var(--fg) / 0.12);
  position: relative;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 4rem;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-price {
  margin: 1.5rem 0;
}

.price {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  .price {
    font-size: 5rem;
  }
}

.currency {
  font-size: 1.875rem;
  color: hsl(var(--muted-fg));
  margin-left: 0.75rem;
  font-weight: 300;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-fg));
  font-weight: 300;
}

.pricing-benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsla(var(--card) / 0.5);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

.benefit-item:hover {
  background: hsl(var(--card));
  transform: scale(1.02);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(25 95% 65%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent-fg));
  flex-shrink: 0;
  box-shadow: 0 2px 8px hsla(var(--fg) / 0.08);
}

.benefit-item span {
  font-size: 1.125rem;
  font-weight: 500;
  padding-top: 0.125rem;
}

.cta {
  position: relative;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(237 85% 35%));
  color: hsl(var(--primary-fg));
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.cta::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 33%;
  width: 384px;
  height: 384px;
  background: hsl(var(--primary-glow));
  border-radius: 50%;
  filter: blur(96px);
}

.cta-content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .cta h2 {
    font-size: 3rem;
  }
}

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

.cta p {
  font-size: 1.5rem;
  opacity: 0.95;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

.footer {
  padding: 2rem 1rem;
  background: hsla(var(--muted) / 0.3);
  border-top: 1px solid hsl(var(--border));
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-left {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-left {
    text-align: left;
  }
}

.footer-left p {
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
  margin-top: 0.25rem;
}

.footer-right {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
  }
}

.footer-right p {
  font-size: 0.875rem;
  color: hsl(var(--muted-fg));
  margin-top: 0.25rem;
}

.footer-right a {
  color: hsl(var(--accent));
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: block;
  }
}

@media (max-width: 639px) {
  .nav-content {
    height: 64px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .btn-primary svg {
    width: 16px;
    height: 16px;
  }
  
  .hero {
    padding: 5rem 1rem 3rem;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin: 1.5rem 0;
  }
  
  .hero h1 span {
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
    margin: 1.5rem auto;
  }
  
  .hero-cta-title {
    font-size: 1.5rem;
  }
  
  .hero-cta-subtitle {
    font-size: 1.125rem;
  }
  
  .btn-large {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
  }
  
  .btn-large svg {
    width: 24px;
    height: 24px;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .solution-title {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .card-primary {
    padding: 2rem 1.5rem;
  }
  
  .card-primary-text {
    font-size: 1.25rem;
  }
  
  .card-primary-subtitle {
    font-size: 1.125rem;
  }
  
  .card-primary-title {
    font-size: 1.75rem;
  }
  
  .card-large {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .card-large h3 {
    font-size: 1.5rem;
  }
  
  .card-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .card-center {
    padding: 1.5rem;
  }
  
  .card-center-text {
    font-size: 1.25rem;
  }
  
  .card-center-subtitle {
    font-size: 1rem;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .card-icon.primary {
    width: 56px;
    height: 56px;
  }
  
  .card p {
    font-size: 1rem;
  }
  
  .skills-title {
    font-size: 1.25rem;
  }
  
  .skill-item {
    padding: 0.75rem;
  }
  
  .skill-item span {
    font-size: 1rem;
  }
  
  .project-item {
    font-size: 0.875rem;
  }
  
  .about-intro {
    font-size: 1.125rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-title {
    font-size: 1.25rem;
  }
  
  .about-subtitle {
    font-size: 1.125rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .currency {
    font-size: 1.5rem;
  }
  
  .pricing-subtitle {
    font-size: 1.125rem;
  }
  
  .benefit-item {
    padding: 0.75rem;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
  
  .cta h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  
  .cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .badge {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
  
  .badge-primary {
    padding: 0.75rem 1rem;
  }
  
  .badge-primary p {
    font-size: 1.125rem;
  }
  
  .hero::before {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
  }
  
  .hero::after {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 10%;
  }
  
  .hero-bg {
    background-size: 2rem 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .grid {
    gap: 1rem;
  }
  
  .expertise-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  
  .expertise-item .card-icon {
    margin-bottom: 0.5rem;
  }
  
  .footer {
    padding: 1.5rem 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .btn-large {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .card-primary-text {
    font-size: 1.125rem;
  }
  
  .card-primary-title {
    font-size: 1.5rem;
  }
}

