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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.header__nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo::before {
  content: '';
  width: 6px;
  height: 28px;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  border-radius: 2px;
}

.header__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.header__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.header__link:hover {
  color: #fff;
}

.header__link:hover::after {
  width: 100%;
}

.header__link--cta {
  background: #fff !important;
  color: #1a1a1a !important;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #fff;
  position: relative;
}

.header__link--cta::after {
  display: none !important;
}

.header__link--cta:hover {
  background: transparent !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1000;
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  padding-bottom: 3rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}

.header__mobile-menu--active {
  transform: translateY(0);
  opacity: 1;
}

.header__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header__mobile-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.header__mobile-link:hover {
  color: #fff;
  padding-left: 0.5rem;
}

.header__mobile-link--cta {
  background: #fff;
  color: #1a1a1a;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  border: 2px solid #fff;
}

.header__mobile-link--cta:hover {
  background: transparent;
  color: #fff;
  padding-left: 2rem;
}

@media (max-width: 968px) {
  .header__nav {
    padding: 0.8rem 2rem;
  }
  
  .header__links {
    display: none;
  }
  
  .header__menu-toggle {
    display: block;
  }
  
  .header__mobile-menu {
    display: block;
  }
}

/* Hero Block */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 12rem;
  margin-top: 65px;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.hero__badge {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -3px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero__title-highlight {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  border: 2px solid #fff;
}

.hero__button:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.hero__button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.hero__stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 968px) {
  .hero__title {
    font-size: 3rem;
    letter-spacing: -2px;
  }
  
  .hero__subtitle {
    font-size: 1.2rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__button {
    width: 100%;
    max-width: 300px;
  }
  
  .hero__stats {
    gap: 2rem;
  }
  
  .hero__stat-number {
    font-size: 2rem;
  }
}

/* Section Block */
.section {
  padding: 6rem 4rem;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section__subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
  font-weight: 300;
}

/* Services Block */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.services__card {
  padding: 3rem 2rem;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  transition: all 0.3s;
  background: #fff;
}

.services__card:hover {
  border-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services__icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services__icon .material-symbols-outlined {
  font-size: 64px;
  color: #1a1a1a;
  transition: all 0.3s;
}

.services__card:hover .services__icon .material-symbols-outlined {
  transform: scale(1.1);
}

.services__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services__description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about {
  background: #f8f8f8;
  position: relative;
  width: 100%;
}

.about__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

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

.about__paragraph {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

.about__paragraph strong {
  font-weight: 700;
  color: #1a1a1a;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about__stat {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.about__stat:hover {
  border-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about__stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about__stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonials {
  background: #f8f8f8;
  color: #1a1a1a;
  width: 100%;
}

.testimonials .section__title,
.testimonials .section__subtitle {
  color: #1a1a1a;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonials__card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.3s;
  position: relative;
}

.testimonials__card:hover {
  border-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonials__quote-icon {
  font-size: 3rem;
  color: #e5e5e5;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.testimonials__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
}

.testimonials__author-info {
  flex: 1;
}

.testimonials__author-name {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.testimonials__author-role {
  color: #666;
  font-size: 0.9rem;
}

.testimonials__badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonials__badge {
  text-align: center;
}

.testimonials__badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.testimonials__badge-label {
  color: #666;
  font-size: 0.95rem;
}

/* Contact Block */
.contact {
  background: #fff;
  color: #1a1a1a;
  width: 100%;
}

.contact .section__title,
.contact .section__subtitle {
  color: #1a1a1a;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact__card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.3s;
}

.contact__card:hover {
  border-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact__title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.contact__item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.contact__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact__item p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #333;
}

.contact__item strong {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.contact__link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s;
  display: inline-block;
  font-weight: 500;
}

.contact__link:hover {
  color: #666;
  transform: translateX(5px);
}

.contact__cta {
  background: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__cta:hover {
  border-color: #333;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact__cta-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.contact__cta-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact__cta .hero__button:first-of-type {
  margin-bottom: 10px;
}

.contact__cta .hero__button {
  width: auto;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  width: 100%;
}

.contact__cta .hero__button:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Footer Block */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 4rem 2rem;
  border-top: 1px solid #333;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333;
}

.footer__section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer__text {
  color: #999;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link-item {
  margin-bottom: 0.8rem;
}

.footer__link {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}

.footer__link:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__legal-link:hover {
  color: #fff;
}

@media (max-width: 968px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .section {
    padding: 4rem 2rem;
  }
  
  .hero {
    padding: 2rem;
    margin-top: 65px;
  }
  
  .hero__title {
    font-size: 3rem;
    letter-spacing: -2px;
  }
  
  .hero__subtitle {
    font-size: 1.2rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__button {
    width: 100%;
  }
  
  .hero__stats {
    gap: 2rem;
    flex-wrap: nowrap;
  }

  .hero__stat {
    width: 100%;
  }
  
  .hero__stat-number {
    font-size: 2rem;
  }
  
  .section__title {
    font-size: 2.5rem;
  }
  
  .section__subtitle {
    font-size: 1.1rem;
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about__stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
  
  .services__card {
    padding: 2.5rem 2rem;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__cta .hero__button {
    width: 100%;
  }
  
  .footer {
    padding: 4rem 2rem 2rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .hero__badge {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
  }
  
  .hero__stat-number {
    font-size: 1.8rem;
  }
  
  .hero__stat-label {
    font-size: 0.8rem;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
  }
  
  .about__stat {
    padding: 2rem 1.5rem;
  }
  
  .about__stat-number {
    font-size: 2.5rem;
  }
  
  .services__title {
    font-size: 1.3rem;
  }
  
  .testimonials__badges {
    flex-direction: column;
    gap: 2rem;
  }
  
  .testimonials__badge-number {
    font-size: 2rem;
  }
  
  .contact__card {
    padding: 2rem 1.5rem;
  }
  
  .contact__title {
    font-size: 1.5rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
  }
}

/* Offer Page Styles */
.offer-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
  margin-top: 65px;
}

.offer-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.offer-hero__subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.header__link--active {
  color: #fff !important;
  font-weight: 600;
}

.offer-detail {
  padding: 4rem 2rem;
}

.offer-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.offer-detail__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-detail__icon .material-symbols-outlined {
  font-size: 3rem;
  color: #fff;
}

.offer-detail__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.offer-detail__lead {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.offer-detail__content {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-detail__section {
  margin-bottom: 3rem;
}

.offer-detail__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.offer-detail__section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.offer-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offer-detail__item {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.offer-detail__item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.offer-detail__item ul {
  list-style: none;
  padding: 0;
}

.offer-detail__item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
  line-height: 1.6;
}

.offer-detail__item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 700;
}

.offer-detail__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offer-detail__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.offer-detail__feature .material-symbols-outlined {
  font-size: 2.5rem;
  color: #1a1a1a;
  flex-shrink: 0;
}

.offer-detail__feature h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.offer-detail__feature p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.offer-detail__cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
}

.offer-detail__cta-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.offer-detail__cta-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.offer-detail__cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-summary {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 5rem 2rem;
}

.offer-summary .section__title {
  color: #fff;
}

.offer-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.offer-summary__item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-summary__number {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.offer-summary__item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.offer-summary__item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.offer-contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.offer-contact__info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.offer-contact__info p {
  margin-bottom: 0.5rem;
  color: #444;
}

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

.offer-contact__links strong {
  color: #1a1a1a;
  font-weight: 700;
}

.offer-contact__cta {
  background: #f8f8f8;
  padding: 3rem;
  border-radius: 20px;
}

.offer-contact__cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.offer-contact__cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .offer-hero__title {
    font-size: 2.5rem;
  }
  
  .offer-hero__subtitle {
    font-size: 1.1rem;
  }
  
  .offer-detail__header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .offer-detail__title {
    font-size: 2rem;
  }
  
  .offer-detail__lead {
    font-size: 1.1rem;
  }
  
  .offer-detail__grid {
    grid-template-columns: 1fr;
  }
  
  .offer-detail__features {
    grid-template-columns: 1fr;
  }
  
  .offer-detail__cta-box {
    padding: 2rem;
  }
  
  .offer-detail__cta-buttons {
    flex-direction: column;
  }
  
  .offer-summary__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .offer-contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .offer-contact__cta {
    padding: 2rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__legal {
    justify-content: center;
  }
}

/* Legal Pages Styles */
.legal-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
  margin-top: 65px;
}

.legal-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.legal-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.legal-content {
  padding: 4rem 2rem;
  background: #fff;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e5e5;
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: #1a1a1a;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #333;
}

.legal-section strong {
  font-weight: 600;
  color: #1a1a1a;
}

@media (max-width: 968px) {
  .legal-hero__title {
    font-size: 2rem;
  }
  
  .legal-hero__subtitle {
    font-size: 1rem;
  }
  
  .legal-content {
    padding: 2rem 1rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
}
