* {
    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;
}

/* 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 */
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;
}

nav.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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); */
}
.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%;
}

.nav-links a.login {
  color: var(--white);
  padding: 10px 24px !important;
  border-radius: 10px !important;
  border: 1px solid var(--primary-red);
  box-sizing: border-box;
}
.nav-links a.login svg {
  width: 13px;
  height: auto;
  stroke: none;
  fill: var(--white);
  margin-left: 3px;
  margin-bottom: -1px;
}
.nav-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(229, 57, 53, 0.5);
}

.nav-cta::after {
    display: none !important;
}

/* 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;
}

@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%;
}
.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 {
  width: 140px;
  height: 40px;
  justify-self: center;
  position: relative;
  filter: blur(1px);
}
.hero-image-container .mac-container .mac-stand::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 140px;
  height: 30px;
  background: linear-gradient(0deg, #373737, #afafaf);
  clip-path: polygon(95% 0%, 100% 100%, 0% 100%, 5% 0%);
}
.hero-image-container .mac-container .mac-stand::after {
  position: absolute;
  content: '';
  left: -40px;
  top: 30px;
  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: 0.75fr 1fr;
  grid-column-gap: 110px;
  grid-template-areas:
  'tools_list tools_media';
  align-items: start;
}
.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;
}
.tools_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  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: 12px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: var(--icon-width) 1fr;
  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%);
}
.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: 8px 0px 0px calc(12px + var(--icon-width));
  box-sizing: border-box;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-light);
}
.tools_media_block {
  grid-area: tools_media;
  border-radius: 20px;
}
.tools_media_block .macbook {
  perspective: 1000px;
  position: relative;
}
.tools_media_block .monitor {
  padding: 15px 10px;
  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;
}
.tools_media_block .monitor::after {
  position: absolute;
  content: '';
  left: 0px;
  top: calc(100% + 10px);
  width: 100%;
  height: 50px;
  /* background: linear-gradient(180deg, #ffffff, transparent); */
  filter: blur(20px);
  z-index: -1;
}
.tools_media_block .keyboard {
  position: relative;
  left: 0px;
  width: 100%;
  height: 90px;
  z-index: 1;
  perspective: 1000px;
  filter: blur(1px);
}
.tools_media_block .keyboard::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0%;
  width: 129%;
  height: 200px;
  background-color: #c1c3c2;
  transform: rotateX(70deg) translate(-11%, -111%);
  border-radius: 20px 20px 0px 0px;
  background-image: url(/images/keyboard.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: brightness(0.8);
}
.tools_media_block .keyboard::after {
  position: absolute;
  content: '';
  left: -55px;
  top: 63%;
  width: calc(100% + 115px);
  height: 11px;
  background-color: #7b7b7b;
}
.tools_media_block video {
  width: 100%;
  height: auto;
  display: none;
}
.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 */
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);
}

.social-links {
    /* display: flex; */
    display: none;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

/* 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;
}

/* ========================================================================== */

/* Responsive */
@media (max-width: 1200px) {
    nav {
      display: none;
    }
    .hero h1 {
        font-size: 52px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .features-grid {
      grid-template-columns: 1fr;
      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;
      max-height: 650px;
    }

}

@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) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero {
        padding: 120px 20px 80px;
    }
    .hero h1 {
        font-size: 36px;
    }
    section {
        padding: 80px 20px;
    }
    .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;
    }
}

/* 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);
}
