* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E53935;
    --primary-red-dark: #C62828;
    --primary-red-light: #FF5252;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --gray-dark: #2A2A2A;
    --gray: #666666;
    --gray-light: #999999;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --glow-red: rgba(229, 57, 53, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(229, 57, 53, 0.03) 0%, transparent 30%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Grid pattern overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(229, 57, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 57, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 57, 53, 0.1);
    transition: all 0.3s ease;
}

.header-nav.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: auto;
    /* background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%); */
    /* border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4); */
    transition: 0.25s;
    transition-timing-function: ease-in-out;
}
.logo-icon svg {
  width: auto;
  height: 100%;
  fill: var(--primary-red);
  stroke: none;
  filter: drop-shadow(0 4px 20px rgba(229, 57, 53, 0.4));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(229, 57, 53, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 60%;
}

.login-btn {
  color: var(--white);
  padding: 10px 24px;
  border-radius: 10px;
  border: 1px solid var(--primary-red);
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.login-btn span.mob {
  display: none;
}
.login-btn svg {
  width: 13px;
  height: auto;
  stroke: none;
  fill: var(--white);
  margin-left: 3px;
  margin-bottom: -1px;
}
.cta-btn {
  text-decoration: none;
  font-size: 14px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(229, 57, 53, 0.5);
}

.cta-btn::after {
  display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-red-light);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    box-shadow: 0 4px 25px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(229, 57, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-dark);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red-light);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-value span {
    color: var(--primary-red);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-image-container {
  position: relative;
}
.hero-image-container video {
  width: 100%;
}
.hero-image-container .mac-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-image-container .mac-container .mac-monitor {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(45deg, #2f2f2f, #000000);
  padding: 15px 5px;
  display: flex;
  box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(229, 57, 53, 0.2),
      0 0 60px rgba(229, 57, 53, 0.15);
  position: relative;
  z-index: 1;
}
.hero-image-container .mac-container .mac-stand {
  position: relative;
  filter: blur(1px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-image-container .mac-container .mac-stand .mac-stand-first {
  display: flex;
  left: 0px;
  top: 0px;
  width: 140px;
  height: 40px;
  background: linear-gradient(0deg, #373737, #afafaf);
  clip-path: polygon(95% 0%, 100% 100%, 0% 100%, 5% 0%);
}
.hero-image-container .mac-container .mac-stand .mac-stand-second {
  bottom: 0px;
  width: 220px;
  height: 10px;
  background-color: #292929;
  border-radius: 10px;
}


/* Section Styles */
section {
    padding: 120px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(229, 57, 53, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    /* background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(229, 57, 53, 0.05) 100%); */
    /* border-radius: 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 24px; */
    margin: 0 auto 15px;
    font-size: 28px;
    /* border: 1px solid rgba(229, 57, 53, 0.2); */
}
.benefit-card:nth-child(1) .benefit-icon{
  width: 52px;
}
.benefit-card:nth-child(2) .benefit-icon{
  width: 60px;
}
.benefit-card:nth-child(3) .benefit-icon{

}
.benefit-card:nth-child(4) .benefit-icon{
  width: 52px;
}
.benefit-icon svg {
  width: 100%;
  height: auto;
  fill: var(--primary-red);
  filter: drop-shadow(0 10px 40px rgba(229, 57, 53, 0.3));
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border: 1px solid var(--gray-dark);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(229, 57, 53, 0.1));
    transition: height 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 57, 53, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.audience-card:hover::after {
    height: 100%;
}

.audience-icon {
  width: 70px;
  height: 70px;
  /* background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%); */
  /* border-radius: 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 40px;
  /* box-shadow: 0 10px 40px rgba(229, 57, 53, 0.3); */
}
.audience-icon svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  fill: var(--primary-red);
  filter: drop-shadow(0 10px 40px rgba(229, 57, 53, 0.3));
}

.audience-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.audience-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: var(--black-light);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;

    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
}
.pricing-card.animate-on-scroll.animated:hover {
  transform: translateY(-10px);
}
.pricing-card .hover_ripple_effect {
  border-radius: 24px;
}

.pricing-card.popular {
    background: linear-gradient(145deg, var(--black-lighter) 0%, rgba(229, 57, 53, 0.1) 100%);
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(229, 57, 53, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.price {
    margin-bottom: 8px;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-current span {
    font-size: 24px;
    font-weight: 600;
}

.price-original {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.price-period {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.discount-badge {
    display: inline-block;
    background: rgba(229, 57, 53, 0.15);
    color: var(--primary-red-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: 700;
}

/* Features Section */
.features {
  /* background: var(--black); */
}

.features-grid {
  display: grid;
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns:
    calc( (65 / 165 * 100%) - (65 / 165 * 25px) + (25px / 2) )
    calc( (100 / 165 * 100%) - (100 / 165 * 25px) + (25px / 2) );
  grid-column-gap: 25px;
  grid-template-areas:
  'tools_list tools_media';
  align-items: center;
}
.tools_list_wrapper {
  grid-area: tools_list;
  position: relative;
  width: 100%;
  /* height: 500px; */
}
.tools_list_block {
  width: 100%;
  height: 500px;
  background-color: var(--black-lighter);
  border: 1px solid var(--gray-dark);
  border-radius: 24px;
  padding: 22px 0px 22px 15px;
  box-sizing: border-box;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(229, 57, 53, 0.2);
}
.tools_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
  max-height: 100%;
  overflow: auto;
  padding-right: 15px;
  box-sizing: border-box;
  position: relative;
  counter-reset: tools;
}
.tools_list .item {
  /* --icon-width: 32px; */
  --icon-width: 35px;
}
.tools_list .item .head {
  /* background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(229, 57, 53, 0.05) 100%); */
  border-radius: 12px;
  padding: 6px 12px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: var(--icon-width) 1fr;
  border: 1px solid transparent;
  align-items: center;
  cursor: pointer;
  grid-column-gap: 4px;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tools_list .item .head .hover_ripple_effect .ripple_follower {
  background-color: rgba(229,57,53, 100%);
  filter: blur(80px);
}
.tools_list .item.active .head {
  /* background-color: var(--primary-red); */
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(229, 57, 53, 0.05) 100%);
  border: 1px solid var(--primary-red);
}
.tools_list .item .head .icon {
  /* width: var(--icon-width); */
  /* height: var(--icon-width); */
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.tools_list .item .head .icon::before {
  counter-increment: tools;
  content: counter(tools);
  color: var(--primary-red);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  /* transition: 0.25s; */
  /* transition-timing-function: ease-in-out; */
}
.tools_list .item.active .head .icon::before {
  color: var(--white);
}
.tools_list .item .head .icon svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: var(--white);
}
.tools_list .item .head .name {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: var(--white);
}
.tools_list .item .tool_description_wrapper {
  height: 0px;
  overflow: hidden;
}
.tools_list .item .tool_description {
  padding: 14px 0px 4px 0px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-light);
}
.tools_media_block {
  grid-area: tools_media;
  border-radius: 20px;
}
.tools_media_block .macbook {
  position: relative;
  display: flex;
  flex-direction: column;
}
.tools_media_block .monitor {
  padding: 9px 11px 20px 11px;
  /* background: linear-gradient(0deg, #292929, #000000); */
  /* border-radius: 20px; */
  /* box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(229, 57, 53, 0.2),
      0 0 60px rgba(229, 57, 53, 0.15);
  z-index: 2; */
  position: relative;
  background-image: url(/images/makbook_monitor_black.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 0px 40px;
  aspect-ratio: 278 / 150;
}
.tools_media_block .monitor .webkam {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 70px;
  height: auto;
  transform: translate(-50%, 0px);
}
.tools_media_block .keyboard {
  width: 100%;
  height: auto;
}
.tools_media_block video {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 10px 10px 4px 4px;
  aspect-ratio: 731 / 411;
}
.tools_media_block video.active {
  display: block;
}
.tools_media_block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}











/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 35%);
    animation: ctaShine 8s linear infinite;
}

@keyframes ctaShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta .btn {
    background: white;
    color: var(--primary-red-dark);
    font-size: 16px;
    padding: 18px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}







/* Footer Styles */
.site-footer {
    background-color: var(--black-light);
    color: var(--gray-light);
    width: 100%;
    position: relative;
    border-top: 4px solid var(--primary-red);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0px 40px 0px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}
.footer-logo svg {
  width: 84px;
  height: auto;
  fill: var(--primary-red);
}


.logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-red);
}

/* Navigation */
.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.footer-nav a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: var(--white);
  background: rgba(229, 57, 53, 0.1);
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-nav a:hover::after {
  width: 60%;
}



/* Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray-light);
  font-size: 14px;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}

.social-link.vk:hover {
  color: var(--white);
}
.social-link.rutube:hover {
  color: var(--white);
}
.social-icon {
  width: 32px;
  height: 21px;
  fill: currentColor;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.social-link.vk:hover .social-icon {
  fill: #1877FA;
}
.social-link.rutube:hover .social-icon {
  fill: #ED133F;
}



/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-dark);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-policy a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-copyright {
    color: var(--gray-light);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .footer-nav ul {
      flex-wrap: wrap;
      gap: 16px 24px;
      justify-content: center;
    }
}


/* Footer */
/* footer {
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
} */



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ========================================================================== */

.hover_ripple_effect {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hover_ripple_effect .ripple_follower {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(255,255,255,10%);
  transition: 0.3s ease-out;
  z-index: 1;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0;
  will-change: auto;
}

/* ========================================================================== */

.window_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.window_placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}
.window_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.window_cont.in {
  animation: 0.25s window_cont_in cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes window_cont_in {
  0% { opacity: 0; transform: translate( -50%, -25%); }
  100% { opacity: 1; transform: translate( -50%, -50%); }
}
.window_cont.out {
  animation: 0.25s window_cont_out cubic-bezier(0.25, 0.5, 0.5, 0.9) forwards;
}
@keyframes window_cont_out {
  0% { opacity: 1; transform: translate( -50%, -50%); }
  100% { opacity: 0; transform: translate( -50%, -25%); }
}

.close_window {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.close_window svg {
  width: 100%;
  height: auto;
  opacity: 1;
  fill: #87909B;
  stroke: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.close_window:hover {
  transform: scale(1.1);
}
.close_window:hover svg {
  fill: #9D0300;
}
.animation_text {
  width: 15vw;
  display: flex;
}
.animation_text {
  width: 100%;
  height: auto;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: #ffffff;
  pointer-events: none;
  counter-reset: letter;
}
.animation_text .red {
  color: var(--primary-red);
}
.animation_text span {
  display: inline-block;
  transform: translate(20px, 0px) scale(0.5);
  opacity: 0;
}
.animation_text span:nth-child(1) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0s;
}
.animation_text span:nth-child(2) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.15s;
}
.animation_text span:nth-child(3) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.3s;
}
.animation_text span:nth-child(4) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.45s;
}
.animation_text span:nth-child(5) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.6s;
}
.animation_text span:nth-child(6) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.75s;
}
.animation_text span:nth-child(7) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 0.9s;
}
.animation_text span:nth-child(8) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 1.05s;
}
.animation_text span:nth-child(9) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 1.2s;
}
.animation_text span:nth-child(10) {
  animation: 0.25s window_load_text_anim linear forwards;
  animation-delay: 1.35s;
}
@keyframes window_load_text_anim {
  0% {
    transform: translate(20px, 0px) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
}

/* ========================================================================== */

.modal {
  background: var(--black-lighter);
  border: 1px solid var(--gray-dark);
  border-radius: 24px;
  padding: 10px 5px;
  width: 450px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-height: 95vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.modal .modal_scroll_wrapper {
  padding: 30px 35px;
  box-sizing: border-box;
  max-height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.modal .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.modal .header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}

.modal .close-btn {
  background: none;
  border: none;
  color: #dc143c;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .close-btn svg {
  width: 20px;
  height: auto;
  fill: var(--primary-red);
}
.modal .close-btn:hover svg {
  fill: var(--primary-red-dark);
}

/* .close-btn:hover {
  opacity: 0.8;
} */

.modal .form-group {
  position: relative;
  margin-bottom: 20px;
}

.modal .form-group input {
  width: 100%;
  padding: 14px 45px 14px 15px;
  background: var(--gray-dark);
  border: 1px solid var(--gray-dark);
  box-sizing: border-box;
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: background 0.3s;
}

.modal .form-group input::placeholder {
  color: var(--gray-light);
}

.modal .form-group input:focus {
  border: 1px solid var(--gray);
}

.modal .form-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .form-group .icon.user_name svg {
  color: var(--gray-light);
}
.modal .form-group .icon.email svg {
  width: 24px;
  height: auto;
  fill: var(--gray-light);
}
.modal .form-group .icon.password svg {
  width: 18px;
  height: auto;
  fill: var(--gray-light);
}

.modal .promo-text {
  text-align: center;
  margin: 25px 0;
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
}

.modal .promo-text .highlight {
  color: var(--primary-red);
}

.modal .links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.modal .links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}
.modal .links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.modal .btn {
  width: 200px;
  display: flex;
  margin: 0px auto;

}










/* ========================================================================== */




/* Responsive */
@media (max-width: 1200px) {
    .header-nav {
      /* display: none; */
    }
    .nav-container {
      grid-template-columns: 1fr auto auto;
    }
    .nav-links {
      display: none;
    }
    .hero h1 {
        font-size: 52px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .features-grid {
      grid-template-columns: 100%;
      grid-template-areas:
      'tools_media'
      'tools_list';
      grid-row-gap: 25px;
    }
    .tools_list_block {
      justify-self: center;
      max-width: 700px;
      position: static;
      max-height: 500px;
    }
    .tools_media_block {
      justify-self: center;
    }

}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: none;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
      padding: 10px 0;
    }
    .header-nav.scrolled {
      padding: 10px 0;
    }
    .nav-container {
      padding: 0px 8px;
      grid-template-columns: 1fr auto auto;
    }
    .logo {
      gap: 6px;
    }
    .logo-icon {
      width: 30px;
    }
    .header-nav.scrolled .logo-icon {
      width: 30px;
    }
    .header-nav .logo-text {
      font-size: 16px;
      transition: 0.25s;
      transition-timing-function: ease-in-out;
    }
    .header-nav.scrolled .logo-text {
      font-size: 16px;
    }
    .login-btn {
      padding: 5px 8px;
      border-radius: 6px;
      font-size: 10px;
    }
    .login-btn span.mob {
      display: inline-block;
    }
    .login-btn span.pc {
      display: none;
    }
    .login-btn svg {
      width: 11px;
    }
    .cta-btn {
      padding: 5px 8px;
      border-radius: 6px;
      font-size: 10px;
    }

    .hero-buttons {
      flex-direction: column;
    }
    .hero-stats {
      flex-direction: column;
      align-items: center;
    }
    .stat-value {
      text-align: center;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        /* display: flex; */
    }
    .hero-badge {
      display: none;
    }
    .hero {
      padding: 100px 20px 80px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-container {
      gap: 40px;
    }
    section {
        padding: 80px 20px;
        overflow: hidden;
    }


    .features .section-header {
      margin: 0 auto 40px;
    }
    .features-grid {
      grid-template-areas: 'tools_list';
    }
    .tools_media_block {
      display: none;
    }
    /* .tools_media_block {
      width: 100%;
      box-sizing: border-box;
    }
    .tools_media_block .monitor {
      width: calc(100% - 40px);
      margin: 0px 20px;
      padding: 4px 5px 8px 5px;
    }
    .tools_media_block video {
      border-radius: 3px 3px 0px 0px;
    }
    .tools_media_block .monitor .webkam {
      top: 4px;
      width: 40px;
    } */

    .section-title {
        font-size: 32px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-image-container .mac-container .mac-stand .mac-stand-first {
      width: 90px;
      height: 25px;
    }
    .hero-image-container .mac-container .mac-stand .mac-stand-second {
      width: 150px;
      height: 5px;
    }

    .window_placeholder {
      background-color: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(3px);
    }
    .window_cont {
      width: 100%;
      padding: 10px;
      box-sizing: border-box;
    }
    .animation_text {
      width: auto;
    }
    .modal {
      width: 100%;
      max-width: 100%;
    }
    .modal .modal_scroll_wrapper {
      padding: 6px 10px;
    }
    .modal .header {
      margin-bottom: 20px;
    }
    .modal .header h2 {
      font-size: 24px;
    }
    .modal .close-btn {
      width: 15px;
      height: 15px;
    }
    .modal .close-btn svg {
      width: 12px;
    }




}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* ========================================================================== */

.spinner {
  animation: translate_rotate 2s linear infinite;
  z-index: 2;
  width: 60px;
  height: 60px;
}
.spinner .path {
  stroke: var(--primary-red);
  stroke-linecap: round;
  stroke-width: 2;
  animation: spinner_dash 1.5s ease-in-out infinite;
}
@keyframes translate_rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner_dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* ========================================================================== */





.info_l{
display:block;
text-align:center;
padding:0;
margin-top:5px;
margin-bottom:5px;
padding-top:5px;
display:none;
}

.error_l {
display:none;
}


.pole_error_n{
border-color:#cd463b !important;
}



.info_l_vis {
display:block;
}


.error_l_vis {
display:block;
}



.posthelp{
margin: 0px 0px 0px 0px;
padding:0;
display:none;
font-size:14px;
color: var(--gray-light);
margin-top:10px;
margin-bottom:30px;
text-align:center;
}

.form_link {
color:#ffffff;
text-decoration:none;
}

.form_link:hover{
text-decoration: underline;
}

.checkbox-group {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}


.checkbox-group-red {
  color:#cd463b;
}

.checkbox-group input{
  position:absolute;
  top:5px;
}


.checkbox-group label{
/* position:relative; */
/* display:block; */
/* left:30px; */
/* width:90%; */

}


.checkbox-group label a{
color: var(--gray-light);
}






.custom_checkbox {
  justify-self: start;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.custom_checkbox input {
  display: none;
}
.custom_checkbox .checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
}
.custom_checkbox .checkbox svg {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 20px;
  height: auto;
  stroke: none;
  fill:  var(--primary-red);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .checkbox svg {
  opacity: 1;
}
/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */


.alert_window_wrapper {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --bg-card: rgba(26, 26, 37, 0.8);
  --bg-card_full: rgba(26, 26, 37, 0.9);
  --bg-card-hover: rgba(36, 36, 50, 0.9);
  --bg-glass: rgba(26, 26, 37, 0.6);

  --accent-red: #ef4444;
  --accent-red-dark: #dc2626;
  --accent-red-light: #f87171;
  --accent-blue: #3b82f6;
  --accent-green: #22c55e;
  --accent-orange: #f97316;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(239, 68, 68, 0.5);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(239, 68, 68, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;

  --header-height: 70px;
  --sidebar-width: 280px;
  --primary-red: #E53935;
  --black-lighter: #1E1E1E;
  --gray-dark: #2A2A2A;
  --gray-light: #999999;
  display: block;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;


  .alert_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px 28px 24px 28px;
    box-sizing: border-box;
    box-shadow: 10px 10px 10px rgb(12 15 16 / 10%);
    min-width: 360px;
    animation: 0.25s alert_window_animate ease-out;
    border: 1px solid var(--border-color);
    text-align: center;
  }
  @keyframes alert_window_animate {
    0% { transform: translate(0px, -50%); opacity: 0.5; }
    100% { transform: translate(0px, 0%); opacity: 1; }
  }

  .alert_content {
    text-align: center;
  }
  .confirm_buttons {
    width: 100%;
    display: grid;
    gap: 20px;
    margin-top: 20px;
    grid-template-columns: var(--num-columns);
  }
  .confirm_btn {
    width: auto;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    background: var(--bg-color);
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
  }



}
@media (max-width: 480px) {
  .alert_window_wrapper {
    .alert_container {
      min-width: unset;
      max-width: 90%;
    }
  }
}


.subscribe_end_alert {
  width: 100%;
  max-width: 1400px;
  position: fixed;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 0px);
  background-color: #EF444452;
  border: 1px solid #EF4444;
  border-radius: 32px 32px 0px 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(5px);
}














/* ========================================================================== */
