@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-light: #111827;
  --navy-lighter: #1f2937;
  --navy-border: #374151;
  --violet: #7c3aed;
  --violet-light: #ede9fe;
  --violet-dark: #6d28d9;
  --white: #ffffff;
  --gray: #9ca3af;
  --gray-light: #d1d5db;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--violet);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--violet-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-violet {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

.btn-violet:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}

.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  color: var(--violet);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--violet);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.navbar-brand:hover {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--violet);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(109, 40, 217, 0.05) 50%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--violet);
}

.hero p {
  font-size: 20px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--navy-border);
}

.hero-stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--violet);
}

.hero-stat p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.process-step {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.process-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  margin-top: 16px;
}

.service-card ul li {
  font-size: 14px;
  color: var(--gray-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}

.stats-section {
  background: var(--navy-light);
  border-top: 1px solid var(--navy-lighter);
  border-bottom: 1px solid var(--navy-lighter);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 44px;
  font-weight: 900;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.case-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
}

.case-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.case-card .case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.case-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-card .case-client {
  font-size: 13px;
  color: var(--violet);
  font-weight: 500;
  margin-bottom: 14px;
}

.case-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-card .case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--violet);
}

.testimonial-card .stars {
  color: var(--violet);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--violet);
}

.testimonial-card .author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card .author-info span {
  font-size: 12px;
  color: var(--gray);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--navy-border);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .faq-icon {
  font-size: 20px;
  color: var(--violet);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
  border-top: 1px solid var(--navy-lighter);
  border-bottom: 1px solid var(--navy-lighter);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
}

.cta-content .btn {
  font-size: 18px;
  padding: 16px 40px;
}

.keywords-section {
  padding: 60px 0;
}

.keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.keyword-tag {
  padding: 8px 18px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray);
  transition: var(--transition);
}

.keyword-tag:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.footer {
  background: var(--navy-light);
  border-top: 1px solid var(--navy-lighter);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  font-size: 14px;
  color: var(--gray);
}

.footer-links ul a:hover {
  color: var(--violet);
}

.footer-sisters {
  padding: 30px 0;
  border-top: 1px solid var(--navy-lighter);
  border-bottom: 1px solid var(--navy-lighter);
  margin-bottom: 24px;
}

.footer-sisters h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.sister-sites {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sister-sites a {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sister-sites a::before {
  content: '\2197';
  color: var(--violet);
}

.sister-sites a:hover {
  color: var(--violet);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
}

.footer-bottom a:hover {
  color: var(--violet);
}

.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06) 0%, transparent 100%);
}

.page-header h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .cd-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 14px;
  color: var(--gray);
}

.form-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy);
  border: 1px solid var(--navy-lighter);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy-light);
  color: var(--white);
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  width: 100%;
  height: 400px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.value-card .value-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.skill-category {
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 16px;
  padding: 28px;
}

.skill-category h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--violet);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags span {
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 6px;
  font-size: 13px;
  color: var(--violet-light);
}

.profile-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.profile-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--navy-light);
  border: 1px solid var(--navy-lighter);
  border-radius: 12px;
  transition: var(--transition);
}

.profile-link-card:hover {
  border-color: var(--violet);
  transform: translateX(4px);
}

.profile-link-card .plc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.profile-link-card .plc-info {
  display: flex;
  flex-direction: column;
}

.profile-link-card .plc-info strong {
  font-size: 14px;
  font-weight: 600;
}

.profile-link-card .plc-info span {
  font-size: 12px;
  color: var(--gray);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .profile-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background: var(--navy-light);
    border: 1px solid var(--navy-lighter);
    border-radius: 12px;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-links a:hover {
    background: var(--navy-lighter);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .section-title {
    font-size: 30px;
  }
  .process-grid,
  .services-grid,
  .case-studies-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item h3 {
    font-size: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .sister-sites {
    flex-direction: column;
    align-items: center;
  }
  .page-header h1 {
    font-size: 34px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .form-card {
    padding: 24px;
  }
  .stat-item h3 {
    font-size: 28px;
  }
}