/* Main Styles */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #6c5ce7;
    --accent-green: #00b894;
    --text-color: #ffffff;
    --text-dark: #333333;
    --background-color: #0a0a0a;
    --header-bg: rgba(10, 10, 10, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --header-height: 65px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Lists */
ul {
    list-style: none;
}

/* Buttons */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 140px 20px 0;
    position: relative;
    overflow: visible;
}

/* Animated flowing lines background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, transparent 0%, transparent 40%, rgba(108, 92, 231, 0.1) 50%, transparent 60%, transparent 100%),
        linear-gradient(45deg, transparent 0%, transparent 40%, rgba(0, 184, 148, 0.08) 50%, transparent 60%, transparent 100%);
    background-size: 200% 200%;
    animation: flowingLines 15s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 184, 148, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes flowingLines {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #a8a8a8 0%, #8b7fff 30%, #00d4aa 70%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 50px;
    opacity: 0.85;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
    padding: 18px 45px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: #E2417C;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 166, 126, 0.3);
}

.btn-primary:hover {
    background-color: #c4356a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 166, 126, 0.4);
}

.btn-secondary {
    background-color: #7c5ce7;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 92, 231, 0.3);
}

.btn-secondary:hover {
    background-color: #6b4dd1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 92, 231, 0.4);
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.nyt-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
    font-weight: 600;
}

/* Trusted By Section */
.trusted-by-section {
    width: 100%;
    max-width: none;
    padding: 40px 0;
    margin-top: 40px;
    background-color: transparent;
    border: none;
    overflow: hidden;
}

.trusted-title {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    opacity: 0.35;
    margin: 0 0 30px 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
}

.trusted-logos-wrapper {
    overflow: hidden;
    width: 100%;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 1;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trusted-logos:hover {
    animation-play-state: paused;
}

.company-logo {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 20px 45px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.company-logo:hover {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.grid-item p {
    text-align: left;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Two Domains Section */
.two-domains-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto 70px;
    line-height: 1.7;
    font-weight: 400;
}

.section-subtitle .highlight {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.domain-card {
    padding: 45px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-green {
    background: linear-gradient(135deg, rgba(0, 100, 80, 0.3) 0%, rgba(0, 80, 60, 0.2) 100%);
}

.domain-purple {
    background: linear-gradient(135deg, rgba(150, 70, 220, 0.4) 0%, rgba(120, 50, 180, 0.3) 100%);
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.domain-title {
    font-size: 1.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.domain-green .domain-title {
    color: #00d4aa;
}

.domain-purple .domain-title {
    color: #a29bfe;
}

.domain-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.65;
    font-weight: 400;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tag {
    padding: 7px 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 500;
}

.domain-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

.domain-link {
    display: inline-block;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.domain-green .domain-link {
    color: #00d4aa;
}

.domain-purple .domain-link {
    color: #a29bfe;
}

.domain-link:hover {
    transform: translateX(5px);
}

/* Principles and Philosophy Combined Wrapper */
.principles-philosophy-wrapper {
    background: linear-gradient(180deg, #111827 0%, #000000 100%);
}

/* Principles Section */
.principles-section {
    padding: 75px 20px 42px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.principles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.principles-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.principles-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.principles-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 55px 60px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.principle-green {
    border-left-color: #00d4aa;
}

.principle-purple {
    border-left-color: #4684CE;
}

.principle-blue {
    border-left-color: #3B82F6;
}

.principle-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

.principle-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.principle-green .principle-number {
    background-color: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
}

.principle-purple .principle-number {
    background-color: rgba(168, 85, 247, 0.15);
    color: #4684CE;
}

.principle-blue .principle-number {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.principle-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-weight: 400;
}

/* Product Philosophy Section */
.philosophy-section {
    padding: 28px 20px 140px;
    background: transparent;
}

.philosophy-wrapper {
    max-width: 1449px;
    margin: 0 auto;
}

.philosophy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.53rem;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.philosophy-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    max-width: 850px;
    margin: 0 auto 80px;
    line-height: 1.75;
    font-weight: 400;
}

.philosophy-subtitle .highlight {
    color: white;
    font-weight: 600;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24.15px;
    max-width: 1449px;
    margin: 0 auto;
}

.philosophy-card {
    padding: 16.1px 36.2px;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.6) 0%, rgba(10, 15, 25, 0.4) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    background: linear-gradient(135deg, rgba(25, 35, 55, 0.7) 0%, rgba(15, 20, 30, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11.27px;
}

.card-icon {
    width: 43.47px;
    height: 43.47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.card-icon svg {
    width: 24.15px;
    height: 24.15px;
}

.card-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4.83px 12.08px;
    background-color: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    border-radius: 12px;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.card-badge.badge-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #4684CE;
}

.card-badge.badge-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.11rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4.2px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    font-weight: 400;
}

/* Founder's Vision Section */
.founders-vision-section {
    padding: 120px 20px;
    background: #111827;
    position: relative;
    overflow: hidden;
}

/* Large geometric shape on the left */
.founders-vision-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(139, 127, 255, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-15deg);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Animated flowing background */
.founders-vision-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, transparent 0%, transparent 40%, rgba(139, 127, 255, 0.06) 50%, transparent 60%, transparent 100%),
        linear-gradient(45deg, transparent 0%, transparent 40%, rgba(99, 102, 241, 0.04) 50%, transparent 60%, transparent 100%);
    background-size: 200% 200%;
    animation: flowingLines 15s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.vision-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.vision-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.4rem;
    font-weight: 400;
    background: linear-gradient(90deg, #b8a7ff 0%, #8b7fff 50%, #7c6ff0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 59.5px;
    letter-spacing: -0.01em;
    text-align: center;
}

.founder-profile {
    margin-bottom: 51px;
    text-align: center;
}

.founder-image {
    width: 127.5px;
    height: 127.5px;
    border-radius: 50%;
    border: 3px solid rgba(184, 167, 255, 0.3);
    object-fit: cover;
}

.vision-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 2.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.vision-quote strong {
    font-weight: 700;
    color: white;
}

.vision-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 68px;
    line-height: 1.8;
}

.vision-description strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.founder-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-avatar {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.275rem;
    font-weight: 600;
    color: white;
}

.founder-text {
    text-align: left;
}

.founder-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.105rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4.25px;
}

.founder-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.765rem;
    font-weight: 500;
    background: linear-gradient(90deg, #8b7fff 0%, #7c6ff0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.founder-actions {
    display: flex;
    gap: 15px;
}

.btn-linkedin,
.btn-book-meeting {
    display: flex;
    align-items: center;
    gap: 8.5px;
    padding: 11.9px 23.8px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-linkedin {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.btn-linkedin:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-book-meeting {
    background-color: rgba(139, 127, 255, 0.15);
    color: #b8a7ff;
    border-color: rgba(139, 127, 255, 0.3);
}

.btn-book-meeting:hover {
    background-color: rgba(139, 127, 255, 0.25);
    color: #d4c9ff;
    border-color: rgba(139, 127, 255, 0.5);
}

/* Implementation & Transformation Section */
.implementation-section {
    padding: 120px 20px;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

/* Background gradient effect */
.implementation-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 58, 171, 0.15) 0%, rgba(0, 212, 170, 0.08) 100%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.implementation-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.implementation-header {
    text-align: center;
    margin-bottom: 80px;
}

.implementation-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.implementation-icon img {
    width: 120px;
    height: 120px;
    filter: brightness(0) invert(1);
}

.implementation-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #8b7fff;
    margin-bottom: 20px;
}

.implementation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(90deg, #8b7fff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.implementation-method {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

.timeline-container {
    position: relative;
    padding-left: 140px;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 80px;
    height: 900px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.step-number-wrapper {
    position: absolute;
    left: -140px;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: rgba(30, 35, 45, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.step-circle svg {
    width: 28px;
    height: 28px;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    left: 10px;
    top: 100px;
}

.step-content {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.7) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.step-content:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.step-content:hover {
    background: linear-gradient(135deg, rgba(40, 50, 70, 0.8) 0%, rgba(30, 40, 60, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(226, 65, 124, 0.2);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
    flex: 1;
}

.step-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 20px;
}

.step-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8b7fff;
    margin-bottom: 20px;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.step-deliverables {
    margin-bottom: 30px;
}

.deliverables-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deliverables-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 12px;
}

.deliverables-list li svg {
    width: 20px;
    height: 20px;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #4684CE 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(226, 65, 124, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-learn-more:hover::before {
    left: 100%;
}

.btn-learn-more:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(226, 65, 124, 0.6);
}

.btn-learn-more svg {
    width: 16px;
    height: 16px;
}
