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

:root {
  --primary-color: #ff6b35;
  --secondary-color: #004e89;
  --accent-color: #f7b801;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --text-color: #2d3748;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #f7b801);
  --gradient-secondary: linear-gradient(135deg, #004e89, #1a1a2e);
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Syne', sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: var(--light-color);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept,
.btn-learn {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

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

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

.btn-learn {
  background: transparent;
  color: white;
  border: 1px solid white;
}

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

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark-color);
  margin: 3px 0;
  transition: 0.3s;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-secondary);
  padding: 100px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: white;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
}

.hero-content {
  color: white;
  max-width: 900px;
  margin-bottom: 50px;
}

.hero-badge {
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid var(--accent-color);
}

.hero-content h1 {
  font-family: var(--font-secondary);
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.highlight {
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

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

.hero-content p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: white;
  color: var(--dark-color);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stats .stat-number {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 0 20px rgba(247, 184, 1, 0.4);
}

.hero-stats .stat-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.hero-image {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: var(--gradient-primary);
  border-radius: 30px;
  opacity: 0.2;
  filter: blur(50px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: #ff8555;
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.services {
  padding: 70px 0;
  background: var(--light-color);
}

.services h2,
.process h2,
.why-choose h2,
.cta h2 {
  font-family: var(--font-secondary);
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

.process {
  padding: 70px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 25px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
}

.expertise {
  padding: 100px 0;
  background: var(--light-color);
}

.expertise h2 {
  font-family: var(--font-secondary);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.expertise-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.expertise-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.expertise-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.expertise-card:nth-child(even) .expertise-content {
  order: 1;
}

.expertise-card:nth-child(even) .expertise-image {
  order: 2;
}

.expertise-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-content h3 {
  font-family: var(--font-secondary);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.expertise-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.testimonials {
  padding: 100px 0;
  background: var(--dark-color);
  color: white;
}

.testimonials h2 {
  font-family: var(--font-secondary);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author strong {
  color: var(--accent-color);
  font-size: 16px;
}

.testimonial-author span {
  font-size: 14px;
  opacity: 0.8;
  display: block;
  margin-top: 5px;
}

.portfolio-showcase {
  padding: 100px 0;
  background: var(--light-color);
}

.portfolio-showcase h2 {
  font-family: var(--font-secondary);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-number {
  position: absolute;
  top: -15px;
  left: 40px;
  background: var(--gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 18px;
}

.portfolio-item h3 {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
  margin-top: 20px;
}

.portfolio-item p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-color);
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  background: var(--accent-color);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.next-steps {
  padding: 100px 0;
  background: var(--gradient-secondary);
  color: white;
}

.cta {
  padding: 100px 0;
  background: var(--gradient-secondary);
  color: white;
}

.next-steps-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.next-steps-text h2 {
  font-family: var(--font-secondary);
  font-size: 42px;
  margin-bottom: 25px;
  color: white;
}

.next-steps-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.next-steps-features {
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-icon {
  background: var(--accent-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.next-steps-contact {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.next-steps-contact h3 {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-bottom: 25px;
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  font-size: 15px;
  opacity: 0.9;
}

.contact-item strong {
  color: var(--accent-color);
}

.footer {
  background: var(--dark-color);
  color: white;
  padding: 30px 0;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

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

.copyright {
  font-size: 13px;
  opacity: 0.8;
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-secondary);
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.95;
}

.timeline-intro,
.industries-intro {
  padding: 60px 0;
  text-align: center;
}

.timeline-intro h2,
.industries-intro h2 {
  font-family: var(--font-secondary);
  font-size: 32px;
  margin-bottom: 20px;
}

.timeline-intro p,
.industries-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}

.timeline-details {
  padding: 60px 0;
  background: var(--light-color);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.timeline-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-icon {
  text-align: center;
  margin-bottom: 20px;
}

.timeline-icon i {
  font-size: 36px;
  color: var(--primary-color);
}

.timeline-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
  text-align: center;
}

.timeline-duration {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.timeline-card ul {
  list-style: none;
}

.timeline-card li {
  padding: 8px 0;
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}

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

.timeline-factors {
  padding: 60px 0;
}

.timeline-factors h2 {
  font-family: var(--font-secondary);
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.factor-item {
  text-align: center;
  padding: 25px;
}

.factor-item i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.factor-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.factor-item p {
  font-size: 14px;
  line-height: 1.7;
}

.industries-list {
  padding: 60px 0;
}

.industry-item {
  margin-bottom: 50px;
}

.industry-content {
  background: var(--light-color);
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.industry-icon {
  margin-bottom: 20px;
}

.industry-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.industry-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.industry-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.industry-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.industry-content li {
  padding: 8px 0;
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}

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

.industry-approach {
  padding: 60px 0;
  background: var(--light-color);
}

.industry-approach h2 {
  font-family: var(--font-secondary);
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.approach-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.approach-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.approach-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.approach-card p {
  font-size: 14px;
  line-height: 1.7;
}

.contact-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-secondary);
  font-size: 42px;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 17px;
  opacity: 0.95;
}

.contact-main {
  padding: 70px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-family: var(--font-secondary);
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.contact-info > p {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.info-item p {
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--light-color);
  padding: 35px;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color 0.3s;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  align-items: flex-start;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-color);
}

.map-section {
  padding: 60px 0;
  background: var(--light-color);
}

.map-section h2 {
  font-family: var(--font-secondary);
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.thankyou-content,
.error-content {
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.thankyou-box,
.error-box {
  text-align: center;
  max-width: 600px;
}

.thankyou-box i {
  font-size: 80px;
  color: var(--success-color);
  margin-bottom: 25px;
}

.thankyou-box h1,
.error-box h1 {
  font-family: var(--font-secondary);
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.thankyou-box p,
.error-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.error-number {
  font-family: var(--font-secondary);
  font-size: 120px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 50px 0;
  text-align: center;
}

.policy-hero h1 {
  font-family: var(--font-secondary);
  font-size: 38px;
  margin-bottom: 10px;
}

.policy-hero p {
  font-size: 14px;
  opacity: 0.9;
}

.policy-content {
  padding: 60px 0;
  word-break: break-all;
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  font-family: var(--font-secondary);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.policy-text h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.policy-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-text ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.policy-text li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }

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

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

  .hero-image {
    order: -1;
  }

  .hero-image img {
    transform: none;
  }

  .expertise-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .expertise-card:nth-child(even) .expertise-content,
  .expertise-card:nth-child(even) .expertise-image {
    order: unset;
  }

  .next-steps-content {
    grid-template-columns: 1fr;
  }

  .services h2,
  .process h2,
  .expertise h2,
  .testimonials h2,
  .portfolio-showcase h2,
  .next-steps-text h2 {
    font-size: 32px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-cta > div > div {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .thankyou-box h1,
  .error-box h1 {
    font-size: 28px;
  }

  .error-number {
    font-size: 80px;
  }

  .policy-text h2 {
    font-size: 24px;
  }

  .services-grid,
  .timeline-grid,
  .factors-grid,
  .approach-grid,
  .testimonials-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .why-choose-grid,
  .brand-showcase-grid,
  .why-work-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
  }

  .hero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .services,
  .process,
  .expertise,
  .testimonials,
  .portfolio-showcase,
  .next-steps,
  .cta {
    padding: 60px 0;
  }

  .services h2,
  .process h2,
  .expertise h2,
  .testimonials h2,
  .portfolio-showcase h2,
  .next-steps-text h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .service-card,
  .timeline-card,
  .approach-card,
  .testimonial-card,
  .portfolio-item {
    padding: 25px;
  }

  .expertise-card {
    padding: 25px;
  }

  .next-steps-contact {
    padding: 25px;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .contact-main,
  .timeline-intro,
  .timeline-details,
  .timeline-factors,
  .industries-list,
  .industry-approach {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .thankyou-box i {
    font-size: 60px;
  }

  .thankyou-box h1,
  .error-box h1 {
    font-size: 24px;
  }

  .error-number {
    font-size: 60px;
  }

  .policy-content {
    padding: 40px 0;
  }

  .policy-text h2 {
    font-size: 20px;
  }

  .policy-text h3 {
    font-size: 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .stats {
    padding: 60px 0;
  }

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

  .why-choose-grid,
  .brand-showcase-grid,
  .why-work-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-card,
  .brand-showcase-card {
    padding: 25px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 14px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .services,
  .process,
  .expertise,
  .testimonials,
  .portfolio-showcase,
  .next-steps {
    padding: 50px 0;
  }

  .services h2,
  .process h2,
  .expertise h2,
  .testimonials h2,
  .portfolio-showcase h2,
  .next-steps-text h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .service-card i,
  .timeline-icon i,
  .factor-item i,
  .approach-card i {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 12px;
    width: 100%;
  }

  .hero-stats .stat-number {
    font-size: 28px;
  }

  .hero-stats .stat-label {
    font-size: 11px;
  }

  .hero-stats {
    gap: 25px;
  }

  .expertise-content h3 {
    font-size: 20px;
  }

  .portfolio-item h3 {
    font-size: 18px;
  }

  .next-steps-text h2 {
    font-size: 24px;
  }

  .service-card,
  .timeline-card,
  .approach-card,
  .testimonial-card,
  .portfolio-item {
    padding: 18px;
  }

  .service-card h3,
  .timeline-card h3,
  .approach-card h3 {
    font-size: 18px;
  }

  .service-card p,
  .timeline-card li,
  .approach-card p,
  .testimonial-card p {
    font-size: 13px;
  }

  .expertise-card {
    padding: 18px;
    gap: 25px;
  }

  .next-steps-contact {
    padding: 18px;
  }

  .contact-form-wrapper {
    padding: 18px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 13px;
  }

  .map-container {
    height: 300px;
  }

  .page-hero h1,
  .contact-hero h1,
  .policy-hero h1 {
    font-size: 24px;
  }

  .page-hero p,
  .contact-hero p,
  .policy-hero p {
    font-size: 13px;
  }

  .page-hero,
  .contact-hero,
  .policy-hero {
    padding: 35px 0;
  }

  .timeline-intro h2,
  .industries-intro h2,
  .timeline-factors h2,
  .industry-approach h2 {
    font-size: 22px;
  }

  .timeline-duration {
    font-size: 16px;
  }

  .industry-content h3 {
    font-size: 20px;
  }

  .industry-content {
    padding: 25px;
  }

  .info-item h3 {
    font-size: 14px;
  }

  .info-item i {
    font-size: 20px;
  }

  .thankyou-box i {
    font-size: 50px;
  }

  .thankyou-box h1,
  .error-box h1 {
    font-size: 22px;
  }

  .error-number {
    font-size: 60px;
  }

  .policy-text h2 {
    font-size: 20px;
  }

  .policy-text h3 {
    font-size: 17px;
  }

  .policy-text p,
  .policy-text li {
    font-size: 13px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
  }

  .privacy-content {
    flex-direction: column;
    gap: 15px;
  }

  .privacy-content p {
    font-size: 12px;
  }

  .btn-accept,
  .btn-learn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .stats {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stats .stat-item {
    padding: 30px 20px;
  }

  .stats .stat-number {
    font-size: 48px;
  }

  .stats .stat-item p {
    font-size: 14px;
  }

  .why-choose-grid,
  .brand-showcase-grid,
  .why-work-grid,
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card,
  .brand-showcase-card {
    padding: 20px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .process-step h3 {
    font-size: 18px;
  }

  .process-step p {
    font-size: 13px;
  }

  .portfolio-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .portfolio-tags span {
    font-size: 11px;
    padding: 5px 12px;
  }

  .feature-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .feature-item {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
  }

  .next-steps-contact h3 {
    font-size: 20px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-info > p {
    font-size: 13px;
  }
}

.stats {
  padding: 100px 0;
  background: var(--light-color);
  position: relative;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stats .stat-item {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.stats .stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.stats .stat-number {
  font-family: var(--font-secondary);
  font-size: 64px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.stats .stat-item p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.why-choose-grid,
.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.why-choose-card,
.brand-showcase-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
