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

:root {
  --dark: #0f172a;
  --navy: #1e293b;
  --coral: #ff6b6b;
  --cream: #fef3f2;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 15px 20px;
  z-index: 9999;
  display: none;
}

.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 {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

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

.btn-accept,
.btn-learn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

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

.btn-accept:hover {
  background: #ff5252;
}

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

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

.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

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

.hero {
  background: var(--cream);
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.hero-left {
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 107, 0.15);
  color: var(--coral);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.btn-hero {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  align-self: flex-start;
}

.btn-hero:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--dark);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 14px;
}

.trust-text span {
  font-size: 12px;
  opacity: 0.7;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-image-wrapper {
  position: relative;
  max-width: 600px;
}

.hero-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.card-1 {
  top: 10%;
  left: -30px;
}

.hero-float-card.card-2 {
  bottom: 15%;
  right: -30px;
}

.card-icon {
  font-size: 2rem;
}

.hero-float-card strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.hero-float-card span {
  font-size: 12px;
  color: var(--navy);
  opacity: 0.7;
}

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

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 14px;
  opacity: 0.8;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--navy);
  font-size: 1.05rem;
  opacity: 0.8;
}

.section-tag {
  display: inline-block;
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.section-intro.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  color: var(--navy);
  opacity: 0.8;
}

.services {
  background: white;
}

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

.service-card {
  background: var(--cream);
  padding: 35px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.process {
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.step-number {
  width: 70px;
  height: 70px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  margin-bottom: 1rem;
}

.step p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.showcase {
  background: white;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.visual-frame {
  position: relative;
}

.visual-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--coral);
  opacity: 0.1;
  border-radius: 12px;
  z-index: -1;
}

.visual-frame img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-content h2 {
  margin-bottom: 1.5rem;
}

.showcase-content p {
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 2.5rem;
}

.point-item {
  display: flex;
  gap: 20px;
}

.point-num {
  width: 45px;
  height: 45px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.point-item h4 {
  margin-bottom: 0.5rem;
}

.point-item p {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.8;
  margin: 0;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

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

.expertise {
  background: var(--cream);
}

.expertise-content {
  max-width: 1000px;
  margin: 0 auto;
}

.expertise-text {
  text-align: center;
  margin-bottom: 50px;
}

.expertise-text h2 {
  margin-bottom: 1.2rem;
}

.expertise-text p {
  color: var(--navy);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.expertise-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
}

.expertise-item h3 {
  margin-bottom: 0.8rem;
  color: var(--coral);
}

.expertise-item p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.testimonials {
  background: var(--dark);
  color: white;
}

.testimonials .section-intro h2,
.testimonials .section-intro p {
  color: white;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-mark {
  font-size: 4rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-box p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  font-size: 13px;
  opacity: 0.7;
}

.work-preview {
  background: white;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-card {
  background: var(--cream);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.work-category {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.work-card h3 {
  margin-bottom: 0.8rem;
}

.work-card p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.industries {
  background: var(--cream);
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-tag {
  background: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-3px);
}

.final-cta {
  background: var(--coral);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-block h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content-block p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3rem;
  align-items: center;
}

.benefit-check {
  font-size: 15px;
  font-weight: 500;
}

.benefit-check::before {
  content: '✓ ';
  font-weight: 700;
  margin-right: 8px;
}

.btn-cta-large {
  display: inline-block;
  padding: 18px 50px;
  background: white;
  color: var(--coral);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

.btn-cta-large:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 14px;
  opacity: 0.9;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: white;
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
}

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

.content-layout.reverse {
  direction: rtl;
}

.content-layout.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 1.5rem;
}

.content-text p {
  margin-bottom: 1.2rem;
  color: var(--navy);
  line-height: 1.8;
}

.content-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.rebrand-reasons,
.strategy-components {
  background: var(--cream);
}

.reasons-grid,
.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card,
.component-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.reason-card:hover,
.component-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-number,
.component-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.reason-card h3,
.component-card h3 {
  margin-bottom: 1rem;
}

.reason-card p,
.component-card p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.rebrand-approach,
.strategy-benefits {
  background: white;
}

.approach-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 40px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--coral);
  opacity: 0.3;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.timeline-content h3 {
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.products {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.product-card {
  background: white;
  border: 2px solid var(--cream);
  border-radius: 12px;
  padding: 40px 35px;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--coral);
}

.product-card.featured {
  border-color: var(--coral);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.product-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: var(--coral);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--cream);
}

.product-header h3 {
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--coral);
}

.product-features p {
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.product-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-mark {
  color: var(--coral);
  font-weight: 700;
  font-size: 18px;
}

.btn-product {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--dark);
  color: white;
  border-radius: 8px;
  font-weight: 600;
}

.btn-product:hover {
  background: var(--coral);
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 30px;
  background: var(--cream);
  border-radius: 12px;
}

.benefit-number {
  width: 70px;
  height: 70px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-content h3 {
  margin-bottom: 0.8rem;
}

.benefit-content p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding: 80px 0;
}

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

.contact-info h2 {
  margin-bottom: 1.2rem;
}

.contact-info > p {
  color: var(--navy);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 40px;
  border-radius: 12px;
}

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

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid transparent;
  background: white;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
}

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

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

.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  line-height: 1.6;
}

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

.checkbox-label a {
  color: var(--coral);
  text-decoration: underline;
}

.btn-submit {
  padding: 14px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #ff5252;
}

.map-section {
  padding: 0 0 80px 0;
}

.map-wrapper iframe {
  border-radius: 12px;
  width: 100%;
}

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

.thankyou-content,
.error-content {
  max-width: 650px;
}

.thankyou-icon {
  margin-bottom: 2rem;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 1.2rem;
}

.thankyou-content p,
.error-content p {
  color: var(--navy);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.policy-hero {
  background: var(--dark);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

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

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

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

.policy-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.policy-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.policy-text p {
  margin-bottom: 1.2rem;
  color: var(--navy);
  line-height: 1.9;
}

.policy-text strong {
  color: var(--dark);
}

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

  .hero-left {
    padding: 60px 0;
  }

  .hero-right {
    padding: 60px 20px;
  }

  .hero-float-card.card-1 {
    left: 20px;
  }

  .hero-float-card.card-2 {
    right: 20px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .showcase-layout,
  .content-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    max-height: 300px;
  }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid var(--cream);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-float-card {
    padding: 12px 15px;
  }

  .hero-float-card strong {
    font-size: 12px;
  }

  .hero-float-card span {
    font-size: 11px;
  }

  .card-icon {
    font-size: 1.5rem;
  }

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

  .impact-number {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 0;
  }

  .services-grid,
  .reasons-grid,
  .components-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }

  .error-code {
    font-size: 6rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

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

  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .benefit-number {
    margin: 0 auto;
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px;
  }

  .timeline-item::before {
    display: none;
  }

  .cta-content-block h2 {
    font-size: 2.2rem;
  }

  .cta-content-block p {
    font-size: 1.05rem;
  }

  .final-cta {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  body {
    font-size: 13px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .service-card,
  .reason-card,
  .component-card {
    padding: 25px 20px;
  }

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

  .product-card {
    padding: 30px 25px;
  }

  .cta-content-block h2 {
    font-size: 2rem;
  }

  .btn-hero,
  .btn-cta-large {
    padding: 14px 30px;
    font-size: 14px;
  }

  .impact-number {
    font-size: 2.2rem;
  }

  .logo {
    font-size: 1rem;
  }
}

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

  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  body {
    font-size: 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .btn-hero,
  .btn-secondary,
  .btn-submit,
  .btn-cta-large {
    padding: 12px 24px;
    font-size: 13px;
  }

  .service-card,
  .reason-card,
  .component-card {
    padding: 20px 15px;
  }

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

  .product-card {
    padding: 25px 20px;
  }

  .cta-content-block h2 {
    font-size: 1.8rem;
  }

  .cta-content-block p {
    font-size: 1rem;
  }
}

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

  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  body {
    font-size: 12px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .btn-hero,
  .btn-secondary,
  .btn-submit,
  .btn-cta-large,
  .btn-product {
    padding: 10px 20px;
    font-size: 12px;
  }

  .service-card,
  .reason-card,
  .component-card {
    padding: 18px 15px;
  }

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

  .product-card {
    padding: 22px 18px;
  }

  .impact-number {
    font-size: 2rem;
  }

  .error-code {
    font-size: 5rem;
  }

  .success-checkmark {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .benefit-item {
    padding: 20px;
  }

  .testimonial-box {
    padding: 25px;
  }

  .cta-content-block h2 {
    font-size: 1.7rem;
  }

  .cta-content-block p {
    font-size: 0.95rem;
  }

  .final-cta {
    padding: 50px 0;
  }

  .hero-float-card {
    padding: 10px 12px;
  }

  .avatar {
    width: 35px;
    height: 35px;
    font-size: 11px;
  }
}
