/* ========================================
 GUIDES PAGE STYLES - Zonixtec
 Based on WhyZonixtec.css structure
 ======================================== */

:root {
 --primary: #0066ff;
 --primary-dark: #0044cc;
 --secondary: #00f2ff;
 --accent: #ff3366;
 --dark: #050511;
 --dark-light: #0a0a1a;
 --light: #f5f5f5;
 --gray: #888;
 --success: #27ae60;
 --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 background: linear-gradient(135deg, #0f172a, #1e293b);
 color: var(--light);
 line-height: 1.6;
 overflow-x: hidden;
 position: relative;
 min-height: 100vh;
}

html {
 overflow-x: hidden;
}

/* Prevent animation overflow */
main {
 overflow-x: hidden;
 width: 100%;
}

section {
 overflow-x: hidden;
 width: 100%;
}

body::before {
 content: "";
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at 10% 20%,
 rgba(37, 99, 235, 0.1) 0%,
 transparent 20%
 ),
 radial-gradient(
 circle at 90% 80%,
 rgba(6, 182, 212, 0.1) 0%,
 transparent 20%
 );
 z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Orbitron", sans-serif;
 font-weight: 600;
 margin-bottom: 1rem;
}

.container {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section-padding {
 padding: 80px 0;
}

.section-title {
 font-size: 2.5rem;
 text-align: center;
 margin-bottom: 3rem;
 position: relative;
 color: var(--light);
}

.section-title::after {
 content: "";
 position: absolute;
 bottom: -15px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 4px;
 background: var(--tech-gradient);
 border-radius: 2px;
}

.section-title span {
 color: var(--secondary);
 position: relative;
}

.section-title span.pulse {
 animation: pulse 2s infinite;
}

@keyframes pulse {
 0% {
 text-shadow: 0 0 5px var(--secondary);
 }
 50% {
 text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
 }
 100% {
 text-shadow: 0 0 5px var(--secondary);
 }
}

.hero-subtitle {
 text-align: center;
 font-size: 1.2rem;
 color: var(--gray);
 margin-bottom: 3rem;
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

/* ========================================
 GUIDES HERO
 ======================================== */

.guides-hero {
 padding-top: 150px;
 padding-bottom: 80px;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.guides-hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(
 circle at top right,
 rgba(0, 102, 255, 0.1),
 transparent 70%
 );
 z-index: -1;
}

.guides-hero h1 {
 font-size: 3.5rem;
 margin-bottom: 1.5rem;
 color: var(--light);
}

.guides-hero p {
 font-size: 1.3rem;
 color: var(--gray);
 max-width: 800px;
 margin: 0 auto 2rem;
 line-height: 1.8;
}

.hero-cta {
 display: inline-block;
 background: linear-gradient(45deg, var(--primary), var(--secondary));
 color: var(--dark);
 padding: 15px 30px;
 border-radius: 30px;
 text-decoration: none;
 font-weight: 600;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 margin-top: 20px;
}

.hero-cta:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* ========================================
 WHY GUIDES MATTER SECTION
 ======================================== */

.why-guides {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 60px;
 margin-bottom: 60px;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-guides h2 {
 text-align: center;
 color: var(--secondary);
 margin-bottom: 40px;
 font-size: 2rem;
}

.benefits-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 30px;
}

.benefit-item {
 display: flex;
 align-items: flex-start;
 gap: 15px;
}

.benefit-icon {
 width: 50px;
 height: 50px;
 background: rgba(0, 102, 255, 0.1);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary);
 font-size: 1.3rem;
 flex-shrink: 0;
}

.benefit-content h3 {
 color: var(--light);
 font-size: 1.2rem;
 margin-bottom: 10px;
}

.benefit-content p {
 color: var(--gray);
 margin: 0;
 line-height: 1.7;
}

/* ========================================
 GUIDES GRID
 ======================================== */

.guides-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 30px;
 margin-bottom: 60px;
}

.guide-card {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.05);
 transition: all 0.3s ease;
 display: flex;
 flex-direction: column;
}

.guide-card:hover {
 transform: translateY(-10px);
 border-color: var(--primary);
 box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}

.guide-icon {
 height: 120px;
 background: linear-gradient(45deg, var(--primary), var(--dark-light));
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--light);
 font-size: 2.5rem;
 position: relative;
 overflow: hidden;
}

.guide-icon::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(
 45deg,
 rgba(0, 102, 255, 0.3),
 rgba(0, 242, 255, 0.3)
 );
}

.guide-content {
 padding: 30px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}

.guide-title {
 font-size: 1.5rem;
 color: var(--light);
 margin-bottom: 15px;
 line-height: 1.4;
}

.guide-description {
 color: var(--gray);
 margin-bottom: 20px;
 line-height: 1.6;
 flex-grow: 1;
}

.guide-topics {
 margin-bottom: 20px;
}

.guide-topics h4 {
 color: var(--secondary);
 font-size: 1rem;
 margin-bottom: 10px;
}

.topics-list {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}

.topic-tag {
 background: rgba(255, 255, 255, 0.05);
 color: var(--gray);
 padding: 5px 10px;
 border-radius: 15px;
 font-size: 0.8rem;
}

.guide-cta {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 background: rgba(0, 102, 255, 0.1);
 color: var(--secondary);
 padding: 12px 20px;
 border-radius: 30px;
 text-decoration: none;
 font-weight: 600;
 transition: all 0.3s ease;
 border: 1px solid rgba(0, 102, 255, 0.3);
 margin-top: auto;
}

.guide-cta:hover {
 background: rgba(0, 102, 255, 0.2);
 transform: translateY(-3px);
 color: var(--light);
}

/* ========================================
 HIGHLIGHTS SECTION
 ======================================== */

.highlights-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 60px;
 margin-bottom: 60px;
 border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-section h2 {
 text-align: center;
 color: var(--secondary);
 margin-bottom: 40px;
 font-size: 2rem;
}

.highlights-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}

.highlight-item {
 text-align: center;
 padding: 30px 20px;
 background: rgba(255, 255, 255, 0.03);
 border-radius: 10px;
 transition: all 0.3s ease;
}

.highlight-item:hover {
 transform: translateY(-5px);
 background: rgba(255, 255, 255, 0.05);
}

.highlight-icon {
 width: 70px;
 height: 70px;
 background: rgba(0, 102, 255, 0.1);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary);
 font-size: 1.8rem;
 margin: 0 auto 20px;
}

.highlight-item h3 {
 color: var(--light);
 font-size: 1.2rem;
 margin-bottom: 15px;
}

.highlight-item p {
 color: var(--gray);
 margin: 0;
 line-height: 1.7;
}

/* ========================================
 AUDIENCE SECTION
 ======================================== */

.audience-section {
 margin-bottom: 60px;
}

.audience-section h2 {
 text-align: center;
 color: var(--secondary);
 margin-bottom: 40px;
 font-size: 2rem;
}

.audience-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 25px;
}

.audience-item {
 background: rgba(10, 10, 26, 0.7);
 padding: 25px;
 border-radius: 10px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.05);
 transition: all 0.3s ease;
}

.audience-item:hover {
 border-color: var(--secondary);
 transform: translateY(-5px);
}

.audience-item i {
 font-size: 2rem;
 color: var(--secondary);
 margin-bottom: 15px;
}

.audience-item h3 {
 color: var(--light);
 font-size: 1.2rem;
 margin-bottom: 10px;
}

.audience-item p {
 color: var(--gray);
 margin: 0;
 line-height: 1.7;
}

/* ========================================
 PROMISE SECTION
 ======================================== */

.promise-section {
 background: rgba(10, 10, 26, 0.7);
 border-radius: 10px;
 padding: 80px 60px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.05);
 position: relative;
 overflow: hidden;
}

.promise-section::before {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 200px;
 height: 200px;
 background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
 opacity: 0.1;
}

.promise-section h2 {
 font-size: 2.2rem;
 color: var(--secondary);
 margin-bottom: 20px;
}

.promise-section p {
 font-size: 1.2rem;
 color: var(--gray);
 margin-bottom: 30px;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

/* ========================================
 RESPONSIVE STYLES
 ======================================== */

@media (max-width: 1024px) {
 .benefits-grid {
 grid-template-columns: 1fr;
 }

 .guides-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .section-title {
 font-size: 2.2rem;
 }
}

@media (max-width: 768px) {
 .section-padding {
 padding: 120px 0 40px;
 }

 .guides-hero {
 padding-top: 120px;
 padding-bottom: 60px;
 }

 .guides-hero h1 {
 font-size: 1.9rem;
 }

 .guides-hero p {
 font-size: 1.1rem;
 }

 .section-title {
 font-size: 2rem;
 }

 .why-guides,
 .highlights-section,
 .promise-section {
 padding: 40px 20px;
 }

 .guides-grid {
 grid-template-columns: 1fr;
 }

 .highlights-grid,
 .audience-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .benefit-item {
 flex-direction: column;
 text-align: center;
 }
}

@media (max-width: 576px) {
 .guides-hero h1 {
 font-size: 1.5rem;
 }

 .section-title {
 font-size: 1.5rem;
 }

 .highlights-grid,
 .audience-grid {
 grid-template-columns: 1fr;
 }

 .promise-section {
 padding: 60px 20px;
 }

 .promise-section h2 {
 font-size: 1.5rem;
 }

 .promise-section p {
 font-size: 1rem;
 }

 .guide-content {
 padding: 20px;
 }

 .guide-title {
 font-size: 1.3rem;
 }

 .hero-cta {
 padding: 12px 25px;
 font-size: 1rem;
 }
}