:root {
  /* Цветовая схема - Нейтральная с ретро элементами */
  --primary-color: #3a7bd5;
  --primary-dark: #2c5f9e;
  --primary-light: #6399e9;
  --secondary-color: #e67e22;
  --secondary-dark: #c26515;
  --secondary-light: #f39c12;
  --accent-color: #9b59b6;
  --accent-dark: #8e44ad;
  --accent-light: #a978c2;

  /* Нейтральные цвета */
  --neutral-100: #f8f9fa;
  --neutral-200: #e9ecef;
  --neutral-300: #dee2e6;
  --neutral-400: #ced4da;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Системные цвета */
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  
  /* Фоны и тени */
  --bg-light: #ffffff;
  --bg-dark: #212529;
  --bg-alt: #f8f9fa;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Типографика */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Размеры шрифтов */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  
  /* Радиусы */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Анимации */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: var(--fs-md);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid & Flex Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--neutral-800);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Buttons */
.btn, 
button:not(.mobile-menu-toggle), 
input[type="submit"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.btn:hover, 
button:not(.mobile-menu-toggle):hover, 
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
  background-color: var(--primary-dark);
}

.btn:active, 
button:not(.mobile-menu-toggle):active, 
input[type="submit"]:active {
  transform: translateY(-1px);
}

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

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

.secondary-btn {
  background-color: var(--secondary-color);
  color: white;
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

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

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: var(--fs-2xl);
  margin: 0;
  color: var(--neutral-800);
}

.logo span {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav ul li {
  margin-left: 2rem;
}

.main-nav ul li a {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--neutral-700);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav ul li a:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition);
}

.main-nav ul li a:hover {
  color: var(--primary-color);
}

.main-nav ul li a:hover:before {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-light);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding-top: 80px;
  transition: right var(--transition);
  overflow-y: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-menu ul li a {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--neutral-800);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  transition: color var(--transition-fast);
}

.mobile-menu ul li a:hover {
  color: var(--primary-color);
}

.mobile-menu.active {
  right: 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  height: 100vh;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: var(--fs-5xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--fs-xl);
  margin-bottom: 2.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

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

.about-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition);
  object-fit: cover;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-widget {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
  flex: 1;
}

.stat-widget:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Behind Scenes Section */
.behind-scenes-section {
  background-color: var(--bg-alt);
}

.scenes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.scenes-text h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.scenes-text p {
  margin-bottom: 1.5rem;
}

.scenes-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  order: -1;
}

.scenes-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition);
  object-fit: cover;
}

.scenes-image:hover img {
  transform: scale(1.05);
}

.toggle-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
}

.toggle-label {
  font-weight: 600;
  color: var(--neutral-700);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-300);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-switch label:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.toggle-switch input:checked + label {
  background-color: var(--primary-color);
}

.toggle-switch input:checked + label:before {
  transform: translateX(26px);
}

/* Methodology Section */
.methodology-section {
  background-color: var(--bg-light);
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.methodology-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
}

.methodology-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition);
  object-fit: cover;
}

.methodology-image:hover img {
  transform: scale(1.05);
}

.methodology-text h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.methodology-text p {
  margin-bottom: 1.5rem;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--box-shadow-hover);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}

.step-content p {
  font-size: var(--fs-sm);
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Projects Section */
.projects-section {
  background-color: var(--bg-alt);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-content h3 {
  font-size: var(--fs-xl);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-content .btn {
  align-self: center;
}

/* Resources Section */
.resources-section {
  background-color: var(--bg-light);
}

.resources-content {
  text-align: center;
}

.resources-content p {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-card h3 {
  font-size: var(--fs-xl);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.resource-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-card a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.resource-card a:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.resource-card a:hover {
  color: var(--secondary-dark);
}

.resource-card a:hover:after {
  transform: translateX(5px);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-alt);
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.pricing-text {
  padding-right: 2rem;
}

.pricing-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.pricing-cards .card {
  padding: 0;
}

.card-header {
  background-color: var(--primary-light);
  padding: 1.5rem;
  text-align: center;
  color: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.featured .card-header {
  background-color: var(--primary-color);
}

.card-header h3 {
  font-size: var(--fs-xl);
  color: white;
  margin-bottom: 0.5rem;
}

.card-header .price {
  font-size: var(--fs-2xl);
  font-weight: 700;
}

.card.featured {
  position: relative;
  transform: scale(1.05);
  z-index: 1;
}

.card.featured:before {
  content: 'Nejoblíbenější';
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.card-content ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-200);
  position: relative;
  padding-left: 1.5rem;
}

.card-content ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: var(--fs-xl);
  color: var(--primary-color);
}

.contact-item h4 {
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
  color: var(--neutral-800);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--neutral-600);
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-size: var(--fs-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group button {
  justify-self: end;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: var(--fs-2xl);
  color: white;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-logo p {
  color: var(--neutral-400);
}

.footer-links h4 {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-light);
}

.footer-social h4 {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-social h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

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

.social-links a {
  color: var(--neutral-400);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--neutral-500);
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  margin-bottom: 2rem;
}

.content-page h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-page p {
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .about-content,
  .scenes-content,
  .methodology-content,
  .pricing-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image,
  .scenes-image,
  .methodology-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-text {
    padding-right: 0;
  }
  
  .scenes-image {
    order: 0;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .card.featured {
    transform: none;
  }
  
  .card.featured:before {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.25rem;
    --fs-4xl: 1.875rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.375rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .toggle-container {
    gap: 0.75rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.25rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero {
    height: 90vh;
  }
  
  .hero-content h1 {
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    margin-bottom: 1.5rem;
  }
  
  .projects-grid,
  .resources-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* Animations & Effects */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
}

.slide-right {
  opacity: 0;
  transform: translateX(-30px);
}

/* Icons */
.icon-location:before,
.icon-phone:before,
.icon-email:before {
  font-family: sans-serif;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
}

.icon-location:before { content: "📍"; }
.icon-phone:before { content: "📞"; }
.icon-email:before { content: "✉️"; }

/* Retro and Curved Grid Elements */
.retro-box {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  opacity: 0.1;
  border-radius: 10px;
  transform: rotate(45deg);
  z-index: -1;
}

.curved-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 22px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 22px
  );
  transform: perspective(1000px) rotateX(5deg);
  pointer-events: none;
  z-index: -1;
  border-radius: var(--radius-lg);
}

/* Add curved grid to sections */
.about-section, 
.methodology-section, 
.projects-section,
.pricing-section,
.resources-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.about-section:before,
.methodology-section:before,
.contact-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.projects-section:before,
.pricing-section:before,
.resources-section:before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-color);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

/* Util Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.mobile-menu-toggle{
  display: none !important;
}