@import url('https://fonts.googleapis.com/css2?family=VT323&family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', 'VT323', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  text-align: right;
  margin: 0;
  line-height: 1.8;
}

#hero {
  background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, #E68A00, #FFDA63, #1a1a1a);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  color: #fff;
  text-align: center;
  padding: 7em 1em 4em;
  margin-top: 60px;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title {
  color: #FFEB3B;
  font-size: clamp(2em, 6vw, 3.5em);
  margin-bottom: 0.6em;
  text-shadow: 0 0 10px #FFDA63;
}

.hero-text {
  color: #e0e0e0;
  max-width: 750px;
  margin: 0 auto 2em;
  font-size: clamp(1.1em, 3vw, 1.3em);
}

.my-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background-color: #2f3337;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255,218,99,0.3);
}
.my-button:hover {
  background-color: #3a3f43;
  color: #FFDA63;
  box-shadow: 0 0 15px #FFDA63, 0 0 30px #E68A00;
}

section {
  max-width: 900px;
  margin: 4em auto;
  padding: 2em;
  background-color: #1a1a1a;
  border: 1px solid #E68A00;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

section h2 {
  color: #FFDA63;
  text-align: center;
  margin-bottom: 1em;
}

section p { margin-bottom: 1em; }

.table-wrapper {
  overflow-x: auto;
  margin-top: 2em;
}
table {
  width: 100%;
  border-collapse: collapse;
  color: #e0e0e0;
}
th, td {
  padding: 12px 15px;
  border: 1px solid #E68A00;
  text-align: center;
}
th {
  background-color: #2f3337;
  color: #FFDA63;
  font-weight: bold;
}
tr:nth-child(even) { background-color: #1a1a1a; }
tr:hover { background-color: #3a3f43; }

footer {
  background-color: #1a1a1a;
  border-top: 2px solid #E68A00;
  text-align: center;
  padding: 1.5em 1em;
  font-size: 0.9em;
  color: #ccc;
}

@media (max-width: 768px) {
  #brand-name { font-size: 1.8em; }
  .hero-title { font-size: 2em; }
  section { margin: 2em 1em; padding: 1.5em; }
}

:root {
    --primary-font: 'Montserrat', sans-serif;
    --code-font: 'VT323', monospace;
    --primary-color: #FFDA63;
    --secondary-color: #E68A00;
    --dark-bg: #0d0d0d;
    --header-footer-bg: #1a1a1a;
    --text-color-light: #e0e0e0;
    --text-color-muted: #999;
    --glow-color-primary: #FFDA63;
    --glow-color-secondary: #FFEB3B;
    --glow-color-accent: #E68A00;
    --button-bg: #2f3337;
    --button-hover-bg: #3a3f43;
    --icon-purple: #9c27b0;
    --icon-green: #4caf50;
    --icon-blue: #2196f3;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    text-align: right;
    line-height: 1.7;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease, text-shadow var(--transition-speed) ease;
}

a:hover {
    color: var(--glow-color-secondary);
    text-shadow: 0 0 8px var(--glow-color-primary), 0 0 15px var(--glow-color-primary);
}

h1, h2, h3, h4 {
    font-family: var(--primary-font);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5em, 6vw, 4em); }
h2 { font-size: clamp(2em, 5vw, 3em); color: var(--glow-color-secondary); }
h3 { font-size: clamp(1.5em, 3vw, 2em); }
p { margin-bottom: 1rem; }

@keyframes flicker-glow {
    0%, 100% { opacity: 0.9; text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color), 0 0 15px var(--primary-color); }
    50% { opacity: 1; text-shadow: 0 0 8px var(--primary-color), 0 0 15px var(--primary-color), 0 0 20px var(--glow-color-secondary); }
}

@keyframes typing-effect {
    from { width: 0 }
    to { width: 100% }
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 5px var(--primary-color); }
    50% { text-shadow: 0 0 10px var(--primary-color), 0 0 15px var(--glow-color-secondary); }
}

header {
    background-color: var(--header-footer-bg);
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 6px var(--primary-color));
    transition: transform 0.3s ease;
}
.brand-logo:hover {
    transform: scale(1.1);
}

#brand-name {
    font-family: var(--code-font);
    font-size: clamp(1.8em, 6vw, 3em);
    color: var(--primary-color);
    animation: flicker-glow 2s infinite alternate;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.2em 0.5em;
}

#brand-name span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

#brand-name span:hover {
    transform: scale(1.15);
    color: var(--glow-color-secondary);
    text-shadow: 0 0 15px var(--primary-color);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav ul li a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color-light);
    padding-bottom: 5px;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

@media only screen and (max-width: 992px) {
    header nav ul {
        gap: 15px;
    }
    header nav ul li a {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    header nav {
        margin-top: 10px;
    }
    header nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    #brand-name {
        font-size: clamp(1.8em, 8vw, 3em);
    }
    .hero-title {
         font-size: clamp(2.2em, 8vw, 4em);
    }
    .animated-text {
        font-size: clamp(1.1em, 4vw, 1.6em);
        animation-duration: 3s;
    }
    #hero {
        min-height: 400px;
        padding: 4em 1em;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    .content-section {
        padding: 4em 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .client-logos img {
        max-width: 120px;
    }
}

@media only screen and (max-width: 480px) {
    #brand-name {
        font-size: clamp(1.5em, 10vw, 2.5em);
        letter-spacing: 1px;
    }
    .brand-logo {
        width: 40px;
    }
    .hero-title {
        font-size: clamp(2em, 10vw, 3.2em);
    }
    .animated-text {
        font-size: clamp(1em, 4.5vw, 1.4em);
        border-right-width: 2px;
        animation-duration: 2.5s;
    }
    #hero {
        min-height: 300px;
        padding: 3em 1em;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 10px 20px;
        width: 90%;
        justify-content: center;
    }
    .cta-button i { font-size: 1.2rem; }
    .content-section h2 { font-size: 1.8em; }
    .stat-item .counter { font-size: 2.5rem; }
    .stat-item p { font-size: 1em;}
    footer {
        padding: 1.5em 0;
        margin-top: 3em;
    }
}

.faq-wrapper {
    background-color: var(--dark-bg) !important; 
    width: 100%;
}

.faq-section {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #0d0d0d !important; 
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 218, 99, 0.1);
    
    color: var(--text-color-light) !important;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 218, 99, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-title {
    text-align: center;
    color: var(--primary-color) !important;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 218, 99, 0.5);
    position: relative;
    z-index: 1;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--secondary-color);
    border-radius: 2px;
}

details {
    background: #111111 !important; 
    border: 1px solid rgba(255, 218, 99, 0.15);
    margin-bottom: 15px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

details[open] {
    border-color: var(--primary-color);
    background: #1a1a1a !important; 
    box-shadow: 0 0 20px rgba(255, 218, 99, 0.15), inset 0 0 10px rgba(255, 218, 99, 0.05);
    transform: scale(1.01);
}

summary {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff !important;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

summary:hover {
    color: var(--primary-color);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.9em;
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 218, 99, 0.4));
}

details[open] summary::after {
    transform: rotate(180deg);
    color: var(--glow-color-secondary);
}


details p {
    padding: 0 25px 25px 25px;
    color: #cccccc !important;
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 218, 99, 0.1);
    padding-top: 15px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    details {
        margin-bottom: 10px;
    }
    summary {
        padding: 15px;
        font-size: 1rem;
    }
}
