*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', Arial, sans-serif; color: #000; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }

/* HEADER */
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(48,47,47,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header-logo { padding-top: 5px; }
.header-logo a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #616161;
  display: block;
  line-height: 1;
}
.header-line {
  width: 32px;
  height: 4px;
  background: #038eff;
  margin: 1px 0 0;
}
.header-tagline {
  font-size: 15px;
  font-weight: 300;
  color: #000;
  line-height: 1;
  margin-top: 2px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 27px;
}
.header-phones {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.header-phones .label { font-size: 12px; color: #364c75; }
.header-phones .phone-big { font-size: 16px; font-weight: 700; }
.header-phones .phone-client { color: #d32f2f; }
.header-phones .phone-support { color: #2e7d32; }
.header-phones .phone-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.phone-hours { font-size: 11px; color: #666; line-height: 1.3; margin-top: 1px; }
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 40px;
  background: #1780d6;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  transition: background 0.1s;
}
.header-btn:hover { background: #1565c0; }

/* SERVICES */
.services {
  width: 100%;
  background: #fff;
  padding: 20px 0 106px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 0 20px;
  margin-bottom: 27px;
  letter-spacing: 1px;
}
.services-grid {
  display: grid;
  grid-template-columns: 410px 40px 410px 40px 260px;
  grid-template-rows: 150px 40px 150px;
  grid-template-areas:
    "internet . security . business"
    ". . . . business"
    "smart . tv . business";
  padding: 0 20px;
}
.card-internet { grid-area: internet; }
.card-security { grid-area: security; }
.card-smart { grid-area: smart; }
.card-tv { grid-area: tv; }
.service-card.business-card { grid-area: business; }

.service-card {
  position: relative;
  width: 100%;
  height: 150px;
  background: #fff;
  box-shadow: 0 0 20px rgba(74,74,74,0.2);
  display: flex;
  align-items: center;
  padding: 0 0 0 60px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 0 30px rgba(74,74,74,0.3); }
.service-card-text {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}
.service-card-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-card-icon {
  transform: translate(-10px, 10px) scale(1.15);
}
.service-card-icon .circle {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 7px;
  right: 0;
  border-radius: 50%;
}
.service-card-icon img {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.card-internet .circle { background: #CC4325; }
.card-security .circle { background: #259ACC; }
.card-smart .circle { background: #B95DE4; }
.card-tv .circle { background: #E8AC14; }
.card-business .circle { background: #25CC68; }

.service-card.business-card {
  height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.service-card.business-card .service-card-text {
  text-align: center;
  margin-top: 24px;
}
.service-card.business-card .service-card-icon {
  position: relative;
  right: auto;
  top: auto;
}

/* FOOTER */
.footer {
  width: 100%;
  background: #302f2f;
  color: #fff;
  padding: 50px 0 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}
.footer-line {
  width: 32px;
  height: 6px;
  background: #038eff;
  margin-bottom: 5px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 30px;
}
.footer-columns {
  display: flex;
  gap: 0;
  justify-content: space-between;
}
.footer-col { flex: 1; max-width: 300px; }
.footer-col:nth-child(2) { max-width: 260px; margin-left: 160px; }
.footer-col:nth-child(3) { max-width: 240px; }
.footer-req { font-size: 14px; font-weight: 300; line-height: 1.55; }
.footer-req p { margin-bottom: 4px; }
.footer-req .label { display: inline-block; width: 85px; font-weight: 300; }
.footer-req .req-row { margin-bottom: 2px; }
.footer-license { font-size: 14px; font-weight: 300; line-height: 1.55; margin-top: 30px; }
.footer-pay-text { font-size: 14px; font-weight: 300; line-height: 1.55; margin-bottom: 20px; }
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  border: 2px solid transparent;
  transition: background 0.1s;
  margin-bottom: 10px;
  cursor: pointer;
}
.footer-btn-client { width: 260px; background: #1780d6; color: #fff; }
.footer-btn-client:hover { background: #1565c0; }
.footer-btn-cabinet {
  width: 260px;
  background: #1780d6;
  color: #fff;
}
.footer-btn-cabinet:hover { background: #1565c0; }
.footer-btn-client {
  width: 260px;
  background: #fff;
  color: #333;
  border-color: #fff;
}
.footer-btn-client:hover { background: #f0f0f0; }
.footer-desc-link {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin: 10px 0;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 14px; font-weight: 300; color: #fff; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 0.8; }
.footer-tags {
  font-size: 12px;
  font-weight: 100;
  line-height: 1.55;
  color: #757575;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  font-weight: 300;
}
.footer-bottom a { color: #fff; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.8; }
.footer-bottom .copyright { margin-left: auto; }
.footer-bottom-logo { height: 20px; width: auto; vertical-align: middle; margin: 0 10px; }

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup {
  background: #fff;
  width: 560px;
  max-width: 90vw;
  padding: 60px 70px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: none; border: none;
  cursor: pointer;
  font-size: 24px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-title { font-size: 28px; font-weight: 600; text-align: center; margin-bottom: 10px; }
.popup-desc { font-size: 16px; text-align: center; color: #333; margin-bottom: 30px; line-height: 1.4; }
.popup-form .form-group { margin-bottom: 20px; }
.popup-form label { display: block; font-size: 14px; margin-bottom: 5px; color: #333; }
.popup-form input {
  width: 100%; height: 50px;
  padding: 0 15px;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  font-size: 16px;
  color: #000;
  outline: none;
}
.popup-form input:focus { border-color: #1780d6; }
.popup-form .submit-btn {
  width: 100%; height: 50px;
  background: #000; color: #fff;
  border: none; border-radius: 5px;
  font-size: 16px; font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-form .submit-btn:hover { background: #333; }
.t-form__successbox {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

/* CONTENT PAGES (generic) */
.content-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}
.content-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}
.content-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .content-title { font-size: 24px; }
}

/* PRICE TABLE */
.price-table {
  margin: 20px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  gap: 30px;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: #f9f9f9; }
.price-info { flex: 1; }
.price-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}
.price-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.price-value {
  font-size: 22px;
  font-weight: 700;
  color: #d32f2f;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .price-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .price-value { font-size: 18px; }
}

/* INTERNET PAGE */
.internet-form-section {
  background: #eef3f9;
  padding: 50px 0;
}
.internet-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.internet-form-text {
  font-size: 20px;
  font-weight: 600;
  color: #364c75;
  margin-bottom: 30px;
}
.internet-form-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.internet-form-field {
  flex: 0 1 280px;
}
.internet-form-field input {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #1780d6;
  border-radius: 4px;
  font-size: 16px;
  color: #404040;
  outline: none;
  background: #fff;
}
.internet-form-field input::placeholder {
  color: #999;
}
.internet-form-btn {
  height: 44px;
  padding: 0 40px;
  background: #de7111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.1s;
}
.internet-form-btn:hover {
  background: #c8620e;
}
.internet-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.internet-headline {
  font-size: 20px;
  font-weight: 600;
  color: #364c75;
  line-height: 1.3;
  margin-bottom: 30px;
}
.internet-trust {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 50px;
}
.internet-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.internet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: #fff;
  box-shadow: 0 0 20px rgba(74,74,74,0.15);
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.internet-card:hover {
  box-shadow: 0 0 30px rgba(74,74,74,0.25);
}
.internet-card-label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.internet-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.internet-tech {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .internet-cards { gap: 20px; }
  .internet-card { width: 160px; height: 160px; }
  .internet-card img { width: 60px; height: 60px; }
}
@media (max-width: 640px) {
  .internet-form-row { flex-direction: column; }
  .internet-form-field { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .internet-form-btn { width: 100%; max-width: 400px; }
  .internet-cards { gap: 15px; }
  .internet-card { width: 140px; height: 140px; }
  .internet-card img { width: 50px; height: 50px; }
  .internet-headline { font-size: 17px; }
}
@media (max-width: 480px) {
  .internet-cards { gap: 10px; }
  .internet-card { width: 120px; height: 120px; }
  .internet-card img { width: 40px; height: 40px; }
  .internet-card-label { font-size: 13px; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .header { height: 80px; }
  .header-right { gap: 40px; }
  .header-logo a { font-size: 36px; letter-spacing: 2px; }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "internet security"
      "smart business"
      "tv .";
    gap: 20px;
  }
  .service-card { width: 100%; height: 120px; }
  .service-card.business-card {
    height: 120px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 0 0 60px;
  }
  .service-card.business-card .service-card-text { margin-top: 0; text-align: left; }
  .service-card.business-card .service-card-icon { position: absolute; right: 0; top: 0; }
  .footer-col:nth-child(2) { margin-left: 40px; }
}
@media (max-width: 640px) {
  .header { height: auto; min-height: 140px; padding-bottom: 10px; }
  .header-inner { flex-direction: column; align-items: center; padding-top: 5px; }
  .header-logo { text-align: center; }
  .header-logo a { font-size: 36px; }
  .header-line { margin: 1px 0 0; width: 30px; }
  .header-tagline { text-align: center; font-size: 14px; }
  .header-right { padding-top: 5px; gap: 20px; width: 100%; justify-content: center; flex-wrap: wrap; }
  .header-phones { text-align: center; }
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "internet" "security" "smart" "tv" "business";
  }
  .service-card { height: 120px; }
  .service-card.business-card { height: 120px; flex-direction: row; align-items: center; justify-content: flex-start; padding: 0 0 0 60px; }
  .service-card.business-card .service-card-text { margin-top: 0; text-align: left; }
  .service-card.business-card .service-card-icon { position: absolute; right: 0; top: 0; width: 120px; height: 120px; }
  .services-title { text-align: center; }
  .footer-columns { flex-direction: column; }
  .footer-col:nth-child(2) { margin-left: 0; margin-top: 30px; }
  .footer-col:nth-child(3) { margin-top: 30px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom .copyright { margin-left: 0; }
}
@media (max-width: 480px) {
  .header { height: 200px; }
  .header-logo a { font-size: 32px; }
  .header-line { margin: 1px 0 0; width: 26px; }
  .header-right { flex-direction: column; align-items: center; }
  .header-btn { width: 200px; }
  .service-card { height: 100px; padding: 0 0 0 20px; }
  .service-card.business-card { padding: 0 0 0 20px; flex-direction: row; align-items: center; justify-content: flex-start; }
  .service-card.business-card .service-card-text { text-align: left; margin-top: 0; }
  .service-card.business-card .service-card-icon { position: absolute; right: 0; top: 0; width: 80px; height: 80px; }
  .service-card-text { font-size: 14px; }
  .service-card-icon { width: 80px; height: 80px; }
  .service-card-icon .circle { width: 80px; height: 80px; }
  .popup { padding: 40px 20px; }
  .footer-btn-client, .footer-btn-cabinet { width: 100%; }
}
@media (max-width: 360px) {
  .header { height: 180px; }
  .header-logo a { font-size: 28px; }
  .header-btn { width: 160px; height: 36px; font-size: 13px; }
}

/* ALERT PAGE */
.alert-form-section { background: #eef3f9; padding: 50px 0; }
.alert-form-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
.alert-form-text { font-size: 20px; font-weight: 600; color: #364c75; margin-bottom: 30px; }
.alert-form-row { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.alert-form-field { flex: 0 1 280px; }
.alert-form-field input { width: 100%; height: 44px; padding: 0 15px; border: 1px solid #1780d6; border-radius: 4px; font-size: 16px; color: #404040; outline: none; background: #fff; }
.alert-form-field input::placeholder { color: #999; }
.alert-form-btn { height: 44px; padding: 0 40px; background: #de7111; color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 500; cursor: pointer; transition: background 0.1s; }
.alert-form-btn:hover { background: #c8620e; }
.alert-main { max-width: 1200px; margin: 0 auto; padding: 60px 20px 80px; }
.alert-headline { font-size: 20px; font-weight: 600; color: #364c75; line-height: 1.3; margin-bottom: 30px; }
.alert-price-badge { display: inline-block; font-size: 18px; font-weight: 700; color: #000; padding: 12px 0; margin-bottom: 40px; }
.alert-features-title { font-size: 18px; font-weight: 600; color: #000; margin-bottom: 25px; }
.alert-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.alert-feature-card { background: #fff; box-shadow: 0 0 20px rgba(74,74,74,0.1); padding: 30px; border-radius: 0; display: flex; align-items: center; gap: 20px; }
.alert-feature-card-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alert-feature-card-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.alert-feature-card span { font-size: 15px; color: #333; line-height: 1.4; }
.alert-feature { display: flex; align-items: center; gap: 15px; background: #fff; box-shadow: 0 0 20px rgba(74,74,74,0.1); padding: 20px; border-radius: 8px; }
.alert-feature-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alert-feature-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.alert-feature span { font-size: 15px; color: #333; line-height: 1.4; }
.alert-info-text { background: #f9f9f9; padding: 25px 30px; border-radius: 8px; margin-bottom: 50px; }
.alert-info-text p { font-size: 15px; color: #444; line-height: 1.6; margin-bottom: 8px; }
.alert-info-text p:last-child { margin-bottom: 0; }
.alert-cards { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.alert-card { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 200px; height: 200px; background: #fff; box-shadow: 0 0 20px rgba(74,74,74,0.15); text-decoration: none; color: #000; cursor: pointer; transition: box-shadow 0.3s; }
.alert-card:hover { box-shadow: 0 0 30px rgba(74,74,74,0.25); }
.alert-card-label { font-size: 16px; font-weight: 400; margin-bottom: 10px; }
.alert-card img { width: 80px; height: 80px; object-fit: contain; }
.alert-media { display: flex; gap: 40px; align-items: stretch; margin-bottom: 50px; }
.alert-media-image { flex: 0 0 360px; }
.alert-media-image img { width: 100%; height: auto; display: block; }
.alert-media-panel { flex: 1; padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.alert-media-panel p { color: #333; font-size: 16px; line-height: 1.5; margin: 0; }
.alert-media-panel hr { border: none; border-top: 1px solid #ddd; margin: 0; }
.alert-features-wrap { background: #fff; box-shadow: 0 0 20px rgba(74,74,74,0.15); padding: 40px; margin-bottom: 50px; }
@media (max-width: 1100px) { .alert-cards { gap: 20px; } .alert-card { width: 160px; height: 160px; } .alert-card img { width: 60px; height: 60px; } .alert-media { flex-direction: column; } .alert-media-image { flex: 0 0 auto; max-width: 360px; } }
@media (max-width: 640px) { .alert-form-row { flex-direction: column; } .alert-form-field { width: 100%; max-width: 400px; } .alert-form-btn { width: 100%; max-width: 400px; } .alert-cards { gap: 15px; } .alert-card { width: 140px; height: 140px; } .alert-card img { width: 50px; height: 50px; } .alert-features-grid { grid-template-columns: 1fr; } .alert-features-wrap { padding: 20px; } .alert-media-panel { padding: 30px 20px; } }
@media (max-width: 480px) { .alert-cards { gap: 10px; } .alert-card { width: 120px; height: 120px; } .alert-card img { width: 40px; height: 40px; } .alert-card-label { font-size: 13px; } }

/* BUSINESS PAGE */
.business-page { max-width: 1200px; margin: 0 auto; padding: 50px 20px 80px; }
.business-title { font-size: 18px; font-weight: 500; color: #000; margin-bottom: 27px; letter-spacing: 1px; }
.business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.business-card { display: flex; align-items: center; justify-content: space-between; height: 150px; background: #fff; box-shadow: 0 0 20px rgba(74,74,74,0.15); text-decoration: none; color: #000; cursor: pointer; transition: box-shadow 0.3s; }
.business-card:hover { box-shadow: 0 0 30px rgba(74,74,74,0.25); }
.business-card-text { font-size: 18px; font-weight: 500; line-height: 1.35; padding-left: 60px; }
.business-card-visual { position: relative; width: 150px; height: 150px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.business-card:hover .business-card-visual { transform: translate(-10px, 10px) scale(1.15); }
.business-card-visual .circle { position: absolute; width: 120px; height: 120px; top: 7px; right: 15px; border-radius: 50%; }
.business-card-visual img { position: relative; z-index: 1; width: 60px; height: 60px; object-fit: contain; }
.biz-card-1 .circle { background: #CC4325; }
.biz-card-2 .circle { background: #259ACC; }
.biz-card-3 .circle { background: #B95DE4; }
.biz-card-4 .circle { background: #25CC68; }
@media (max-width: 900px) { .business-grid { grid-template-columns: 1fr; gap: 20px; } .business-card-text { padding-left: 30px; font-size: 16px; } .business-card-visual { width: 120px; height: 120px; } .business-card-visual .circle { width: 100px; height: 100px; top: 10px; right: 10px; } .business-card-visual img { width: 50px; height: 50px; } .business-card { height: 120px; } }
@media (max-width: 480px) { .business-card-text { padding-left: 20px; font-size: 14px; } .business-card-visual { width: 100px; height: 100px; } .business-card-visual .circle { width: 80px; height: 80px; top: 10px; right: 10px; } .business-card-visual img { width: 40px; height: 40px; } .business-card { height: 100px; } }

/* SMARTLOCK PAGE */
.smartlock-page { max-width: 1200px; margin: 0 auto; padding: 50px 20px 80px; }
.smartlock-title { font-size: 32px; font-weight: 700; color: #000; margin-bottom: 30px; }
.smartlock-desc { font-size: 16px; color: #333; line-height: 1.6; margin-bottom: 30px; }
.smartlock-content { display: flex; gap: 50px; align-items: flex-start; flex-wrap: wrap; }
.smartlock-text { flex: 1; min-width: 280px; }
.smartlock-image { flex: 0 0 300px; }
.smartlock-image img { width: 100%; height: auto; }
.smartlock-price { font-size: 24px; font-weight: 700; color: #d32f2f; margin: 20px 0; }
.smartlock-cta { display: inline-flex; align-items: center; justify-content: center; padding: 14px 50px; background: #1780d6; color: #fff; font-size: 16px; font-weight: 500; border-radius: 4px; border: none; cursor: pointer; transition: background 0.1s; margin-top: 20px; }
.smartlock-cta:hover { background: #1565c0; }
@media (max-width: 640px) { .smartlock-title { font-size: 24px; } .smartlock-content { flex-direction: column; } .smartlock-image { flex: 0 0 auto; width: 100%; max-width: 300px; } }

/* MOOVI PAGE */
.moovi-page { max-width: 1200px; margin: 0 auto; padding: 50px 20px 80px; }
.moovi-title { font-size: 32px; font-weight: 700; color: #000; margin-bottom: 30px; }
.moovi-intro { font-size: 15px; color: #333; line-height: 1.6; margin-bottom: 10px; }
.moovi-text { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 30px; }
.moovi-table-wrap { overflow-x: auto; margin-bottom: 50px; }
.moovi-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.moovi-table th { background: #364c75; color: #fff; padding: 12px 15px; text-align: left; font-weight: 600; white-space: nowrap; }
.moovi-table td { padding: 12px 15px; border-bottom: 1px solid #e0e0e0; color: #333; }
.moovi-table tr:nth-child(even) td { background: #f9f9f9; }
.moovi-table td:last-child, .moovi-table th:last-child { text-align: center; }
.moovi-section-title { font-size: 20px; font-weight: 600; color: #000; margin: 40px 0 20px; }
.moovi-free-link { display: inline-block; margin-top: 15px; color: #1780d6; font-weight: 500; }
.moovi-free-link:hover { text-decoration: underline; }
@media (max-width: 640px) { .moovi-title { font-size: 24px; } .moovi-table { font-size: 13px; } .moovi-table th, .moovi-table td { padding: 8px 10px; } }

/* BUSINESS-ALERT PAGE */
.bizal-form-section { background: #eef2f7; padding: 40px 0; }
.bizal-form-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bizal-form-text { font-size: 22px; font-weight: 600; color: #000; text-align: center; margin-bottom: 25px; }
.bizal-form-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.bizal-form-field { flex: 1; min-width: 200px; max-width: 380px; }
.bizal-form-field input { width: 100%; height: 44px; padding: 0 15px; font-size: 16px; border: 1px solid #1780d6; border-radius: 4px; box-sizing: border-box; outline: none; }
.bizal-form-btn { height: 44px; padding: 0 40px; background: #de7111; color: #fff; font-size: 16px; font-weight: 500; border: none; border-radius: 4px; cursor: pointer; white-space: nowrap; transition: background 0.1s; }
.bizal-form-btn:hover { background: #c5620e; }
.bizal-main { max-width: 1200px; margin: 0 auto; padding: 40px 20px 80px; }
.bizal-title { font-size: 32px; font-weight: 700; color: #364c75; margin-bottom: 40px; }
.bizal-content { display: flex; gap: 40px; align-items: flex-start; }
.bizal-left { flex: 1; min-width: 0; }
.bizal-right { flex: 0 0 328px; }
.bizal-right img { width: 100%; height: auto; }
.bizal-category { margin-bottom: 50px; }
.bizal-category-full { clear: both; }
.bizal-cat-title { font-size: 20px; font-weight: 600; color: #364c75; margin-bottom: 20px; }
.bizal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.bizal-grid-full { max-width: 800px; }
.bizal-item { font-size: 15px; color: #333; line-height: 1.5; padding-left: 20px; position: relative; }
.bizal-dot { position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: #1780d6; display: inline-block; }
@media (max-width: 960px) { .bizal-content { flex-direction: column; } .bizal-right { flex: 0 0 auto; max-width: 328px; } .bizal-grid { grid-template-columns: 1fr; } }